You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 6.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. # Changelog
  2. This changelog goes through all the changes that have been made in each release
  3. without substantial changes to our git log.
  4. ## [1.0.1](https://gitea.com/xorm/xorm/pulls?q=&type=all&state=closed&milestone=1253) - 2020-03-25
  5. * BUGFIXES
  6. * Oracle : Local Naming Method (#1515)
  7. * Fix find and count bug (#1618)
  8. * Fix duplicated deleted condition on FindAndCount (#1619)
  9. * Fix find and count bug with cache (#1622)
  10. * Fix postgres schema problem (#1624)
  11. * Fix quote with blank (#1626)
  12. ## [1.0.0](https://gitea.com/xorm/xorm/pulls?q=&type=all&state=closed&milestone=1242) - 2020-03-22
  13. * BREAKING
  14. * Add context for dialects (#1558)
  15. * Move zero functions to a standalone package (#1548)
  16. * Merge core package back into the main repository and split into serval sub packages. (#1543)
  17. * FEATURES
  18. * Use a new ContextLogger interface to implement logger (#1557)
  19. * BUGFIXES
  20. * Fix setschema (#1606)
  21. * Fix dump/import bug (#1603)
  22. * Fix pk bug (#1602)
  23. * Fix master/slave bug (#1601)
  24. * Fix bug when dump (#1597)
  25. * Ignore schema when dbtype is not postgres (#1593)
  26. * Fix table name (#1590)
  27. * Fix find alias bug (#1581)
  28. * Fix rows bug (#1576)
  29. * Fix map with cols (#1575)
  30. * Fix bug on deleted with join (#1570)
  31. * Improve quote policy (#1567)
  32. * Fix break session sql enable feature (#1566)
  33. * Fix mssql quote (#1535)
  34. * Fix join table name quote bug (#1534)
  35. * Fix mssql issue with duplicate columns. (#1225)
  36. * Fix mysql8.0 sync failed (#808)
  37. * ENHANCEMENTS
  38. * Fix batch insert interface slice be panic (#1598)
  39. * Move some codes to statement sub package (#1574)
  40. * Remove circle file (#1569)
  41. * Move statement as a sub package (#1564)
  42. * Move maptype to tag parser (#1561)
  43. * Move caches to manager (#1553)
  44. * Improve code (#1552)
  45. * Improve some codes (#1551)
  46. * Improve statement (#1549)
  47. * Move tag parser related codes as a standalone sub package (#1547)
  48. * Move reserve words related files into dialects sub package (#1544)
  49. * Fix `Conversion` method `ToDB() ([]byte, error)` return type is nil (#1296)
  50. * Check driver.Valuer response, and skip the column if nil (#1167)
  51. * Add cockroach support and tests (#896)
  52. * TESTING
  53. * Improve tests (#1572)
  54. * BUILD
  55. * Add changelog file and tool configuration (#1546)
  56. * DOCS
  57. * Fix outdate changelog (#1565)
  58. ## old changelog
  59. * **v0.6.5**
  60. * Postgres schema support
  61. * vgo support
  62. * Add FindAndCount
  63. * Database special params support via NewEngineWithParams
  64. * Some bugs fixed
  65. * **v0.6.4**
  66. * Automatical Read/Write seperatelly
  67. * Query/QueryString/QueryInterface and action with Where/And
  68. * Get support non-struct variables
  69. * BufferSize on Iterate
  70. * fix some other bugs.
  71. * **v0.6.3**
  72. * merge tests to main project
  73. * add `Exist` function
  74. * add `SumInt` function
  75. * Mysql now support read and create column comment.
  76. * fix time related bugs.
  77. * fix some other bugs.
  78. * **v0.6.2**
  79. * refactor tag parse methods
  80. * add Scan features to Get
  81. * add QueryString method
  82. * **v0.4.5**
  83. * many bugs fixed
  84. * extends support unlimited deep
  85. * Delete Limit support
  86. * **v0.4.4**
  87. * ql database expriment support
  88. * tidb database expriment support
  89. * sql.NullString and etc. field support
  90. * select ForUpdate support
  91. * many bugs fixed
  92. * **v0.4.3**
  93. * Json column type support
  94. * oracle expirement support
  95. * bug fixed
  96. * **v0.4.2**
  97. * Transaction will auto rollback if not Rollback or Commit be called.
  98. * Gonic Mapper support
  99. * bug fixed
  100. * **v0.4.1**
  101. * deleted tag support for soft delete
  102. * bug fixed
  103. * **v0.4.0 RC1**
  104. Changes:
  105. * moved xorm cmd to [github.com/go-xorm/cmd](github.com/go-xorm/cmd)
  106. * refactored general DB operation a core lib at [github.com/go-xorm/core](https://github.com/go-xorm/core)
  107. * moved tests to github.com/go-xorm/tests [github.com/go-xorm/tests](github.com/go-xorm/tests)
  108. Improvements:
  109. * Prepared statement cache
  110. * Add Incr API
  111. * Specify Timezone Location
  112. * **v0.3.2**
  113. Improvements:
  114. * Add AllCols & MustCols function
  115. * Add TableName for custom table name
  116. Bug Fixes:
  117. * #46
  118. * #51
  119. * #53
  120. * #89
  121. * #86
  122. * #92
  123. * **v0.3.1**
  124. Features:
  125. * Support MSSQL DB via ODBC driver ([github.com/lunny/godbc](https://github.com/lunny/godbc));
  126. * Composite Key, using multiple pk xorm tag
  127. * Added Row() API as alternative to Iterate() API for traversing result set, provide similar usages to sql.Rows type
  128. * ORM struct allowed declaration of pointer builtin type as members to allow null DB fields
  129. * Before and After Event processors
  130. Improvements:
  131. * Allowed int/int32/int64/uint/uint32/uint64/string as Primary Key type
  132. * Performance improvement for Get()/Find()/Iterate()
  133. * **v0.2.3** : Improved documents; Optimistic Locking support; Timestamp with time zone support; Mapper change to tableMapper and columnMapper & added PrefixMapper & SuffixMapper support custom table or column name's prefix and suffix;Insert now return affected, err instead of id, err; Added UseBool & Distinct;
  134. * **v0.2.2** : Postgres drivers now support lib/pq; Added method Iterate for record by record to handler;Added SetMaxConns(go1.2+) support; some bugs fixed.
  135. * **v0.2.1** : Added database reverse tool, now support generate go & c++ codes, see [Xorm Tool README](https://github.com/go-xorm/xorm/blob/master/xorm/README.md); some bug fixed.
  136. * **v0.2.0** : Added Cache supported, select is speeder up 3~5x; Added SameMapper for same name between struct and table; Added Sync method for auto added tables, columns, indexes;
  137. * **v0.1.9** : Added postgres and mymysql supported; Added ` and ? supported on Raw SQL even if postgres; Added Cols, StoreEngine, Charset function, Added many column data type supported, please see [Mapping Rules](#mapping).
  138. * **v0.1.8** : Added union index and union unique supported, please see [Mapping Rules](#mapping).
  139. * **v0.1.7** : Added IConnectPool interface and NoneConnectPool, SysConnectPool, SimpleConnectPool the three implements. You can choose one of them and the default is SysConnectPool. You can customrize your own connection pool. struct Engine added Close method, It should be invoked before system exit.
  140. * **v0.1.6** : Added conversion interface support; added struct derive support; added single mapping support
  141. * **v0.1.5** : Added multi threads support; added Sql() function for struct query; Get function changed return inteface; MakeSession and Create are instead with NewSession and NewEngine.
  142. * **v0.1.4** : Added simple cascade load support; added more data type supports.
  143. * **v0.1.3** : Find function now supports both slice and map; Add Table function for multi tables and temperory tables support
  144. * **v0.1.2** : Insert function now supports both struct and slice pointer parameters, batch inserting and auto transaction
  145. * **v0.1.1** : Add Id, In functions and improved README
  146. * **v0.1.0** : Initial release.