elastomer-client 6.2.2 → 6.2.4
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 +7 -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/client/rest_api_spec/api_spec_v8_19.rb +8721 -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 -2
 
    
        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.4
         
     | 
| 
       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-10-28 00:00:00.000000000 Z
         
     | 
| 
       13 
13 
     | 
    
         
             
            dependencies:
         
     | 
| 
       14 
14 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       15 
15 
     | 
    
         
             
              name: addressable
         
     | 
| 
         @@ -139,6 +139,9 @@ 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
         
     | 
| 
      
 144 
     | 
    
         
            +
            - lib/elastomer_client/client/rest_api_spec/api_spec_v8_19.rb
         
     | 
| 
       142 
145 
     | 
    
         
             
            - lib/elastomer_client/client/rest_api_spec/api_spec_v8_7.rb
         
     | 
| 
       143 
146 
     | 
    
         
             
            - lib/elastomer_client/client/rest_api_spec/rest_api.rb
         
     | 
| 
       144 
147 
     | 
    
         
             
            - lib/elastomer_client/client/scroller.rb
         
     |