elastomer-client 6.2.2 → 6.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/main.yml +3 -3
- data/CHANGELOG.md +4 -0
- data/README.md +4 -1
- data/docker/compose.yaml +5 -5
- data/lib/elastomer_client/client/rest_api_spec/api_spec_v8_17.rb +8161 -0
- data/lib/elastomer_client/client/rest_api_spec/api_spec_v8_18.rb +8456 -0
- data/lib/elastomer_client/version.rb +1 -1
- data/script/generate-rest-api-spec +1 -1
- data/script/setup-ccr +1 -1
- data/test/client/cluster_test.rb +2 -1
- metadata +5 -3
data/script/setup-ccr
CHANGED
data/test/client/cluster_test.rb
CHANGED
@@ -79,7 +79,8 @@ describe ElastomerClient::Client::Cluster do
|
|
79
79
|
|
80
80
|
it "returns cluster stats" do
|
81
81
|
h = @cluster.stats
|
82
|
-
expected = $client.version_support.es_version_8_plus? ? %w[cluster_name cluster_uuid indices nodes snapshots status timestamp] : %w[cluster_name indices nodes status timestamp]
|
82
|
+
expected = $client.version_support.es_version_8_plus? ? %w[ccs cluster_name cluster_uuid indices nodes repositories snapshots status timestamp] : %w[cluster_name indices nodes status timestamp]
|
83
|
+
|
83
84
|
expected.unshift("_nodes")
|
84
85
|
|
85
86
|
assert_equal expected, h.keys.sort
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: elastomer-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.2.
|
4
|
+
version: 6.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tim Pease
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2025-
|
12
|
+
date: 2025-06-09 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: addressable
|
@@ -139,6 +139,8 @@ files:
|
|
139
139
|
- lib/elastomer_client/client/rest_api_spec/api_spec.rb
|
140
140
|
- lib/elastomer_client/client/rest_api_spec/api_spec_v5_6.rb
|
141
141
|
- lib/elastomer_client/client/rest_api_spec/api_spec_v8_13.rb
|
142
|
+
- lib/elastomer_client/client/rest_api_spec/api_spec_v8_17.rb
|
143
|
+
- lib/elastomer_client/client/rest_api_spec/api_spec_v8_18.rb
|
142
144
|
- lib/elastomer_client/client/rest_api_spec/api_spec_v8_7.rb
|
143
145
|
- lib/elastomer_client/client/rest_api_spec/rest_api.rb
|
144
146
|
- lib/elastomer_client/client/scroller.rb
|
@@ -210,7 +212,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
210
212
|
- !ruby/object:Gem::Version
|
211
213
|
version: '0'
|
212
214
|
requirements: []
|
213
|
-
rubygems_version: 3.
|
215
|
+
rubygems_version: 3.0.3.1
|
214
216
|
signing_key:
|
215
217
|
specification_version: 4
|
216
218
|
summary: A library for interacting with Elasticsearch
|