skull_island 1.1.4 → 1.2.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: 3032354dd75b35e297125680d3664d10c11c0facac26ccd2d8d6e9c764a47c0a
4
- data.tar.gz: a923f21e593e196eeb468c429edc3a5d087ff5fbb34590254123dba3b2f42730
3
+ metadata.gz: 67a8f014f5c284c8fe9a8201fa1296130abb88a08b52e8f512e935eb178bb337
4
+ data.tar.gz: ed28d0b9011b978e0939ae7ba73b8934d147f77df0ebee8f6a38464f6ed12440
5
5
  SHA512:
6
- metadata.gz: c57c073d097482f11dfbf48ac307d4528680a593bc75827df99ab448a8b1079e388a2a09ad296bc70181d87141ff6a0c0fd58774a448d3cedbddad2edc18c371
7
- data.tar.gz: 0d4afde9f3a9c62d6ab02f637d2b5d84abb06a34d1f7279ec2731eb5dd7e83e73dc9ada2f1f91631598f7a3da00d8fbe832306dd6fdcb88c361bc7a42c4948dd
6
+ metadata.gz: e63e8b8e203f408df32846e4aec20cbbcea5ac7688ef2ec06db386c9e1f7f88a13094706dcb2b12dba98639c25d9488209ff6b6ce6b9ce60af3c2237bd39f1b0
7
+ data.tar.gz: e150792100e0b64286c7dee6338bf723aa0f2e88487bc9f5846485e410e57207504c974b7e861dc366082e849bea1b845a20d00cf9250951db46da62cc05ce5d
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- skull_island (1.1.4)
4
+ skull_island (1.2.0)
5
5
  deepsort (~> 0.4)
6
6
  erubi (~> 1.8)
7
7
  json (~> 2.1)
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Skull Island
2
2
 
3
- A full-featured SDK for [Kong](https://konghq.com/kong/) 1.1.x (with support for migrating from 0.14.x). Note that this is unofficial (meaning this project is in no way officially endorsed, recommended, or related to Kong [as a company](https://konghq.com/) or an [open-source project](https://github.com/Kong/kong)). It is also in no way related to the [pet toy company](https://www.kongcompany.com/) by the same name (but hopefully that was obvious).
3
+ A full-featured SDK for [Kong](https://konghq.com/kong/) 1.1.x/1.2.x (with support for migrating from 0.14.x). Note that this is unofficial (meaning this project is in no way officially endorsed, recommended, or related to Kong [as a company](https://konghq.com/) or an [open-source project](https://github.com/Kong/kong)). It is also in no way related to the [pet toy company](https://www.kongcompany.com/) by the same name (but hopefully that was obvious).
4
4
 
5
5
  ## Installation
6
6
 
@@ -13,7 +13,7 @@ gem install skull_island
13
13
  Or add this to your Gemfile:
14
14
 
15
15
  ```ruby
16
- gem 'skull_island', '~> 1.1'
16
+ gem 'skull_island', '~> 1.2'
17
17
  ```
18
18
 
19
19
  Or add this to your .gemspec:
@@ -21,7 +21,7 @@ Or add this to your .gemspec:
21
21
  ```ruby
22
22
  Gem::Specification.new do |spec|
23
23
  # ...
24
- spec.add_runtime_dependency 'skull_island', '~> 1.1'
24
+ spec.add_runtime_dependency 'skull_island', '~> 1.2'
25
25
  # ...
26
26
  end
27
27
  ```
@@ -114,7 +114,7 @@ skull_island import --verbose --test /path/to/export.yml
114
114
 
115
115
  ### Migrating
116
116
 
117
- With Skull Island, it is possible to migrate a configuration from a 0.14.x gateway to one compatible with a 1.1.x gateway. If you have a previous export, you can just run `skull_island migrate /path/to/export.yml` and you'll receive a 1.1 compatible config on standard out. If you'd prefer, you can have that config written to a file as well (just like the export command) like so:
117
+ With Skull Island, it is possible to migrate a configuration from a 0.14.x gateway to one compatible with a 1.2.x gateway. If you have a previous export, you can just run `skull_island migrate /path/to/export.yml` and you'll receive a 1.2 compatible config on standard out. If you'd prefer, you can have that config written to a file as well (just like the export command) like so:
118
118
 
119
119
  ```
120
120
  skull_island migrate /path/to/export.yml /output/location/migrated.yml
@@ -132,7 +132,7 @@ The import/export/migrate CLI functions produce YAML with support for embedded R
132
132
 
133
133
  ```yaml
134
134
  ---
135
- version: '1.1'
135
+ version: '1.2'
136
136
  certificates: []
137
137
  consumers:
138
138
  - username: foo
@@ -310,7 +310,7 @@ service.routes.size
310
310
  # => 4
311
311
  ```
312
312
 
313
- From here, the SDK mostly wraps the attributes described in the [Kong API Docs](https://docs.konghq.com/1.1.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.
313
+ From here, the SDK mostly wraps the attributes described in the [Kong API Docs](https://docs.konghq.com/1.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.
314
314
 
315
315
  #### Certificates
316
316
 
@@ -28,7 +28,7 @@ module SkullIsland
28
28
 
29
29
  validate_server_version
30
30
 
31
- output = { 'version' => '1.1' }
31
+ output = { 'version' => '1.2' }
32
32
 
33
33
  [
34
34
  Resources::Certificate,
@@ -130,7 +130,7 @@ module SkullIsland
130
130
  end
131
131
 
132
132
  def validate_config_version(version)
133
- if version && version == '1.1'
133
+ if version && ['1.1', '1.2'].include?(version)
134
134
  validate_server_version
135
135
  elsif version && ['0.14', '1.0'].include?(version)
136
136
  STDERR.puts '[CRITICAL] Config version is too old. Try `migrate` instead of `import`.'
@@ -151,7 +151,8 @@ module SkullIsland
151
151
  end
152
152
 
153
153
  def validate_server_version
154
- if SkullIsland::APIClient.about_service['version'].start_with? '1.1'
154
+ server_version = SkullIsland::APIClient.about_service['version']
155
+ if server_version.match?(/^1.[12]/)
155
156
  true
156
157
  else
157
158
  STDERR.puts '[CRITICAL] Server version mismatch!'
@@ -3,7 +3,7 @@
3
3
  module SkullIsland
4
4
  VERSION = [
5
5
  1, # Major
6
- 1, # Minor
7
- 4 # Patch
6
+ 2, # Minor
7
+ 0 # 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: 1.1.4
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Gnagy
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-06-25 00:00:00.000000000 Z
11
+ date: 2019-06-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: deepsort