opensearch-ruby-cli 1.0.0 → 1.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ba1d0759c720a3d63f50653ff4b5ae6dfaa232d1b3def7b0448a90fc0179e705
4
- data.tar.gz: 5f9b0156045b9f3f83a37e3dedb0612e2a529d02158b539f3c71ccb6f69c213d
3
+ metadata.gz: c6acccc740fc6a3db5bef766357ea9843cab323b2efb6b01c839b180d263e434
4
+ data.tar.gz: 7b20702bb334f826778a71698f2f930c06491884f4153a98bbe16f0f83fb3515
5
5
  SHA512:
6
- metadata.gz: a52af0a64154ce4b8c6ac6d2e6b68c1ba713818a3598cdf39f1ad013fb67830741bcef99d4704aa17651d38fc6578de3494db7092da35d8a6a8ff0888593b057
7
- data.tar.gz: 8d2eb8b28bce00d885e326552218c2f5008f89a31567f60e40f24f222e2d6f690d785d481668cf5518f38816f82cad5718ce71d84f8a829620d0b0648a3bfed9
6
+ metadata.gz: 540abceed03f703e7a0af13347ff80a73d23ffa929cbc2925b9d3f3504d559c1b8f9502fda93b353e8dbaa3bd3859e0d4dc465f0fa06efeec000642becb1d22e
7
+ data.tar.gz: 5b15d4c5bd927e75b6ff45dd99b3ce5b642f93b624105e118792d768f54fc730b209affb242f2403ddc88599dbadd9db8835f9f379d97761a378d98339f345e6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [v1.0.1](https://github.com/opus-codium/opensearch-ruby-cli/tree/v1.0.1) (2025-03-20)
4
+
5
+ [Full Changelog](https://github.com/opus-codium/opensearch-ruby-cli/compare/v1.0.0...v1.0.1)
6
+
7
+ **Fixed bugs:**
8
+
9
+ - Fix missing requirement for uri [\#3](https://github.com/opus-codium/opensearch-ruby-cli/pull/3) ([smortex](https://github.com/smortex))
10
+
3
11
  ## [v1.0.0](https://github.com/opus-codium/opensearch-ruby-cli/tree/v1.0.0) (2024-04-10)
4
12
 
5
13
  [Full Changelog](https://github.com/opus-codium/opensearch-ruby-cli/compare/db66419f41d79ec468150c416a7929e5e0c9c4ee...v1.0.0)
data/Gemfile CHANGED
@@ -14,5 +14,8 @@ gem "rspec", "~> 3.0"
14
14
  gem "standard", "~> 1.3"
15
15
 
16
16
  group :development do
17
- gem "steep", require: false
17
+ # FIXME: Relax this version when the stardand gem can cope with empty collection annotations
18
+ # https://github.com/soutaro/steep/pull/1338
19
+ # https://github.com/standardrb/standard/pull/656
20
+ gem "steep", "< 1.9.0", require: false
18
21
  end
@@ -2,17 +2,18 @@
2
2
 
3
3
  require "openssl"
4
4
  require "optparse"
5
+ require "uri"
5
6
 
6
7
  module OpenSearch
7
8
  class CLI < OptionParser
8
- VERSION = "1.0.0"
9
+ VERSION = "1.0.1"
9
10
 
10
11
  def initialize(banner = nil, width = 32, indent = " " * 4, &block)
11
12
  @opensearch_options = {
12
13
  host: "https://localhost:9200",
13
14
  transport_options: {ssl: {}}
14
15
  }
15
- super(banner, width, indent) {}
16
+ super {}
16
17
 
17
18
  add_opensearch_options
18
19
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opensearch-ruby-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Romain Tartière
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-04-10 00:00:00.000000000 Z
11
+ date: 2025-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: opensearch-ruby