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