skull_island 2.3.0 → 2.3.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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/skull_island/cli.rb +2 -2
- data/lib/skull_island/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 89b4839743cdb5d8a7c638534b00bc82ec2dbb524e77254218c3856ae566fa17
|
|
4
|
+
data.tar.gz: 471e753713fcb52e7151d90ea58afdbb8d62b8d4b90dcbf7d0de575ba5e91b3c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1d49ed90d48abdd81314d3bc131d6c69d629a088937a0b1680fbd5701959fd10f422687376482e7aaf530071e2baf1b0986d9faa6ecb29b037512569793427b7
|
|
7
|
+
data.tar.gz: 60f5768b190f96bf5e436a15a2d19c3b55f29f9a0ffceb6707da17f3404b34f3e3c5412477ce0cdfac4ec1a50f18f1d04d2cdf739bc670a0484e52e20745f112
|
data/Gemfile.lock
CHANGED
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.
|
|
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
|
|
data/lib/skull_island/cli.rb
CHANGED
|
@@ -30,7 +30,7 @@ module SkullIsland
|
|
|
30
30
|
|
|
31
31
|
validate_server_version
|
|
32
32
|
|
|
33
|
-
output = { 'version' => '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`.'
|
data/lib/skull_island/version.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2021-02-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: deepsort
|