antbird 0.6.0 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d53195db71bc7c37233efa6c6cc8f5d872a3594cb7852149d3106368e856a6d1
4
- data.tar.gz: 7916414d2f84758acf002970839a0d155fcc61f25601afa35911b8e32eb59743
3
+ metadata.gz: 20734fb47741bca1ae8057ecd84981f05481fabd9d7764f4df121288b6436148
4
+ data.tar.gz: 146bd0eaa2a94ab72c79edc1cd7eef3979232d72fabb8fe4c04cdf52d5cbe6b7
5
5
  SHA512:
6
- metadata.gz: c940f6274d902d97372194485c09b5635eecf7f5e5085ce9004b9768ef5e6d7b47a6b515a961f9487f25d189de845f11f48b583d7b37a7936cc841360c311af8
7
- data.tar.gz: 2d658590a30d04d0e30d8b26a8f4fa04b38f85f90d49b5f2b18bc37d7910e2854c7671ad35242ebc2c9fe5965542eeab694559b7dfa75e3735c1e2f46c84a465
6
+ metadata.gz: 362be327c7e3f4b619b341f86bc66d33255f53274167e9309a29a38099aeeb1496788e295e0d7ddd7c2d620be264e3bd8ace8989ccc6617082b5dabb950ed34e
7
+ data.tar.gz: bf5cf9898fa2a92ce3aa0cffd3723256320f418a3973a884199e205a320d1b9850d4624ea072cc12c5477037f674c8b61828325b925e5a24b85eb9a546ed90bf
@@ -13,12 +13,15 @@ jobs:
13
13
  matrix:
14
14
  # https://github.com/opensearch-project/OpenSearch/releases
15
15
  search_versions:
16
- - 2.1.0
17
- - 2.0.1
18
- - 1.3.4
19
- - 1.2.4
20
- - 1.1.0
21
- - 1.0.0
16
+ - 2.4.1
17
+ - 2.3.0
18
+ - 2.2.1
19
+ - 2.1.0
20
+ - 2.0.1
21
+ - 1.3.6
22
+ - 1.2.4
23
+ - 1.1.0
24
+ - 1.0.0
22
25
  services:
23
26
  opensearch:
24
27
  image: opensearchproject/opensearch:${{matrix.search_versions}}
@@ -28,17 +31,17 @@ jobs:
28
31
  discovery.type: single-node
29
32
  plugins.security.disabled: true
30
33
  steps:
31
- - name: Configure sysctl limits
32
- run: |
33
- sudo swapoff -a
34
- sudo sysctl -w vm.swappiness=1
35
- sudo sysctl -w fs.file-max=262144
36
- sudo sysctl -w vm.max_map_count=262144
37
- - uses: actions/checkout@v2
38
- - uses: ruby/setup-ruby@v1
39
- with:
40
- ruby-version: 2.7
41
- bundler-cache: true
42
- - name: Wait for OpenSearch
43
- run: timeout 60 bash -c "until curl --silent --output /dev/null localhost:9200/_cat/health?h=st; do printf '.'; sleep 5; done; printf '\n'"
44
- - run: bundle exec rspec
34
+ - name: Configure sysctl limits
35
+ run: |
36
+ sudo swapoff -a
37
+ sudo sysctl -w vm.swappiness=1
38
+ sudo sysctl -w fs.file-max=262144
39
+ sudo sysctl -w vm.max_map_count=262144
40
+ - uses: actions/checkout@v2
41
+ - uses: ruby/setup-ruby@v1
42
+ with:
43
+ ruby-version: "3.2"
44
+ bundler-cache: true
45
+ - name: Wait for OpenSearch
46
+ run: timeout 60 bash -c "until curl --silent --output /dev/null localhost:9200/_cat/health?h=st; do printf '.'; sleep 5; done; printf '\n'"
47
+ - run: bundle exec rspec
@@ -14,32 +14,32 @@ jobs:
14
14
  # 1. Run script/list_versions
15
15
  # 2. Check https://www.elastic.co/jp/support/eol
16
16
  search_versions:
17
- - 7.15.2
18
- - 7.14.2
19
- - 7.13.4
20
- - 7.12.1
21
- - 7.11.2
22
- - 7.10.2
23
- - 7.9.3
24
- - 7.8.1
25
- - 6.8.18
17
+ - 7.15.2
18
+ - 7.14.2
19
+ - 7.13.4
20
+ - 7.12.1
21
+ - 7.11.2
22
+ - 7.10.2
23
+ - 7.9.3
24
+ - 7.8.1
25
+ - 6.8.18
26
26
  steps:
