mirror of
https://gitea.invidious.io/iv-org/shard-crystal-db.git
synced 2024-08-15 00:53:32 +00:00
4 KiB
4 KiB
v0.6.0 (2019-08-02)
- Fix compatibility issues for Crystal 0.30.0. (#108, thanks @bcardiff)
- Fix
BeginTransaction#transaction
rollback due to protocol error. (#101, thanks @straight-shoota) - CI includes Crystal nightly. (#106, thanks @bcardiff)
- Add the Cassandra driver. (#94, thanks @kaukas)
- Several docs improvements. (#99, #96, #107, thanks @nickelghost, @greenbigfrog, @MatthiasWinkelmann)
v0.5.1 (2018-11-07)
- Fix
QueryMethods#query_one?
handling no rows. (#86, thanks @robdavid) - Documentation improvements. (#87, #82, #76, thanks @wontruefree, @Heaven31415, @vtambourine)
v0.5.0 (2017-12-29)
- Fix compatibility issues for crystal 0.24.0. No changes in the api.
v0.4.4 (2017-12-29)
- Allow query results to be read as named tuples directly (see #56, thanks @Nephos)
- Fix sqlite samples in documentation (see #71, thanks @hinrik)
v0.4.3 (2017-11-07)
- Fix connections were not released when building invalid statements. (see #65, thanks @crisward)
- Fix some exceptions were not deriving from
DB::Error
. (see #70, thanks @exts)
v0.4.2 (2017-04-21)
- Fix compatibility issues for crystal 0.22.0
v0.4.1 (2017-04-10)
- Add spec helper for drivers. #48
- Add
#query_each
. #18 - Fix
#read(T.class)
to deal better with unhandled types.
v0.4.0 (2017-03-20)
- Add
DB.connect
to create non pooled connections - Add
Database#checkout
to allow explicit checkout/release connection (see #38) - Fix
Mapping.from_rs
closes the result_set - Fix
Mapping
works with nilable types (see #40, thanks @RX14)
v0.3.3 (2016-12-24)
- Fix compatibility issues for crystal 0.20.3
v0.3.2 (2016-12-16)
- Allow connection pool retry logic in
#scalar
queries.
v0.3.1 (2016-12-15)
- Add ConnectionRefused exception to flag issues when opening new connections.
v0.3.0 (2016-12-14)
-
Add support for non prepared statements. #25
-
Add support for transactions & nested transactions. #27
-
Add
Bool
andTime
toDB::Any
.
v0.2.2 (2016-12-06)
This release requires crystal 0.20.1
-
Changed default connection pool size limit is now 0 (unlimited).
-
Fixed allow new connections right away if pool can be increased.
v0.2.1 (2016-12-06) [YANKED]
v0.2.0 (2016-10-20)
- 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.
-
Added connection pool.
DB.open
works with a underlying connection pool. UseDatabase#using_connection
to ensure the same connection is been used across multiple statements. more -
Added mappings. JSON/YAML-like mapping macros (thanks @spalladino) more
-
Changed require ResultSet implementors to just implement
read
, optionally implementingread(T.class)
.
v0.1.0 (2016-06-24)
- Initial release