Skip to content

Commit 7343050

Browse files
committed
Prep. for 7.13.0 release
1 parent ff65e31 commit 7343050

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## Release 7.13.0
2+
3+
- (DOCS) Added the HTTP meta data section
4+
[#1143](https://github.com/elastic/elasticsearch-php/pull/1143)
5+
- Added support for API Compatibility Header
6+
[#1142](https://github.com/elastic/elasticsearch-php/pull/1142)
7+
- (DOCS) Added Helpers section to PHP book
8+
[#1129](https://github.com/elastic/elasticsearch-php/pull/1129)
9+
- Added the API description in phpdoc section for each endpoint
10+
[9e05c81](https://github.com/elastic/elasticsearch-php/commit/9e05c8108b638b60cc676b6a4f4be97c7df9eb64)
11+
- Usage of PHPUnit 9 only + migrated xml configurations
12+
[038b5dd](https://github.com/elastic/elasticsearch-php/commit/038b5dd043dc76b20b9f5f265ea914a38d33568d)
13+
- Added port in url for trace and logger messages
14+
[#1126](https://github.com/elastic/elasticsearch-php/pull/1126)
15+
116
## Release 7.12.0
217

318
- Updated the endpoints for ES 7.12 + removed cpliakas/git-wrapper

src/Elasticsearch/Client.php

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@
1717
namespace Elasticsearch;
1818

1919
use Elasticsearch\Common\Exceptions\BadMethodCallException;
20-
use Elasticsearch\Common\Exceptions\InvalidArgumentException;
21-
use Elasticsearch\Common\Exceptions\NoNodesAvailableException;
22-
use Elasticsearch\Common\Exceptions\BadRequest400Exception;
23-
use Elasticsearch\Common\Exceptions\Missing404Exception;
24-
use Elasticsearch\Common\Exceptions\TransportException;
2520
use Elasticsearch\Endpoints\AbstractEndpoint;
2621
use Elasticsearch\Namespaces\AbstractNamespace;
2722
use Elasticsearch\Namespaces\NamespaceBuilderInterface;
@@ -69,7 +64,7 @@
6964
*/
7065
class Client
7166
{
72-
const VERSION = '7.13.0-SNAPSHOT';
67+
const VERSION = '7.13.0';
7368

7469
/**
7570
* @var Transport

0 commit comments

Comments
 (0)