diff --git a/CHANGELOG.md b/CHANGELOG.md index 8173daa63..147b51309 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +## Release 7.1.0 + +- Added warning log for Elasticsearch response containing the `Warning` header + [#911](https://github.com/elastic/elasticsearch-php/pull/911) +- Fixed #838 hosting company is blocking ports because of `YamlRunnerTest.php` + [#844](https://github.com/elastic/elasticsearch-php/pull/844) +- Specialized inheritance of `NoNodesAvailableException` to extend `ServerErrorResponseException` + instead of the generic `\Exception` + [#607](https://github.com/elastic/elasticsearch-php/pull/607) +- Fixed scroll TTL is extracted but not set as a body param + [#907](https://github.com/elastic/elasticsearch-php/pull/907) + +### Testing + +- Improved the speed of integration tests removing snapshots delete from `YamlRunnerTest::clean` + [#911](https://github.com/elastic/elasticsearch-php/pull/911) +- Reduced the number of skipping YAML integration tests from 20 to 6 + [#911](https://github.com/elastic/elasticsearch-php/pull/911) + +### Docs + +- Documentation updated for Elasticsearch 7 + [#904](https://github.com/elastic/elasticsearch-php/pull/904) + ## Release 7.0.2 - Fixed incorrect return type hint when using async requests/futures diff --git a/src/Elasticsearch/Client.php b/src/Elasticsearch/Client.php index 3161f47e0..0bda4535f 100644 --- a/src/Elasticsearch/Client.php +++ b/src/Elasticsearch/Client.php @@ -34,7 +34,7 @@ */ class Client { - const VERSION = '7.0.2'; + const VERSION = '7.1.0'; /** * @var Transport