Skip to content

Commit e0808a6

Browse files
committed
[EXT] Release 0.0.32
1 parent 1d7a4b5 commit e0808a6

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## EXT:0.0.32
2+
3+
New release of [`elasticsearch-extensions`](elasticsearch-extensions):
4+
5+
- Fixes parsing Elasticsearch version when a major, minor or patch have more than 1 digit (e.g. 7.10.0) ([commit](https://github.com/elastic/elasticsearch-ruby/commit/1d7a4b58e2605e946206f8e1720b1ddde710aef0)).
6+
- Changes the key of the parameter of Reindex from `target` to `dest` by @tetsuya-ogawa ([commit](https://github.com/elastic/elasticsearch-ruby/commit/25a983f7d848fc8bf0345ff3fe6011ef90c8c4c3#diff-6ec4953cb34b5a3a20740404a942fce4e4de749f2162d9c88cc72e2b3a483474)).
7+
- Fixes test cluster clear_cluster option by @Lajcisvk ([commit](https://github.com/elastic/elasticsearch-ruby/commit/f55b56ed2a54299c5f5ed52a6513d186acd411db#diff-6ec4953cb34b5a3a20740404a942fce4e4de749f2162d9c88cc72e2b3a483474)).
8+
- Sanitizes filename in the backup extension ([commit](https://github.com/elastic/elasticsearch-ruby/commit/6c055690782baf87f3b09e713b53b3d508af5197#diff-6ec4953cb34b5a3a20740404a942fce4e4de749f2162d9c88cc72e2b3a483474)).
9+
- Adds 8.0.0 to cluster tasks ([commit](https://github.com/elastic/elasticsearch-ruby/commit/c3189328291b1a83f2c857e504ad9b75e20a7f93#diff-6ec4953cb34b5a3a20740404a942fce4e4de749f2162d9c88cc72e2b3a483474)).
10+
111
## 7.10.0
212

313
### Client

elasticsearch-extensions/lib/elasticsearch/extensions/test/cluster.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def initialize(arguments={})
258258
@clear_cluster = if @arguments[:clear_cluster].nil?
259259
(ENV.fetch('TEST_CLUSTER_CLEAR', 'true') != 'false')
260260
else
261-
!!@arguments[:clear_cluster]
261+
!!@arguments[:clear_cluster]
262262
end
263263

264264
# Make sure `cluster_name` is not dangerous

elasticsearch-extensions/lib/elasticsearch/extensions/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717

1818
module Elasticsearch
1919
module Extensions
20-
VERSION = "0.0.31"
20+
VERSION = '0.0.32'.freeze
2121
end
2222
end

0 commit comments

Comments
 (0)