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