From 9fb09433362fae52761b7130ae82871715faeace Mon Sep 17 00:00:00 2001 From: Oleg Jukovec Date: Mon, 29 May 2023 16:34:55 +0300 Subject: [PATCH] Release 1.12.0 Overview The release introduces the ability to gracefully close Connection and ConnectionPool and also provides methods for adding or removing an endpoint from a ConnectionPool. Breaking changes There are no breaking changes in the release. New features Connection.CloseGraceful() unlike Connection.Close() waits for all requests to complete (#257). ConnectionPool.CloseGraceful() unlike ConnectionPool.Close() waits for all requests to complete (#257). ConnectionPool.Add()/ConnectionPool.Remove() to add/remove endpoints from a pool (#290). Other Updates crud tests with Tarantool 3.0 (#293). Updates SQL tests with Tarantool 3.0 (#295). --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2655e52e..f3781e099 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,18 @@ Versioning](http://semver.org/spec/v2.0.0.html) except to the first release. ### Added +### Changed + +### Fixed + +## [1.12.0] - 2023-05-30 + +The release introduces the ability to gracefully close Connection +and ConnectionPool and also provides methods for adding or removing an endpoint +from a ConnectionPool. + +### Added + - Connection.CloseGraceful() unlike Connection.Close() waits for all requests to complete (#257) - ConnectionPool.CloseGraceful() unlike ConnectionPool.Close() waits for all