Skip to content

Commit f8b5d2b

Browse files
committed
Merge branch 'prep-7.3'
2 parents 7aa305d + 8d66667 commit f8b5d2b

File tree

3 files changed

+19
-10
lines changed

3 files changed

+19
-10
lines changed

.travis.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,20 @@ matrix:
1717
fast_finish: true
1818
include:
1919
- php: 7.1
20-
env: ES_VERSION="7.2.0"
20+
env: ES_VERSION="7.3.2"
2121
- php: 7.2
22-
env: ES_VERSION="7.2.0"
22+
env: ES_VERSION="7.3.2"
2323
- php: 7.3
24-
env: ES_VERSION="7.2.0"
25-
- php: 7.1
26-
env: ES_VERSION="7.2.1"
27-
- php: 7.2
28-
env: ES_VERSION="7.2.1"
24+
env: ES_VERSION="7.3.2"
2925
- php: 7.3
3026
env: ES_VERSION="7.2.1"
3127
- php: 7.3
32-
env: ES_VERSION="7.3.0"
28+
env: ES_VERSION="8.0.0-SNAPSHOT"
3329
allow_failures:
3430
- php: 7.3
35-
env: ES_VERSION="7.3.0"
31+
env: ES_VERSION="7.2.1"
32+
- php: 7.3
33+
env: ES_VERSION="8.0.0-SNAPSHOT"
3634

3735
env:
3836
global:

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## Release 7.3.0
2+
3+
- Added support for simplified access to the `X-Opaque-Id` header
4+
[#952](https://github.com/elastic/elasticsearch-php/pull/952)
5+
- Added the HTTP port in the log messages
6+
[#950](https://github.com/elastic/elasticsearch-php/pull/950)
7+
- Fixed hostname with underscore (ClientBuilder::prependMissingScheme)
8+
[#949](https://github.com/elastic/elasticsearch-php/pull/949)
9+
- Removed unused Monolog in ClientBuilder
10+
[#948](https://github.com/elastic/elasticsearch-php/pull/948)
11+
112
## Release 7.2.2
213

314
- Reintroduced the optional parameter in `Elasticsearch\Namespaces\IndicesNamespace::getAliases()`.

src/Elasticsearch/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
*/
3434
class Client
3535
{
36-
const VERSION = '7.2.2';
36+
const VERSION = '7.3.0';
3737

3838
/**
3939
* @var Transport

0 commit comments

Comments
 (0)