From 77a4ade87aef8e8e6b84bafb6704cd35ac15742a Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Thu, 23 Sep 2021 09:05:35 +0200 Subject: [PATCH] Set VERSION to 7.15.0 + updated changelog and release_note --- CHANGELOG.md | 15 +++++++++++ docs/release-notes.asciidoc | 49 ++++++++++++++++++++++++++++++++++++ src/Elasticsearch/Client.php | 2 +- 3 files changed, 65 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c56afc2e..118a20753 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## Release 7.15.0 + +- Updated endpoints for Elasticsearch 7.15.0 + [995f6d4](https://github.com/elastic/elasticsearch-php/commit/995f6d4bde7de76004e95d7a434b1d59da7a7e75) + +## Release 7.14.0 + +- Usage of psr/log version 2 + [#1154](https://github.com/elastic/elasticsearch-php/pull/1154) +- Update search iterators to send `scroll_id` inside the request body + [#1134](https://github.com/elastic/elasticsearch-php/pull/1134) +- Added the `ingest.geoip.downloader.enabled=false` setting for ES + [5867351](https://github.com/elastic/elasticsearch-php/commit/586735109dc18f22bfdf3b73ab0621b37e857be1) +- Removed phpcs for autogenerated files (endpoints) + [651c57b](https://github.com/elastic/elasticsearch-php/commit/651c57b2e6bf98a0fd48220949966e630e5a804a) ## Release 7.13.1 - Added port in url for trace and logger messages diff --git a/docs/release-notes.asciidoc b/docs/release-notes.asciidoc index 19f4bb2f0..3b2e9e2ef 100644 --- a/docs/release-notes.asciidoc +++ b/docs/release-notes.asciidoc @@ -1,6 +1,10 @@ [[release-notes]] == Release notes +* <> +* <> +* <> +* <> * <> * <> * <> @@ -24,6 +28,51 @@ * <> * <> +[discrete] +[[rn-7-15-0]] +=== 7.15.0 + +* Updated endpoints for Elasticsearch 7.15.0 + https://github.com/elastic/elasticsearch-php/commit/995f6d4bde7de76004e95d7a434b1d59da7a7e75[995f6d4] + + +[discrete] +[[rn-7-14-0]] +=== 7.14.0 + +* Usage of psr/log version 2 + https://github.com/elastic/elasticsearch-php/pull/1154[#1154] +* Update search iterators to send `scroll_id` inside the request body + https://github.com/elastic/elasticsearch-php/pull/1134[#1134] +* Added the `ingest.geoip.downloader.enabled=false` setting for ES + https://github.com/elastic/elasticsearch-php/commit/586735109dc18f22bfdf3b73ab0621b37e857be1[5867351] +* Removed phpcs for autogenerated files (endpoints) + https://github.com/elastic/elasticsearch-php/commit/651c57b2e6bf98a0fd48220949966e630e5a804a[651c57b] + + +[discrete] +[[rn-7-13-1]] +=== 7.13.1 + +* Added port in url for trace and logger messages + https://github.com/elastic/elasticsearch-php/pull/1126[#1126] + + +[discrete] +[[rn-7-13-0]] +=== 7.13.0 + +* (DOCS) Added the HTTP meta data section + https://github.com/elastic/elasticsearch-php/pull/1143[#1143] +* Added support for API Compatibility Header + https://github.com/elastic/elasticsearch-php/pull/1142[#1142] +* (DOCS) Added Helpers section to PHP book + https://github.com/elastic/elasticsearch-php/pull/1129[#1129] +* Added the API description in phpdoc section for each endpoint + https://github.com/elastic/elasticsearch-php/commit/9e05c8108b638b60cc676b6a4f4be97c7df9eb64[9e05c81] +* Usage of PHPUnit 9 only + migrated xml configurations + https://github.com/elastic/elasticsearch-php/commit/038b5dd043dc76b20b9f5f265ea914a38d33568d[038b5dd] + [discrete] [[rn-7-12-0]] diff --git a/src/Elasticsearch/Client.php b/src/Elasticsearch/Client.php index 754d9b2e0..8c9b586fb 100644 --- a/src/Elasticsearch/Client.php +++ b/src/Elasticsearch/Client.php @@ -69,7 +69,7 @@ */ class Client { - const VERSION = '7.15.0-SNAPSHOT'; + const VERSION = '7.15.0'; /** * @var Transport