krane 2.3.1 → 2.3.2
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/.github/CODEOWNERS +1 -1
- data/CHANGELOG.md +4 -0
- data/lib/krane/renderer.rb +1 -1
- data/lib/krane/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: fbfdb40df63a2759718235ad79d484ba0b142e60bbf7ab5d660c0b41be2a15c3
|
|
4
|
+
data.tar.gz: 60530f0c9a7e5952ab441779da15f8d50b0018b181059a4294449bf55fabecfb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e26defe201edb72da12aeea056a31652da6f1dd4bf8be78af4ed5d3d78ada303a56093179432a2a390a13a9beadf8d09166bca7b8162f710c5c9058bed78a7d1
|
|
7
|
+
data.tar.gz: abc57bf64f5f0f9ba94cb03d5c8464f86ed426b66c3dd20bfdca56afb9a7d68a3b158b49513199856a65f1da27b7302760701bce734b0285920bcc365e0e99e2
|
data/.github/CODEOWNERS
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
* @Shopify/
|
|
1
|
+
* @Shopify/app-lifecycle
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
## next
|
|
2
2
|
|
|
3
|
+
## 2.3.2
|
|
4
|
+
|
|
5
|
+
- Fix compatibility with Psych 4.0 [#843](https://github.com/Shopify/krane/pull/843)
|
|
6
|
+
|
|
3
7
|
## 2.3.1
|
|
4
8
|
|
|
5
9
|
- Fix a bug in RestartTask where a NoMethodError is thrown if any of the target resources do not have annotations [#841](https://github.com/Shopify/krane/pull/841)
|
data/lib/krane/renderer.rb
CHANGED
|
@@ -58,7 +58,7 @@ module Krane
|
|
|
58
58
|
template = File.read(partial_path)
|
|
59
59
|
expanded_template = ERB.new(template, trim_mode: '-').result(erb_binding)
|
|
60
60
|
|
|
61
|
-
docs = Psych.parse_stream(expanded_template, partial_path)
|
|
61
|
+
docs = Psych.parse_stream(expanded_template, filename: partial_path)
|
|
62
62
|
# If the partial contains multiple documents or has an explicit document header,
|
|
63
63
|
# we know it cannot validly be indented in the parent, so return it immediately.
|
|
64
64
|
return expanded_template unless docs.children.one? && docs.children.first.implicit
|
data/lib/krane/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: krane
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.
|
|
4
|
+
version: 2.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Katrina Verey
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: exe
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2021-11-
|
|
13
|
+
date: 2021-11-18 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: activesupport
|