hephaestus 0.7.6 → 0.7.6.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/CHANGELOG.md +6 -0
- data/config/initializers/environment.rb +1 -1
- data/lib/hephaestus/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '06919e0eb77dd697814949c6277748199dad368b99aced6a743011977dda7ce2'
|
|
4
|
+
data.tar.gz: 42119352711937a4498fe284838c71ade955fa8dc4352a8ffd8ca753a9af0116
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a652f7316f064d9348d7edd9a77f70dfb909b0933afcaa2f754962766f9afdf76ec46e790d1ae2e78e449b8667ecfc93883caf2e4af11afad49fc1c448cfd77c
|
|
7
|
+
data.tar.gz: 67f9a6c742247a646eda858416ae232c8244c304f572cbe91fd676a817b68f71e0d9fd46e322e194e7a75e44c5a5bb902ab0e0b96296ae1f4fc95ce989ac728c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
# [v0.7.6.1] - 21-11-2024
|
|
2
|
+
## What's Changed
|
|
3
|
+
* replace newlines by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/56
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
**Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.7.6...v0.7.6.1
|
|
1
7
|
# [v0.7.6] - 21-11-2024
|
|
2
8
|
## What's Changed
|
|
3
9
|
* Load secrets more efficiently by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/54
|
|
@@ -107,7 +107,7 @@ module Hephaestus
|
|
|
107
107
|
res["fields"].select { |f| f["section"] && f["section"]["label"] }.each do |field|
|
|
108
108
|
next unless field["section"]["label"] == section_label
|
|
109
109
|
|
|
110
|
-
OP_VAULT_SECRETS[field["label"]] = field["value"]
|
|
110
|
+
OP_VAULT_SECRETS[field["label"]] = field["value"].gsub("\\n", "\n")
|
|
111
111
|
end
|
|
112
112
|
end
|
|
113
113
|
end
|
data/lib/hephaestus/version.rb
CHANGED