From 8d66667a6bbe87b7f8d6a54c050c6484a30016b5 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Mon, 30 Sep 2019 14:40:41 +0200 Subject: [PATCH] Prep for 7.3.0 release --- .travis.yml | 16 +++++++--------- CHANGELOG.md | 11 +++++++++++ src/Elasticsearch/Client.php | 2 +- 3 files changed, 19 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index eac3175a5..9664ac63a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,22 +17,20 @@ matrix: fast_finish: true include: - php: 7.1 - env: ES_VERSION="7.2.0" + env: ES_VERSION="7.3.2" - php: 7.2 - env: ES_VERSION="7.2.0" + env: ES_VERSION="7.3.2" - php: 7.3 - env: ES_VERSION="7.2.0" - - php: 7.1 - env: ES_VERSION="7.2.1" - - php: 7.2 - env: ES_VERSION="7.2.1" + env: ES_VERSION="7.3.2" - php: 7.3 env: ES_VERSION="7.2.1" - php: 7.3 - env: ES_VERSION="7.3.0" + env: ES_VERSION="8.0.0-SNAPSHOT" allow_failures: - php: 7.3 - env: ES_VERSION="7.3.0" + env: ES_VERSION="7.2.1" + - php: 7.3 + env: ES_VERSION="8.0.0-SNAPSHOT" env: global: diff --git a/CHANGELOG.md b/CHANGELOG.md index 73f96861c..67d5174f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## Release 7.3.0 + +- Added support for simplified access to the `X-Opaque-Id` header + [#952](https://github.com/elastic/elasticsearch-php/pull/952) +- Added the HTTP port in the log messages + [#950](https://github.com/elastic/elasticsearch-php/pull/950) +- Fixed hostname with underscore (ClientBuilder::prependMissingScheme) + [#949](https://github.com/elastic/elasticsearch-php/pull/949) +- Removed unused Monolog in ClientBuilder + [#948](https://github.com/elastic/elasticsearch-php/pull/948) + ## Release 7.2.2 - Reintroduced the optional parameter in `Elasticsearch\Namespaces\IndicesNamespace::getAliases()`. diff --git a/src/Elasticsearch/Client.php b/src/Elasticsearch/Client.php index c4511f289..6a7e7cd89 100644 --- a/src/Elasticsearch/Client.php +++ b/src/Elasticsearch/Client.php @@ -33,7 +33,7 @@ */ class Client { - const VERSION = '7.2.2'; + const VERSION = '7.3.0'; /** * @var Transport