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