diff --git a/CHANGELOG.md b/CHANGELOG.md index 6796039d6..38b76a662 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +## Release 7.2.0 + +- Updated the API endpoints for working with Elasticsearch 7.2.0: + - added `wait_for_active_shards` parameter to `indices.close` API; + - added `expand_wildcards` parameter to `cluster.health` API; + - added include_unloaded_segments`, `expand_wildcards`, `forbid_closed_indices` + parameters to `indices.stats` API. + [[27d721b]](https://github.com/elastic/elasticsearch-php/pull/933/commits/27d721ba44b8c199388650c5a1c8bd69757229aa) +- Updated the phpdoc parameters for all the API endpoints + [[27d721b]](https://github.com/elastic/elasticsearch-php/pull/933/commits/27d721ba44b8c199388650c5a1c8bd69757229aa) +- Improved the Travis CI speed using cache feature with composer + [#929](https://github.com/elastic/elasticsearch-php/pull/929) +- Fixed `php_uname()` usage checking if it is disabled + [#927](https://github.com/elastic/elasticsearch-php/pull/927) +- Added support of Elastic Cloud ID and API key authentication + [#923](https://github.com/elastic/elasticsearch-php/pull/923) + ## Release 7.1.1 - Fixed `ClientBuilder::setSSLVerification()` to accept string or boolean diff --git a/src/Elasticsearch/Client.php b/src/Elasticsearch/Client.php index f019b57bc..95267276a 100644 --- a/src/Elasticsearch/Client.php +++ b/src/Elasticsearch/Client.php @@ -33,7 +33,7 @@ */ class Client { - const VERSION = '7.1.1'; + const VERSION = '7.2.0'; /** * @var Transport