skull_island 2.3.0 → 2.3.1

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: 57af8762038a7aaa846d5c128fe4a8960171e15ee568f6f6e7bbfad4ca429bfa
4
- data.tar.gz: 4de11e341de6bd39a38834daa63c3c2db1b98b4c287edbbdf97bbb450429e7db
3
+ metadata.gz: 89b4839743cdb5d8a7c638534b00bc82ec2dbb524e77254218c3856ae566fa17
4
+ data.tar.gz: 471e753713fcb52e7151d90ea58afdbb8d62b8d4b90dcbf7d0de575ba5e91b3c
5
5
  SHA512:
6
- metadata.gz: 01a602058e36398d2b54e108a160e0d4f4ef5b0659605416c76b0014c92a79abf3e4ec430b4b5f2035fe236ca36d9293776f386d5d18c3cbf41f3cdbf98f39cb
7
- data.tar.gz: 7fc4b55ab20a8fb38689fee1b79941b43d0de5887452e2f0b180daf3f71d8635bd89e24b9e9030d99b0936fc31d77312b987b03af536eaa40b40ea7627f1b072
6
+ metadata.gz: 1d49ed90d48abdd81314d3bc131d6c69d629a088937a0b1680fbd5701959fd10f422687376482e7aaf530071e2baf1b0986d9faa6ecb29b037512569793427b7
7
+ data.tar.gz: 60f5768b190f96bf5e436a15a2d19c3b55f29f9a0ffceb6707da17f3404b34f3e3c5412477ce0cdfac4ec1a50f18f1d04d2cdf739bc670a0484e52e20745f112
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- skull_island (2.3.0)
4
+ skull_island (2.3.1)
5
5
  deepsort (~> 0.4)
6
6
  erubi (~> 1.8)
7
7
  linguistics (~> 2.1)
data/README.md CHANGED
@@ -400,7 +400,7 @@ service.routes.size
400
400
  # => 4
401
401
  ```
402
402
 
403
- From here, the SDK mostly wraps the attributes described in the [Kong API Docs](https://docs.konghq.com/2.2.x/admin-api/). For simplicity, I'll go over the resource types and attributes this SDK supports manipulating. Rely on the API documentation to determine which attributes are required and under which conditions.
403
+ From here, the SDK mostly wraps the attributes described in the [Kong API Docs](https://docs.konghq.com/2.3.x/admin-api/). For simplicity, I'll go over the resource types and attributes this SDK supports manipulating. Rely on the API documentation to determine which attributes are required and under which conditions.
404
404
 
405
405
  #### CA Certificates
406
406
 
@@ -30,7 +30,7 @@ module SkullIsland
30
30
 
31
31
  validate_server_version
32
32
 
33
- output = { 'version' => '2.2' }
33
+ output = { 'version' => '2.3' }
34
34
  output['project'] = options['project'] if options['project']
35
35
 
36
36
  [
@@ -191,7 +191,7 @@ module SkullIsland
191
191
  end
192
192
 
193
193
  def validate_config_version(version)
194
- if version && ['1.1', '1.2', '1.4', '1.5', '2.0', '2.1', '2.2'].include?(version)
194
+ if version && ['1.1', '1.2', '1.4', '1.5', '2.0', '2.1', '2.2', '2.3'].include?(version)
195
195
  validate_server_version
196
196
  elsif version && ['0.14', '1.0'].include?(version)
197
197
  warn '[CRITICAL] Config version is too old. Try `migrate` instead of `import`.'
@@ -4,6 +4,6 @@ module SkullIsland
4
4
  VERSION = [
5
5
  2, # Major
6
6
  3, # Minor
7
- 0 # Patch
7
+ 1 # Patch
8
8
  ].join('.')
9
9
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: skull_island
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 2.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Gnagy
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-02-17 00:00:00.000000000 Z
11
+ date: 2021-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: deepsort