Skip to content

Commit

Permalink
Prepare 7.1.1 release (#1924)
Browse files Browse the repository at this point in the history
  • Loading branch information
deguif authored Mar 24, 2021
1 parent 5ca8cfc commit 8ecc5cd
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 11 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/ruflin/Elastica/compare/7.1.0...master)
## [Unreleased](https://github.com/ruflin/Elastica/compare/7.1.1...master)
### Backward Compatibility Breaks
### Added
### Changed
### Deprecated
### Removed
### Fixed
### Security

## [7.1.1](https://github.com/ruflin/Elastica/compare/7.1.0...7.1.1)
### Backward Compatibility Breaks
* Changed `Elastica\Query\MatchQuery::setFieldParam()` signature to allow passing bool, float or int [#1941](https://github.com/ruflin/Elastica/pull/1941)
* Changed `Elastica\Query\MatchPhraseQuery::setFieldParam()` signature to allow passing bool, float or int [#1944](https://github.com/ruflin/Elastica/pull/1944)
### Added
* Excluded `docker` directory in `.gitattributes` [#1938](https://github.com/ruflin/Elastica/pull/1938)
### Changed
* Included `Content-Type` HTTP header every time, whatever the content of the body is [#1780](https://github.com/ruflin/Elastica/pull/1780)
* Changed `Elastica\Status::indexExists()`, `Elastica\Status::aliasExists()` and `Elastica\Status::getIndicesWithAlias()` signatures [#1929](https://github.com/ruflin/Elastica/pull/1929)
Expand All @@ -18,15 +28,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Updated `composer-normalize` to `2.13.3` [#1927](https://github.com/ruflin/Elastica/pull/1927)
### Deprecated
* Deprecated `Elastica\Transport\HttpAdapter` class [#1940](https://github.com/ruflin/Elastica/pull/1940)
### Removed
### Fixed
* Fixed wrong `ltrim` usage in guzzle transport [#1783](https://github.com/ruflin/Elastica/pull/1783)
* Fixed `_seq_no` and `_primary_term` wrong initialization [#1920](https://github.com/ruflin/Elastica/pull/1920)
* Fixed `Elastica\Connection\StrategyInterface` instance checks [#1921](https://github.com/ruflin/Elastica/pull/1921)
* Fixed various PHPDoc annotations [#1922](https://github.com/ruflin/Elastica/pull/1922)
* Fixed numeric index names are returned as `int` in `Elastica\Status::getIndexNames()` [#1928](https://github.com/ruflin/Elastica/pull/1928)
* Fixed using raw array in `post_filter` [#1950](https://github.com/ruflin/Elastica/pull/1950)
### Security

## [7.1.0](https://github.com/ruflin/Elastica/compare/7.0.0...7.1.0)
### Backward Compatibility Breaks
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ Versions & Dependencies
------------
This project tries to follow Elasticsearch in terms of [End of Life](https://www.elastic.co/support/eol) and maintenance since 5.x

| Elastica | ElasticSearch | elasticsearch-php | PHP |
| --------------------------------------------------------------------------------------- | ------------- | ----------------- | ------------ |
| [7.x](https://github.com/ruflin/Elastica/tree/master) | 7.x | ^7.0 | ^7.2 || ^8.0 |
| [7.0](https://github.com/ruflin/Elastica/tree/7.0) | 7.x | ^7.0 | ^7.2 |
| [6.x](https://github.com/ruflin/Elastica/tree/6.x) | 6.x | ^6.0 | ^7.0 |
| [5.x](https://github.com/ruflin/Elastica/tree/5.x) (unmaintained) | 5.x | ^5.0 | \>=5.6 |
| [3.2.3](https://github.com/ruflin/Elastica/tree/3.2.3) (unmaintained) | 2.4.0 | no | \>=5.4 |
| [2.x](https://github.com/ruflin/Elastica/tree/2.x) (unmaintained) | 1.7.2 | no | \>=5.3.3 |
| Elastica | ElasticSearch | elasticsearch-php | PHP |
| --------------------------------------------------------------------------------------- | ------------- | ----------------- | -------------- |
| [7.x](https://github.com/ruflin/Elastica/tree/master) | 7.x | ^7.0 | ^7.2 \|\| ^8.0 |
| [7.0](https://github.com/ruflin/Elastica/tree/7.0) | 7.x | ^7.0 | ^7.2 |
| [6.x](https://github.com/ruflin/Elastica/tree/6.x) | 6.x | ^6.0 | ^7.0 |
| [5.x](https://github.com/ruflin/Elastica/tree/5.x) (unmaintained) | 5.x | ^5.0 | \>=5.6 |
| [3.2.3](https://github.com/ruflin/Elastica/tree/3.2.3) (unmaintained) | 2.4.0 | no | \>=5.4 |
| [2.x](https://github.com/ruflin/Elastica/tree/2.x) (unmaintained) | 1.7.2 | no | \>=5.3.3 |
------------

0 comments on commit 8ecc5cd

Please sign in to comment.