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