DBIx-Custom / Changes /
Yuki Kimoto cleanup
c1340e2 13 years ago
4 contributor
783 lines | 32.368kb
  1. 0.22
  2. - added EXPERIMENTAL DBIx::Custom::Result::kv method
  3. - added EXPERIMENTAL DBIx::Custom::Result::flat method
  4. - added where => {name => [val1, val2, val3]} support
  5. 0.2111
  6. - "created_at" option is renamed to "ctime" option.
  7. "created_at" is DEPRECATED!
  8. - "updated_at" option is renamed to "mtime" option.
  9. "updated_at" is DEPRECATED!
  10. 0.2110
  11. - Perl 5.008007 is required.
  12. - added EXPERIMETNAL aysnc_conf attribute
  13. 0.2109
  14. - select method can be called even if table name is not specified
  15. 0.2108
  16. - added async database access support using AnyEvent
  17. and added "async" option to execute method(EXPERIMENTAL)
  18. - EXPERIMETNAL "statement" option is replcaed "select" option
  19. 0.2107
  20. - removed EXPERIMENTAL status from the following methods and functinalities.
  21. DBIx::Custom::Result::value method
  22. DBIx::Custom::Result::column method
  23. DBIx::Custom::insert method "bulk_insert" option
  24. DBIx::Custom::insert method "multiplue insert functinality"
  25. DBIx::Custom::select method "first argument is received as column option"
  26. DBIx::Custom::Model::created_at attribute
  27. DBIx::Custom::Model::updated_at attribute
  28. - added EXPERIMENTAL DBIx::Custom::execute method "prepare_attr" option
  29. - added EXPERIMETNAL DBIx::Custom::execute method "statement" option
  30. 0.2106
  31. - renamed DBIx::Custom::Result::fetch_hash_first to fethc_hash_one
  32. because first is misleading name. fethc_hash_first is DEPRECATED!
  33. - renamed DBIx::Custom::Result::fetch_first to fetch_one,
  34. because first is misleading name. fetch_first is DEPRECATED!
  35. 0.2105
  36. - added EXPERIMENTAL DBIx::Custom::Result::value method
  37. - added EXPERIMENTAL DBIx::Custom::Result::column method
  38. 0.2104
  39. - improved bulk_insert performance
  40. 0.2103
  41. - added EXPERIMENTAL insert bulk_insert option.
  42. 0.2102
  43. - fixed bug that DBIx::Custom::Model count method don't receive model's
  44. attribute
  45. - insert method can receive multipule parameters, this is very fast, this is experimental
  46. 0.2101
  47. - fixed small default_bind_filter bug
  48. - micro optimization
  49. - select method can receive odd number argument. In that case first argument
  50. is column option.
  51. - fixed update_or_insert bug that when parameter don't contain any key-value
  52. this method throw exception.
  53. 0.2100
  54. - micro optimization
  55. - DBIx::Custom::Query is DEPRECATED!
  56. 0.1747
  57. - fixed bug DBIx::Custom::Result fetch_hash_multi throw warnings
  58. which cannnot fetch any more
  59. - fixed bug DBIx::Custom::Result fetch_hash_multi throw warnings
  60. which cannnot fetch any more
  61. 0.1746
  62. - micro optimization
  63. 0.1745
  64. - DBIx::Custom::Order prepend method receiving array reference
  65. is DEPRECATED!
  66. - DBIx::Custom::QueryBuilder class is DEPRECATED!
  67. - added DBIX_CUSTOM_DISABLE_MODEL_EXECUTE environment variable
  68. - added DBIX_CUSTOM_TAG_PARSE environment variable
  69. - tag_parse attribute is DEPRECATED!
  70. - show_datatype method return lower case string
  71. - show_typename method return lower case string
  72. - DBIx::Custom::Result filter_on method is DEPRECATED!
  73. - DBIx::Custom::Result filter_off method is DEPRECATED!
  74. 0.1744
  75. - id option work if id count is lower than primary key count.
  76. - removed EXPERIMETNAL status from update_or_insert method and
  77. DBIx::Custom::Model's update_or_insert method
  78. - removed EXPERIMENTAL status from reuse option
  79. - removed EXPERIMENTAL status from update_at option and created_at option
  80. - removed EXPERIMETNAL status from now attribute
  81. 0.1743
  82. - DBIx::Custom::Model execute method is DEPRECATED!
  83. - fixed bug that update_all can't receive parameter as first argument
  84. - fixed bug that delete_all can't receive parameter as first argument
  85. - fixed where clause parsing bug when time(like 00:00:00) contain
  86. 0.1742
  87. - fixed update_or_insert method bug
  88. - micro optimization
  89. 0.1741
  90. - added EXPERIMENTAL update_or_insert to DBIx::Custom::Model
  91. 0.1740
  92. - EXPERIMENTAL update_or_insert need id and primary_key option
  93. and added option option
  94. - insert method created_at and updated_at option can receive scalar reference
  95. - update method updated_at option can receive scalar reference
  96. - select column option [COLUMN => ALIAS] syntax is DEPRECATED!
  97. - added EXPERIMENTAL q method
  98. - execute method id option is DEPRECATED!
  99. 0.1739
  100. - insert timestamp option is DEPRECATED!
  101. use created_at option with now attribute
  102. - update timestamp option is DEPRECATED!
  103. use updated_at option wieh now attribute
  104. - insert_timestamp method is DEPRECATED!
  105. use now method
  106. - update_timestamp method is DEPRECATED!
  107. use use now method
  108. - added EXPEREIMTNAL now method
  109. - added EXPERIMENTAL insert created_at option
  110. - added EXPERIMETNAL insert updated_at option
  111. - added EXPERIMETNAL update updated_at option
  112. - added new timestamp system using the above methods and options
  113. 0.1738
  114. - micro optimization
  115. - removed example that query pass execute method in documentation
  116. this is many bug reason much more than I have expected
  117. and passing query to execute method is DEPRECATED!
  118. - insert method id value is not copied to parameter
  119. if the key exists in parameter
  120. 0.1737
  121. - micro optimization
  122. - fixed DEBUG messsage bug
  123. 0.1736
  124. - micro optimization
  125. 0.1735
  126. - added EXPERIMENTAL reuse_query option to execute method
  127. 0.1734
  128. - moved DBIx::Custom::Guide to wiki
  129. 0.1733
  130. - select method join option can receive string.
  131. - removed DEPRECATED status of select param option
  132. - select method where_param option is DEPRECATED!
  133. use where => [STRING, PARAM] syntax instead
  134. - delete method where_param option is DEPRECATED!
  135. use where => [STRING, PARAM] syntax instead
  136. - update method where_param option is DEPRECATED!
  137. use where => [STRING, PARAM] syntax instead
  138. - update method param option is DEPRECATED!
  139. - insert method param option is DEPRECATED!
  140. - removed argument checking logic because in database performance is more
  141. important.
  142. 0.1732
  143. - removed EXPERIMETNAL flag from like_value
  144. 0.1731
  145. - removed DEPRECATED status from insert method's id option
  146. - renamed EXPERIMENTAL insert_or_update to update_or_insert
  147. 0.1730
  148. - added EXPERIMENTAL insert_or_update method
  149. - method method of DBIx::Custom::Model is renamed to helper,
  150. method is DEPRECATED!
  151. - method method is renamed to helper, method is DEPRECATED!
  152. - insert method's id option is DEPRECATED!
  153. - fixed id option bug when column name is anbiguous
  154. 0.1729
  155. - dbi_option attribute is renamed to option, dbi_option is DEPRECATED!
  156. - default_dbi_option is renamed to default_option, default_dbi_option
  157. is DEPRECATED!
  158. 0.1728
  159. - added {key => ..., value => ...} syntax to DBIx::Custom::Mapper map method
  160. ,and argument of string and code reference is DEPRECATED!
  161. - update_param is DEPRECATED, use assing_clause instead.
  162. - assing_param is renamed to assing_clause, assing_param is DEPRECATED!
  163. - insert_param is renamed to values_clause, insert_param is DEPRECATED!
  164. 0.1727
  165. - improved join clause parsing
  166. 0.1726
  167. - improved join clause parsing
  168. 0.1725
  169. - improved join clause parsing
  170. 0.1724
  171. - added EXPERIMENTAL like_value method to DBIx::Custom
  172. - sqlfilter option is renamed to after_build_sql, sqlfilter is DEPRECATED!
  173. - removed EXPERIMENTAL flag from DBIx::Custom::Mapper
  174. - removed EXPERIMENTAL flag from the following DBIx::Custom methods
  175. insert_timestamp, mapper, update_timestamp
  176. - removed EXPERIMENTAL flag from the following DBIx::Custom method's option
  177. timestamp,
  178. 0.1723
  179. - removed EXPERIMENTAL call_dbi method from DBIx::Custom::Model
  180. - removed EXPERIMENTAL map_param method from DBIx::Custom
  181. - removed EXPERIMENTAL the following methods from DBIx::Custom::Where
  182. if, map
  183. - removed EXPERIMENTAL flag from the following DBIx::Custom::Model methods
  184. count, execute
  185. - removed EXPERIMENTAL flag from the following DBIx::Custom::Result mehotds
  186. filter_on, type_rule, type_rule_off, type_rule_on, type_rule1_off,
  187. type_rule1_on, type_rule2_off, type_rule2_on
  188. - removed EXPERIMENTAL flag from the following DBIx::Custom method's options
  189. sqlfilter, type_rule_off, type_rule1_off, type_rule2_off,
  190. table_alias, wrap
  191. - removed EXPERIMENTAL flag from DBIx::Custom::Order
  192. - removed EXPERIMETNAL flag from the following DBIx::Custom methods
  193. exclude_table, user_column_info,
  194. user_table_info, available_datatype, available_typename,
  195. assign_param, count, get_column_info, get_table_info
  196. order, show_datatype, show_typename methods, show_tables, type_rule,
  197. - added EXPERIMENTAL update_timestamp method to DBIx::Custom
  198. - added EXPERIMENTAL insert_timestamp method to DBIx::Custom
  199. - removed EXPERIMENTAL timestamp attribute from DBIx::Custom
  200. 0.1722
  201. - added EXPERIMENTAL timestamp option to DBIx::Custom insert
  202. and update method.
  203. - added EXPERIMENTAL timestamp attribute to DBIx::Custom
  204. - added {KEY => {OPTION_KEY => OPTION_VALUE} syntax
  205. to EXPERIMENTAL DBIx::Custom::Mapper map method
  206. - added {KEY => sub { VALUE }} syntax
  207. to EXPERIMETNAL DBIx::Custom::Mapper map method
  208. - removed EXPERIMENTAL wrap option from select method
  209. - insert_param, update_param, and assign param can
  210. be wrapeed by DB function by C<wrap> option
  211. - added EXPERIMENTAL pass attribute to DBIx::Custom::Mapper
  212. - removed EXPERIMENTAL ignore attribute from DBIx::Custom::Mapper
  213. 0.1721
  214. - added EXPERIMENTAL DBIx::Custom::Mapper class
  215. - added EXPERIMENTAL mapper method to DBIx::Custom
  216. 0.1720
  217. - removed placeholder count check
  218. - added EXPERIMENTAL execute method's id and primary key option.
  219. - added EXPERIMENTAL DBIx::Custom::Model execute method
  220. 0.1719
  221. - DBIx::Custom support Microsoft Access through DBD::ODBC
  222. 0.1718
  223. - added EXPERIMENTAL DBIx::Custom::Model call_dbi method
  224. - added EXPERIMENTAL count method
  225. - added EXPERIMENTAL DBIx::Custom::Model count method
  226. 0.1717
  227. - added EXPERIMENTAL get_table_info
  228. - added EXPERIMETNAL user_table_info attribute
  229. and each_table find table info in user_table_info if set.
  230. - added EXPERIMENTAL get_column_info
  231. - added EXPERIMENTAL user_column_info attribute
  232. and each_column find column info in user_column_info if set.
  233. - connector is automatically set to DBDx::Connector object
  234. if connector is set to 1 when connect method is called.
  235. 0.1716
  236. - fixed bugs when using DBD::Oracle.
  237. - added EXPERIMENTAL show_tables method.
  238. 0.1715
  239. - default quote attribute in ODBC driver is changed to "[]"
  240. - fixed some bug in Microsoft SQL Server
  241. - added EXPERIMENTAL execute method sqlfilter option
  242. 0.1714
  243. - fixed not backword compatible change in 0.1712 query_buider
  244. 0.1713
  245. - fixed memory leak and connection increasing bug when using model.
  246. 0.1712
  247. - you can set any string as separator
  248. - fixed memory leak and connection increasing bug, and query_buider method return new object.
  249. - added EXPERIMENTAL exclude_table attribute
  250. - added EXPERIMENTAL show_typename method
  251. - added EXPERIMENTAL show_datatype method
  252. 0.1711
  253. - renamed EXPERIMENTAL available_type_name to available_typename
  254. - renamed EXPERIMENTAL available_data_type to available_datatype
  255. - added EXPERIMENTAL DBIx::Custom::Where if method
  256. - added EXPERIMENTAL DBIx::Custom::Where map method
  257. 0.1710
  258. - use more DBIx::Custom information in sub modules to decrease bugs
  259. (very sorry, this change can't keep backword compatible,
  260. but maybe no effects,
  261. because the attributes is automatically set by DBIx::Custom, not user).
  262. - Fixed fisrt executed where clause failed in some condition.
  263. 0.1709
  264. - fixed named placeholder bug and added escape syntax
  265. 0.1708
  266. - improved execute method performance
  267. 0.1707
  268. - I call :title named placeholder, stoping calling it parameter
  269. - removed some EXPERIMENTAL status
  270. - fixed performance
  271. 0.1706
  272. - Added execute method's query option document
  273. You can get more performance.
  274. - DBIx::Custom::Query table and filters attribute method and
  275. filter method is DEPRECATED!
  276. because I think query object must have only the information
  277. for statement handle caching.
  278. 0.1705
  279. - insert and update method's param can set constant value by scalara reference
  280. such as {date => \"NOW()"} This is EXPERIMENTAL.
  281. 0.1704
  282. - added quote method's two character support like []
  283. for Microsoft SQL Server and Access
  284. - added EXPERIMENTAL parameter new syntax :name{operator}
  285. 0.1703
  286. - added EXPERIMENTAL join new syntax.
  287. 0.1702
  288. - removed EXPERIMENTAL status of some methods.
  289. - fixed some join bug
  290. 0.1701
  291. - added DBIx::Cusotm::Order prepend method automatically quoted syntax
  292. - simplified arguments check
  293. - added EXPERIMENTAL each_table method
  294. - select method column option [COLUMN, as => ALIAS] format is DEPRECATED!
  295. changed to [COLUMN => ALIAS]
  296. - added EXPERIMENTAL DBIx::Custom::Result header method
  297. - added EXPERIMENTAL last_sql attribute method
  298. 0.1700
  299. - fixed end_filter DEPRECATED warnings bug
  300. 0.1699
  301. - added tag_parse attribute.
  302. - added EXPERIMENTAL order method
  303. - added EXPERIMENTAL DBIx::Custom::Order module
  304. - changed backword compatible policy
  305. ------------------------------------------------------------------------
  306. If a functionality is DEPRECATED, you can know it by DEPRECATED warnings
  307. except for attribute method.
  308. You can check all DEPRECATED functionalities by document.
  309. DEPRECATED functionality is removed after five years,
  310. but if at least one person use the functionality and tell me that thing
  311. I extend one year each time you tell me it.
  312.  
  313. EXPERIMENTAL functionality will be changed without warnings.
  314. ------------------------------------------------------------------------
  315. 0.1698
  316. - fixed DBIx::Custom::Where to_string method small bug
  317. - added EXPERIMENTAL execute method table_alias option
  318. 0.1697
  319. - added EXPERIMENTAL map_param method
  320. 0.1696
  321. - added new argument format update, delete, select method where option
  322. - create_query is DEPRECATED! use query option of each method instead.
  323. - added EXPERIMENTAL insert, update, and select method prefix option
  324. - fixed small insert, update, delete, select method id option bug
  325. 0.1695
  326. - changed EXPERIMENTAL DBIx::Custom::Result type_rule_off method argument
  327. - added EXPERIMENTAL DBIx::Custom::Result type_rule_on method
  328. - changed EXPERIMENTAL DBIx::Custom::Result type_rule1_off method argument
  329. - added EXPERIMENTAL DBIx::Custom::Result type_rule1_on method
  330. - changed EXPERIMENTAL DBIx::Custom::Result type_rule2_off method argument
  331. - added EXPERIMENTAL DBIx::Custom::Result type_rule2_on method
  332. - changed EXPERIMENTAL DBIx::Custom::Result filter_off method argument
  333. - added EXPERIMENTAL DBIx::Custom::Result filter_on method
  334. 0.1694
  335. - EXPERIMENTAL type_rule argument format is changed
  336. - DBIx::Custom::Result type_rule method on setting return self
  337. - reserved_word_quote is DEPRECATED! this is renamed to quote
  338. - DBIx::Custom::Model type attribute is DEPRECATED!
  339. this is renamed to bind_type.
  340. 0.1693
  341. - separate DBIx::Custom type_rule from filter
  342. - DBIx::Custom::Model filter attrribute is DEPRECATED!
  343. - DBIx::Custom::Model name attribute is DEPRECATED!
  344. - removed EXPERIMENTAL DBIx::Custom::Model alias_table
  345. - added DBIx::Custom column method's table option
  346. - separate DBIx::Custom::Result type_rule from filter again
  347. 0.1692
  348. - removed EXPERIMENTAL DBIx::Model result_filter
  349. - DBIx::Custom::Result filter override type_rule
  350. - added EXPERIMENTAL DBIx::Custom::Result type_rule
  351. - added EXPERIMENTAL available_type_name method
  352. - EXPERIMENTAL type_rule_off is not passed form execute method
  353. to DBIx::Custom::Result object
  354. 0.1691
  355. - DBIx::Custom::Result end_filter, remove_filter, remove_end_filter is DEPRECATED!
  356. - apply_filter is DEPRECATED!
  357. - EXPERIMETAL column method and table_alias think about "-" separator
  358. - EXPERIMTANL column method think about separator
  359. - removed EXPERIMENTAL col method.
  360. - added EXPERIMENTAL separater method
  361. - added EXPERIMENTAL select prefix option.
  362. - fixed bug that data_source DEPRECATED warnings pirnt STDERR
  363. - fixed bug that type_rule from option can't receive filter name
  364. 0.1690
  365. - use latest Object::Simple features
  366. 0.1689
  367. - added EXPERIMENTAL available_data_type
  368. - simplified type_rule
  369. - changed type_rule arguments format
  370. - added EXPERIMENTAL DBIx::Custom::Model result_filter attribute
  371. - added EXPERIMETNAL DBIx::Custom::Result filter_off method
  372. - EXPERIMENTAL type_rule can receive filter name
  373. 0.1688
  374. - fixed bug that model insert, update, delete select can't
  375. odd number arguments
  376. - improved type_rule method
  377. 0.1687
  378. - added EXPERIMENTAL type_rule method
  379. - added EXPERIMENTAL execute() type_rule_off option
  380. - execute method can second argument as parameter
  381. 0.1686
  382. - select() column option can receive array reference in array.
  383. This is EXPERIMENTAL
  384. - select() EXPERIMETNAL column option hash format
  385. return table.column, not table__column
  386. - added EXPERIMENTAL col method.
  387. - set reserved_word_quote automatically from driver name
  388. 0.1685
  389. - insert_at, update_at, delete_at, select_at is DEPRECATED!
  390. use insert, update, delete, select method and id option.
  391. - insert, insert_at, update, update_at can receive odd number arguments,
  392. first one is parameter.
  393. 0.1684
  394. - added DBIx::Custom::Result all method, this is alias for fetch_hash_all
  395. - added DBIx::Custom::Result one method, this is alias for fetch_hash_first
  396. - DBIx::Custom::Result fetch_hash_first can recieve argument
  397. - select() column option can receive hash reference. This is EXPERIMENTAL
  398. - update_param_tag is DEPRECATED! use update_param instead.
  399. - insert_param_tag is DEPRECATED! use insert_param instead.
  400. - assing_param_tag is DEPRECATED! use assign_param instead.
  401. - Tag system such as {? title}, {= title} is DEPRECATED!
  402. and added paramter system such as :title.
  403. 0.1683
  404. - data_source is DEPRECATED! It is renamed to dsn
  405. 0.1682
  406. - improved debug message
  407. - fixed merge_param bug
  408. 0.1681
  409. - added EXPERIMENTAL assign_tag() method
  410. 0.1680
  411. - DEPRECATED select() param option, this is renamed to where_param
  412. - added select(), update(), and delete() where_param option
  413. 0.1679
  414. - added EXPERIMENTAL select() wrap option to support Oracle ROWNUM
  415. 0.1678
  416. - DBIx::Custom::Model filter attribute can receive hash reference
  417. - DBIx::Custom::Where clause attribute can receive clause without column name
  418. - improved error messages
  419. 0.1677
  420. - improved table search in column and join clause
  421. - DEPRECATED table tag. use table option.
  422. 0.1676
  423. - fixed test bug
  424. 0.1675
  425. - removed DEPRECATED DBIx::Custom::MySQL and DBIx::Custom::SQLite
  426. these implementations remine in https://github.com/yuki-kimoto/DBIx-Custom/wiki
  427. for some users.
  428. - removed EXPERIMENTAL replace().
  429. - removed EXPERIMENTAL mark from many methods.
  430. 0.1674
  431. - fixed test bug
  432. 0.1673
  433. - fixed dbh() method bug.
  434. 0.1672
  435. - removed EXPERIMENTAL Prefork server safe implementation, my implementation is very buggy.
  436. - added EXPERIMETNAL connector() attribute.
  437. - change retern value to array refrence of EXPERIMENTAL replace()
  438. 0,1671
  439. - added environment variable DBIX_CUSTOM_DEBUG
  440. 0.1670
  441. - removed EXPERIMETNAL select() column hash option. it's a little complex.
  442. - added EXPERIMENTAL select() param option.
  443. - added EXPERIMENTAL replace().
  444. 0.1669
  445. - renamed update_param to update_param_tag, update_param is DEPRECATED!
  446. - renamed insert_param to insert_param_tag, insert_param is DEPRECATED!
  447. 0.1668
  448. - added EXPERIMENTAL update_param no_set option.
  449. - added EXPERIMENTAL reserved_word_quote attribute.
  450. 0.1666
  451. - removed from cache() and cache_method() document for a while and cache() value
  452. become 0 because I find something bug.
  453. - create_model() return model.
  454. - added document of hash filter
  455. - adeed EXPERIMENTAL DBIx::Custom::Model method()
  456. 0.1665
  457. - removed EXPERIMETNAL flag from insert_at(), update_at(), delete_at(), select_at(), insert_param(), not_exists(), select()'s query option, update_param(), where, table tag, each column, safety_character, DBIx::Where, where().
  458. - added EXPERIMETNAL create_model()
  459. 0.1664
  460. - where can recieve array refrence, which contains where cluase and paramter.
  461. 0.1663
  462. - added EXPERIMENTAL type() attribute to DBIx::Custom::Model
  463. - added EXPERIMENTAL bind_param_option can set bind_param option
  464. to insert(), update(), delete(), select(), insert_at(),
  465. update_at(), delete_at(), select_at(), delete_all(), update_all()
  466. 0.1662
  467. - removed EXPERIMENTAL DBIx::Custom::Model column_clause
  468. - added EXPERIMENTAL column()
  469. - added EXPERIMENTAL mycolumn()
  470. 0.1661
  471. - added EXPERIMENTAL DBIx::Custom::Model table_alias attribute
  472. - added EXPERIMENTAL DBIx::Custom::Model mycolumn()
  473. - added EXPERIMENTAL DBIx::Custom::Model column()
  474. - fixed autoloading bug
  475. - added EXPERIMETNAL select() prepend table option
  476. - added EXPERIMETNAL select() column table option
  477. - added EXPERIMETNAL select() column all option
  478. - removed EXPERIMETNAL select() all_column option
  479. - removed EXPERIMENTAL view()
  480. 0.1660
  481. - added EXPERIMENTAL DBIx::Custom::Model view()
  482. - added EXPERIMENTAL view()
  483. - DBIx::Custom::Model inherit DBIx::Custom
  484. - removed EXPERIMETNAL DBIx::Custom::Model method()
  485. - added table choice feature to select() EXPERIMENTAL all_column option
  486. - removed EXPERIMENTAL DBIx::Custom::Model column attribute for side effect
  487. 0.1659
  488. - EXPERIMETAL fork safety implementaion.
  489. - removed EXPERIMENTAL selection
  490. - added select() all_column option
  491. 0.1658
  492. - added EXPERIMENTAL DBIx::Custom::Model column() prefix option.
  493. - fixed select_at join column invalid bug
  494. - added DBIx::Custom::Model column() attribute
  495. 0.1657
  496. - remaned EXPERIMENTAL safty_charcter to safty_name
  497. - safty_charcter is changed, set only one character regex.
  498. 0.1656
  499. - fixed some select() join opition bug
  500. 0.1655
  501. - added EXPERIMENTAL DBIx::Custom::Model join attribute
  502. - added EXPERIMENTAL select() join option
  503. - deprecated select() relation option
  504. - added EXPERIMENTAL update_param and insert_param
  505. - remove EXPERIMENTAL DBIx::Custom::Model relation
  506. 0.1654
  507. - selection can contain where clause.
  508. 0.1653
  509. - added EXPERIMENTAL DBIx::Custom::Result remove_filter()
  510. - added EXPERIMENTAL DBIx::Custom::Result remove_end_filter()
  511. - added EXPERIMENTAL DBIx::Custom::Model insert_at()
  512. - added EXPERIMENTAL insert_at()
  513. - improved error message
  514. 0.1652
  515. - all filter can receive array reference and receiving hash reference is DEPRECATED!
  516. 0.1651
  517. - add EXPERIMENTAL DBIx::Custom::Model filter attribute.
  518. 0.1650
  519. - add EXPERIMENTAL DBIx::Custom::Model name() attribute
  520. 0.1649
  521. - add EXPERIMENTAL DBIx::Custom::Model column_clause() method.
  522. - select method column option can receive string.
  523. - DBIx::Custom::Model select() and select_at() think about relation attirbute
  524. 0.1648
  525. - add EXPERIMENTAL DBIx::Custom::Model relation() attribute
  526. - add EXPERIMENTAL update_at(), delete_at(), select_at()
  527. - add EXPERIMENTAL setup_model()
  528. - add EXPERIMENTAL DBIx::Custom::Model columns attirbute
  529. - add EXPERIMENTAL DBIx::Custom::Model foreign_key() attribute
  530. - add EXPERIMENTAL models() attribute
  531. 0.1647
  532. - add default_dbi_option()
  533. 0.1646
  534. - add feture. all model class in namespace is included by include_model
  535. - rename EXPERIMENTAL include_table to include_model
  536. - rename EXPERIMENTAL table to model
  537. - rename EXPERIMENTAL DBIx::Custom::Table to DBIx::Custom::Model
  538. - remame EXPERIMENTAL DBIx::Custom::Table::name() to DBIx::Custom::Model::table();
  539. 0.1645
  540. - removed EXPERIMENTAL base_table() for class expandability.
  541. - EXPERIMENTAL table() can't set table object any more.
  542. - added EXPERIMENTAL include_table().
  543. 0.1644
  544. - update pod
  545. 0.1643
  546. - add EXPERIMENTAL selection option to select()
  547. - add EXPERIMENTAL table tag
  548. - fix bug : filter can't overwirite undef value.
  549. - add EXPERIMENTAL feature to apply_filter(). you can apply end filter.
  550. - add EXPERIMENTAL feature to apply_filter(). TABLE__COLUMN is filterded now.
  551. 0.1642
  552. - removed EXPERIMENTAL DBIx::Custom::Table base() method
  553. - table created by tabled method can call base_$method correponding to base_table's one
  554. 0.1641
  555. - select() where can't receive array reference to prevend SQL injection easily(not backward compatible. sorry. use where() instead)
  556. - added EXPERIMENTAL safety_column_name attribute
  557. - fix SQL injection security hole about column name
  558. 0.1640
  559. - autoload DBI method
  560. - removed EXPERIMENTAL expand
  561. 0.1639
  562. - improved delete() and update() where option. you can use DBIx::Custom::Where object
  563. - added EXPERIMENTAL not_exists()
  564. 0.1638
  565. - table object call dbi object method if not found method.
  566. - added EXPERIMENTAL base_table attribute and removed EXPERIMENTAL table_class attribute
  567. - renamed helper to method.
  568. - added EXPERIMENTAL DBIx::Custom::Result::stash()
  569. - renamed EXPERIMENTAL DBIx::Custom::Table helper to method
  570. 0.1637
  571. - renamed dbi_options to dbi_option. dbi_options is available, but deprecated.
  572. - renamed DBIx::Custom::TagProcessor to DBIx::Custom::Tag, and function names is cleanuped.
  573. - renamed register_tag_processor to register_tag. register_tag_processor is available, but deprecated.
  574. - renamed tag_processors to tags. tag_prosessors is available, but deprecated.
  575. - improved error message
  576. - build all clause if param is undefined.
  577. - each_column callback receive self as first argument.
  578. - removed EXPERIMENTAL txn_scope
  579. 0.1636
  580. - added tests and cleanup
  581. 0.1635
  582. - renamed iterate_all_columns to each_column
  583. 0.1634
  584. - became more useful where method
  585. - changed DBIx::Custom::Where greatly
  586. 0.1633
  587. - fixed test
  588. 0.1632
  589. - added EXPERIMENTAL where method
  590. - added EXPERIMENTAL DBIx::Custom::Where.
  591. - removed DBIx::Custom::Or
  592. 0.1631
  593. - added EXPERIMENTAL DBIx::Custom::Result end_filter method
  594. - EXPERIMENTAL extended select method's where option
  595. - fix select method empty where failed bug
  596. - added EXPERIMENTAL suger method query option
  597. - added EXPERIMENTAL or method
  598. 0.1630
  599. - fix test bug
  600. 0.1629
  601. - renamed auto_filter to apply_filter
  602. - changed apply_filter method arguments
  603. - deprecated cache_method
  604. 0.1628
  605. - remove DBIx::Custom::Model
  606. - move table method and table_class attribute to DBIx::Custom
  607. - added examples
  608. - fixed connect method bug
  609. 0.1627
  610. - added insert, update, update_all, delete, delete_all, select method to DBIx::Custom::Table
  611. - added EXPERIMENTAL txn_scope
  612. 0.1626
  613. - simplified DBIx::Custom::Model and DBIx::Custom::Table
  614. 0.1625
  615. - added EXPERIMENTAL DBIx::Custom::Model and DBIx::Custom::Table
  616. 0.1624
  617. - added EXPERIMENTAL iterate_all_columns method.
  618. 0.1623
  619. - added EXPERIMENTAL auto_filter method
  620. - deprecated default_bind_filter and default_fetch_filter because these are global effect.
  621. - changed defautl_bind_filter and default_fetch_filter attributes to methods.
  622. - changed DBIx::Custom::Result default_filter attribute to method
  623. - changed DBIx::Custom::Result filter attribute to method.
  624. - filter_check is always done for usability
  625. 0.1622
  626. - deprecated DBIx::Custom::SQLite and DBIx::Custom::MySQL
  627. - added dbi_options attribute
  628. - checked attributes passed to connect method
  629. 0.1621
  630. - cleanup (removed undocumented features)
  631. 0.1620
  632. - updated document
  633. 0.1619
  634. - updated document
  635. - added EXPERIMENTAL expand method
  636. 0.1618
  637. - added helper method
  638. - added begin_work, commit, and rollback method
  639. 0.1617
  640. - L<DBIx::Custom> is now stable. APIs keep backword compatible in the feature.
  641. 0.1616
  642. - removed EXPERIMENTAL register_method(), and methods attribute, because it is too magical
  643. 0.1615
  644. - fixed DBIx::Custom::QueryBuilder build_query() bug
  645. - required Perl 5.008001 to use @CARP_NOT
  646. 0.1614
  647. - removed DBIx::Custom::Query start_tag and end tag attributes
  648. - enable escaping '{' and '}' in the source of SQL
  649. - fixed Carp Carp trust relationship
  650. 0.1613
  651. - added EXPERIMENTAL register_method() method
  652. - added EXPERIMENTAL methods attribute
  653. 0.1612
  654. - added tests
  655. - updated document
  656. - removed DBIx::Custom::SQLite last_insert_rawid() mehtod(not backword compatible)
  657. - removed DBIx::Custom::MySQL last_insert_id() method(not backword compatible)
  658. 0.1611
  659. - renamed update tag to update_param
  660. - renamed insert tag to insert_param
  661. - renamed sql_builder to query_builder
  662. 0.1610
  663. - added filter_check attribute.
  664. 0.1609
  665. - updated document.
  666. 0.1608
  667. - update document
  668. - renamed DBIx::Custom::QueryBuilder::TagProcessors functions(not backword compatible)
  669. 0.1607
  670. - where argument of select() method can specify array(string, parameters)
  671. - renamed build_query() to create_query()(not backword compatible)
  672. 0.1606
  673. - fix testing bug
  674. 0.1605
  675. - remove DBIx::Custom::QueryBuilder::tag_syntax() (not backword compatible)
  676. - renamed DBIx::Custom::TagProcessor to DBIx::Custom::TagProcessors (not backword compatible)
  677. - changed arguments of tag processor(not backword compatible)
  678. - renamed DBIx::Custom::QueryBuilder::TagProcessors functions(not backword compatible)
  679. 0.1604
  680. - changed argument of tag processor(not backword compatible)
  681. - renamed default_query_filter to default_bind_filter(not backword compatible)
  682. - renamed DBIx::Custom::SQLTemplate to DBIx::Custom::SQLBuilder(not backword compatible)
  683. - renamed create_query to build_query(not backword compatible)
  684. - renamed sql_template to sql_builder(not backword compatible)
  685. - removed DESTROY method(not backword compatible)
  686. - removed disconnect method(not backword compatible)
  687. - fixed DBIx::Custom::MySQL connect_memory
  688. 0.1603
  689. - removed DBIx::Custom commit method (not backword compatible)
  690. - removed DBIx::Custom rollback method (not backword compatible)
  691. - removed DBIx::Custom auto_commit method (not backword compatible)
  692. 0.1602
  693. - added cache_method attribute
  694. 0.1601
  695. - added cache attribute
  696. - select, insert, update, update_all, delete, delete_all, execute only receive hash argument(not backword compatible)
  697. 0.1503
  698. - removed reconnect method
  699. - removed connected method
  700. - removed reconnect_memroy method
  701. - renamed fetch_single to fetch_first
  702. - renamed fetch_hash_single to fetch_hash_first
  703. - updated document
  704. 0.1502
  705. - added commit method
  706. - added rollback method
  707. - changed select argument, added relation option
  708. - moved host attribute to DBIx::Custom::MySQL
  709. - moved port attribute to DBIx::Custom::MySQL
  710. - moved database attribute to DBIx::Custom::MySQL and DBIx::Custom::SQLite
  711. 0.1501
  712. - removed register_format()
  713. - removed formats()
  714. - removed run_transaction()
  715. - removed create_table()
  716. - removed drop_table()
  717. - changed select() arguments
  718. - changed insert() arguments
  719. - changed update() arguments
  720. - changed update_all() arguments
  721. - changed delete() arguments
  722. - changed delete_all() arguments
  723. - changed execute() arguments
  724. 0.1402
  725. - remove finish(), error()
  726. - can receive code ref to filter()
  727. - renamed resist to register
  728. 0.1401
  729. - renamed fetch_rows to fetch_multi
  730. - renamed fetch_hash_rows to fetch_hash_multi
  731. 0.1301
  732. - Changed many(not backword compatible)
  733. 0.1201
  734. - Changed many(not backword compatible)
  735. 0.1101
  736. - rename DBIx::Custom::SQLite last_insert_id to last_insert_rowid
  737. 0.1001
  738. - remove run_transaction().
  739. - add transaction() and DBIx::Custom::Transaction
  740. - rename fetch_first to fetch_single
  741. - rename fetch_hash_first to fetch_hash_single
  742. 0.0906
  743. - fix some bug
  744. 0.0905
  745. - catch up with Object::Simple update
  746. 0.0904
  747. - cleanup
  748. 0.0903
  749. - catch up with Object::Simple update
  750. 0.0902
  751. - cleanup
  752. 0.0901
  753. - DBIx::Basic filter 'encode_utf8' utf8::upgrade process is deleted
  754. 0.0801
  755. - add 'create_table', 'drop_table' methods
  756. 0.0701
  757. - rename sql_template to sql_tmpl (not backword compatible)
  758. - rename dbi_options to options (not backword compatible)
  759. 0.0605
  760. - fix encode_utf8 filter
  761. 0.0604
  762. - fix timeformat tests
  763. 0.0603
  764. - fix cache system bug
  765. 0.0602
  766. - update document
  767. 0.0601
  768. - bind_filter argument is changed to ($value, $key, $dbi, $infos) (not backword compatible)
  769. - fetch_filter argument is changed to ($value, $key, $dbi, $infos) (not backword compatible)
  770. - run_transaction argument is changed to ($dbi)
  771. 0.0502
  772. - update document
  773. 0.0501
  774. - packaging DBIx::Custom::Result DBIx::Custom::Query DBIx::Custom::MySQL DBIx::Custom::SQLite DBIx::Custom::SQL::Template
  775. 0.0401
  776. - catch up with DBIx::Custom::Result version up
  777. 0.0301
  778. - exchange filter argument 'key', 'value' (not backword compatible)
  779. 0.0201
  780. - rename tranzaction to transaction
  781. - add filter_off
  782. 0.0101
  783. - First release