From 6420d3896b91f932bf4e36201aed1bf73e7b946b Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Tue, 27 Aug 2019 14:19:29 +0200 Subject: [PATCH] Prepare for 7.2.1 release --- CHANGELOG.md | 14 +++++++++++++- src/Elasticsearch/Client.php | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 38b76a662..591f6d0b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,16 @@ -## Release 7.2.0 +## Release 7.2.1 + +- Reintroduced `Elasticsearch\Namespaces\IndicesNamespace::getAliases()` as proxy + to `IndicesNamespace::getAlias()` to prevent BC breaks. The `getAliases()` is + marked as deprecated and it will be removed from `elasticsearch-php 8.0` + [#943](https://github.com/elastic/elasticsearch-php/pull/943) + +### Docs + +- Fixed missing put mapping code snippet in code examples + [#938](https://github.com/elastic/elasticsearch-php/pull/938) + +# 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; diff --git a/src/Elasticsearch/Client.php b/src/Elasticsearch/Client.php index 95267276a..bbbdb4529 100644 --- a/src/Elasticsearch/Client.php +++ b/src/Elasticsearch/Client.php @@ -33,7 +33,7 @@ */ class Client { - const VERSION = '7.2.0'; + const VERSION = '7.2.1'; /** * @var Transport