kubernetes-deploy 0.26.5 → 0.26.6

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: c11bffff21178fb845d50aff17aa56f3044cb95b235ff6db2463c94def2d2589
4
- data.tar.gz: 54ee8d3c14e3d7ca013d6e9a822aa0772dde1b4738bcce67efb3f96c490ddb08
3
+ metadata.gz: 74fee19ded75a0c929933339384dd20834bcefc04d857866bc9769926b29c701
4
+ data.tar.gz: 147ca07f028d4cf38b1f2c251dd50ffea44ef474a276a8440072d307d58c4444
5
5
  SHA512:
6
- metadata.gz: e79311a4c0c7af04db41ee384d5ed1da79afdb1f2676c02595ced432ddc6da38dc08179bc5791bbde34e6e0e8da01bd2ca102e0e4ed5af275ee0542b55a68ea8
7
- data.tar.gz: b4db7e51c731bb1bac8d4eeea6bd0df469fe17cf82ee3fc171211d56fad146f3a60321f6a38d93ecb081e27ca723205fd59e5b475dec130ba695205cd5a31dbf
6
+ metadata.gz: 99f1279eb88643343213a1566b34a6eb160e4c07906fbaac5899a1ddd3651823e27217632372ed16c48a1ec612bc41f22fcfefe7598638a0bfa2b2d4c2d9d55a
7
+ data.tar.gz: f5c106ad51bbc14813b840e653dd8b81c3bdf3e356ecfadf5314f924dc65f24e9c2105669a04aa17ba453e9c2bddf4e35e726a67e7370865f45ca2e3ed6666b3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  ## next
2
2
 
3
+ ## 0.26.6
4
+
5
+ *Bug Fixes*
6
+ - Re-enable support for YAML aliases when using YAML.safe_load [#510](https://github.com/Shopify/kubernetes-deploy/pull/510)
7
+
3
8
  ## 0.26.5
4
9
 
5
10
  *Bug Fixes*
@@ -41,7 +41,7 @@ module KubernetesDeploy
41
41
  when '.json'
42
42
  bindings = parse_json(File.read(file_path))
43
43
  when '.yaml', '.yml'
44
- bindings = YAML.safe_load(File.read(file_path))
44
+ bindings = YAML.safe_load(File.read(file_path), [], [], true, file_path)
45
45
  else
46
46
  raise ArgumentError, "Supplied file does not appear to be JSON or YAML"
47
47
  end
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module KubernetesDeploy
3
- VERSION = "0.26.5"
3
+ VERSION = "0.26.6"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kubernetes-deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.26.5
4
+ version: 0.26.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Katrina Verey
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2019-07-03 00:00:00.000000000 Z
12
+ date: 2019-07-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport