shard-crystal-db/CHANGELOG.md

36 lines
1.3 KiB
Markdown
Raw Normal View History

2016-12-14 15:25:32 +00:00
## Not released
* Add support for non prepared statements. [#25](https://github.com/crystal-lang/crystal-db/pull/25)
* Add support for transactions & nested transactions. [#27](https://github.com/crystal-lang/crystal-db/pull/27)
2016-12-07 16:09:37 +00:00
## v0.2.2 (2016-12-06)
This release requires crystal 0.20.1
2016-10-22 00:49:16 +00:00
* Changed default connection pool size limit is now 0 (unlimited).
2016-12-07 16:09:37 +00:00
* Fixed allow new connections right away if pool can be increased.
## ~~v0.2.1 (2016-12-06)~~ [YANKED]
2016-10-23 00:52:15 +00:00
## v0.2.0 (2016-10-20)
2016-10-23 00:52:15 +00:00
* Fixed release DB connection if an exception occurs during execution of a query (thanks @ggiraldez)
## ~~v0.1.1 (2016-09-28)~~ [YANKED]
This release requires crystal 0.19.2
Note: v0.1.1 is yanked since is incompatible with v0.1.0 [more](https://github.com/crystal-lang/crystal-mysql/issues/10).
2016-10-23 00:52:15 +00:00
* Added connection pool. `DB.open` works with a underlying connection pool. Use `Database#using_connection` to ensure the same connection is been used across multiple statements. [more](https://github.com/crystal-lang/crystal-db/pull/12)
2016-10-23 00:52:15 +00:00
* Added mappings. JSON/YAML-like mapping macros (thanks @spalladino) [more](https://github.com/crystal-lang/crystal-db/pull/2)
2016-10-23 00:52:15 +00:00
* Changed require ResultSet implementors to just implement `read`, optionally implementing `read(T.class)`.
2016-10-23 00:52:15 +00:00
## v0.1.0 (2016-06-24)
* Initial release