27
- # @see https://github.com/elastic/elastic-github-actions/tree/master/elasticsearch
28
- - name: Configure sysctl limits for Elasticsearch
29
- run: |
30
- sudo swapoff -a
31
- sudo sysctl -w vm.swappiness=1
32
- sudo sysctl -w fs.file-max=262144
33
- sudo sysctl -w vm.max_map_count=262144
34
- - name: Runs Elasticsearch
35
- uses: elastic/elastic-github-actions/elasticsearch@master
36
- with:
37
- stack-version: ${{matrix.search_versions}}
38
- - uses: actions/checkout@v2
39
- - uses: ruby/setup-ruby@v1
40
- with:
41
- ruby-version: 2.7
42
- bundler-cache: true
43
- - name: Wait for elasticsearch
44
- run: timeout 60 bash -c "until curl --silent --output /dev/null localhost:9200/_cat/health?h=st; do printf '.'; sleep 5; done; printf '\n'"
45
- - run: bundle exec rspec
27
+ # @see https://github.com/elastic/elastic-github-actions/tree/master/elasticsearch
28
+ - name: Configure sysctl limits for Elasticsearch
29
+ run: |
30
+ sudo swapoff -a
31
+ sudo sysctl -w vm.swappiness=1
32
+ sudo sysctl -w fs.file-max=262144
33
+ sudo sysctl -w vm.max_map_count=262144
34
+ - name: Runs Elasticsearch
35
+ uses: elastic/elastic-github-actions/elasticsearch@master
36
+ with:
37
+ stack-version: ${{matrix.search_versions}}
38
+ - uses: actions/checkout@v2
39
+ - uses: ruby/setup-ruby@v1
40
+ with:
41
+ ruby-version: "3.2"
42
+ bundler-cache: true
43
+ - name: Wait for elasticsearch
44
+ run: timeout 60 bash -c "until curl --silent --output /dev/null localhost:9200/_cat/health?h=st; do printf '.'; sleep 5; done; printf '\n'"
45
+ - run: bundle exec rspec
data/README.md CHANGED
@@ -43,7 +43,7 @@ client = Antbird::Client.new(
43
43
 
44
44
  # OR
45
45
 
46
- require 'faraday_middleware'
46
+ require 'faraday/net_http_persistent'
47
47
  require 'faraday_middleware/aws_sigv4'
48
48
  client = Antbird::Client.new(
49
49
  url: ENV['AMAZON_ELASTICSEARCH_SERVICE_URL'],
@@ -116,9 +116,9 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/fukaya
116
116
  ### How to support newer version of Elasticsearch/OpenSearch
117
117
 
118
118
  1. Add Elasticsearch version to `jobs.build.strategy.matrix.search_versions` on `.github/workflows/build.yml` / `.github/workflows/build-os.yml`
119
- - Only one line for `x.y.*` version
119
+ - Only one line for `x.y.*` version
120
120
  1. `script/generate_api_methods`
121
- - Set `GITHUB_TOKEN=***` env for GitHub API Limit
121
+ - Set `GITHUB_TOKEN=***` env for GitHub API Limit
122
122
 
123
123
  ## License
124
124
 
data/antbird.gemspec CHANGED
@@ -20,14 +20,13 @@ Gem::Specification.new do |spec|
20
20
  spec.bindir = "exe"
21
21
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
22
  spec.require_paths = ["lib"]
23
+ spec.required_ruby_version = ">= 2.7.0"
23
24
 
24
- spec.add_dependency "faraday", "> 0.8", "< 2.0"
25
- spec.add_dependency 'faraday_middleware', "> 0.12", "< 2.0"
25
+ spec.add_dependency "faraday", ">= 2.0.1"
26
26
 
27
- spec.add_development_dependency "net-http-persistent"
27
+ spec.add_development_dependency "faraday-net_http_persistent"
28
28
  spec.add_development_dependency "bundler", "> 1.16", "< 3.0"
29
29
  spec.add_development_dependency "rake", "~> 13.0"
30
30
  spec.add_development_dependency "rspec", "~> 3.0"
31
- spec.add_development_dependency "octokit", "~> 4.0"
32
- spec.add_development_dependency "pry-byebug", "~> 3.0"
31
+ spec.add_development_dependency "octokit"
33
32
  end
@@ -1,5 +1,4 @@
1
1
  require 'faraday'
2
- require 'faraday_middleware'
3
2
  require 'antbird/client/errors'
4
3
 
5
4
  module Antbird
@@ -1,6 +1,6 @@
1
1
  # Generated REST API methods file - DO NOT EDIT!
2
- # Date: 2022-07-28
3
- # opensearch version: 1.3.4
2
+ # Date: 2022-12-15
3
+ # opensearch version: 1.3.6
4
4
 
5
5
  module Antbird
6
6
  module RestApi