Skip to content

Commit 1d90a7f

Browse files
committed
Updated README, CHANGELOG and version to 7.7.0
1 parent 041e8aa commit 1d90a7f

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## Release 7.7.0
2+
3+
- Removed setId() into endpoints, fixed `util/GenerateEndpoints.php`
4+
[#1026](https://github.com/elastic/elasticsearch-php/pull/1026)
5+
- Fixes JsonErrorException with code instead of message
6+
[#1022](https://github.com/elastic/elasticsearch-php/pull/1022)
7+
- Better exception message for Could not parse URI
8+
[#1016](https://github.com/elastic/elasticsearch-php/pull/1016)
9+
- Added JUnit log for PHPUnit
10+
[88b7e1c](https://github.com/elastic/elasticsearch-php/commit/88b7e1ce80a5a52c1d64d00c55fef77097bbd8a9)
11+
- Added the XPack endpoints
12+
[763d91a](https://github.com/elastic/elasticsearch-php/commit/763d91a3d506075316b84a38b2bed7a098da5028)
13+
114
## Release 7.6.1
215

316
- Fixed issue with `guzzlehttp/ringphp` and `guzzle/streams`

README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,25 @@ Official low-level client for Elasticsearch. Its goal is to provide common groun
99

1010
To maintain consistency across all the low-level clients (Ruby, Python, etc.), clients accept simple associative arrays as parameters. All parameters, from the URI to the document body, are defined in the associative array.
1111

12-
Starting from version 7.4.0, all the endpoints (and namespaces) are autogenerated using the [util/GenerateEndpoints.php](https://github.com/elastic/elasticsearch-php/blob/master/util/GenerateEndpoints.php) script. This script reads the [Elasticsearch API specs](https://github.com/elastic/elasticsearch/tree/master/rest-api-spec/src/main/resources/rest-api-spec/api) and generated the PHP classes for all the endpoints.
12+
Starting from version `7.4.0`, all the endpoints (and namespaces) are autogenerated using the [util/GenerateEndpoints.php](https://github.com/elastic/elasticsearch-php/blob/master/util/GenerateEndpoints.php) script. This script reads the [Elasticsearch API specs](https://github.com/elastic/elasticsearch/tree/master/rest-api-spec/src/main/resources/rest-api-spec/api) and generated the PHP classes for all the endpoints.
13+
14+
Starting from version `7.7.0` we included also the [XPack endpoints](https://www.elastic.co/what-is/open-x-pack) of Elasticsearch.
15+
These APIs are related to:
16+
17+
- [Cross-cluster replication](https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-apis.html)
18+
- [Graph explorer](https://www.elastic.co/guide/en/elasticsearch/reference/current/graph-explore-api.html)
19+
- [Info](https://www.elastic.co/guide/en/elasticsearch/reference/current/info-api.html)
20+
- [Licensing](https://www.elastic.co/guide/en/elasticsearch/reference/current/licensing-apis.html)
21+
- [Machine learning anomaly detection](https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-apis.html)
22+
- [Machine learning data frame analytics](https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-df-analytics-apis.html)
23+
- [Migration](https://www.elastic.co/guide/en/elasticsearch/reference/current/migration-api.html)
24+
- [Reload search analyzers](https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-reload-analyzers.html)
25+
- [Rollup](https://www.elastic.co/guide/en/elasticsearch/reference/current/rollup-apis.html)
26+
- [Security](https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api.html)
27+
- [Snapshot lifecycle management](https://www.elastic.co/guide/en/elasticsearch/reference/current/snapshot-lifecycle-management-api.html)
28+
- [Transform](https://www.elastic.co/guide/en/elasticsearch/reference/current/transform-apis.html)
29+
- [Usage](https://www.elastic.co/guide/en/elasticsearch/reference/current/usage-api.html)
30+
- [Watcher](https://www.elastic.co/guide/en/elasticsearch/reference/current/watcher-api.html)
1331

1432
Table of Contents
1533
=================

src/Elasticsearch/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
*/
5454
class Client
5555
{
56-
const VERSION = '7.7';
56+
const VERSION = '7.7.0';
5757

5858
/**
5959
* @var Transport

0 commit comments

Comments
 (0)