From ff9abe703b337fea20c37e3b5a56c2c89d76c9fb Mon Sep 17 00:00:00 2001 From: Oleg Zhulnev Date: Sat, 27 Jan 2024 22:35:22 +0300 Subject: [PATCH] Update change log --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96c65266a..bc3821cfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -65,6 +65,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * `Elastica\Search::setOptionsAndQuery()` * `Elastica\Index::search()` * `Elastica\Index::createSearch()` +* Removed classes [#2188](https://github.com/ruflin/Elastica/pull/2188) + * `Elastica\Connection` + * `Elastica\Connection\ConnectionPool` + * `Elastica\Connection\Strategy\CallbackStrategy` + * `Elastica\Connection\Strategy\RoundRobin` + * `Elastica\Connection\Strategy\Simple` + * `Elastica\Connection\Strategy\StrategyFactory` + * `Elastica\Connection\Strategy\StrategyInterface` ### Added * Added support for PHP 8.2 [#2136](https://github.com/ruflin/Elastica/pull/2136) @@ -79,6 +87,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed * Removed the JSONParseException class, which is replaced by \JsonException * Removed the JSONParseException test class +* Removed `nyholm/dsn` as no longer needed. +* Removed `symfony/deprecation-contracts` as no longer needed. ### Fixed * Fix types order in `Elastica\Query` to work with psalm & expand the `aggs` type to include raw arrays ### Security