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