diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ed816d03c..fa6e6ff33e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,7 @@ # Change Log All notable changes to this project will be documented in this file based on the [Keep a Changelog](http://keepachangelog.com/) Standard. This project adheres to [Semantic Versioning](http://semver.org/). - -## [Unreleased](https://github.com/ruflin/Elastica/compare/6.0.1...master) +## [Unreleased](https://github.com/ruflin/Elastica/compare/6.0.2...master) ### Backward Compatibility Breaks @@ -10,6 +9,15 @@ All notable changes to this project will be documented in this file based on the ### Added +### Improvements + +### Deprecated + + +## [6.0.2](https://github.com/ruflin/Elastica/compare/6.0.1...6.0.2) + +### Added + * Added support for pipeline when indexing document. [#1455](https://github.com/ruflin/Elastica/pull/1455) * Added support for multiple bucket sort orders for aggregations. [#1480](https://github.com/ruflin/Elastica/pull/1480) * Added basic support for the Elasticsearch Task Api @@ -20,8 +28,6 @@ All notable changes to this project will be documented in this file based on the * Use `source` script field instead of deprecated (since ES 5.6) `inline` field. [#1497](https://github.com/ruflin/Elastica/pull/1497) * Updated Elasticsearch testing version to 6.2.4. [#1501](https://github.com/ruflin/Elastica/pull/1501) -### Deprecated - ## [6.0.1](https://github.com/ruflin/Elastica/compare/6.0.0...6.0.1) diff --git a/test/Elastica/ClusterTest.php b/test/Elastica/ClusterTest.php index 006a69a247..382ac9f483 100644 --- a/test/Elastica/ClusterTest.php +++ b/test/Elastica/ClusterTest.php @@ -27,7 +27,7 @@ public function testGetNodeNames() $rawNodeNames[] = $rawNode['name']; } - $this->assertEquals($rawNodeNames, $cluster->getNodeNames()); + $this->assertEquals(asort($rawNodeNames), asort($cluster->getNodeNames())); } /**