hephaestus 0.7.6 → 0.7.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cc016523474a74823d81c878a1a279cb3cfe00daf689d38a02a3de54b8299964
4
- data.tar.gz: 59a8eb2d832eab4c0c37b823bfb1742324a09784f4b8ffbb3f94ad7db1c494de
3
+ metadata.gz: 85a0b7b513f676ed8687312221598970fa528e732d1fd58f6a7a5b1f3946c789
4
+ data.tar.gz: 7368456a76e76d0bed34e96da971cffdced86a7b65cfc3ff22b55e14914238c1
5
5
  SHA512:
6
- metadata.gz: c3f0c865085e36bf0dc53a0a16e40427df51c7e36d057a40c06d5c0438ae08549898343b298fdf0a05b4bc27035ec40d52a3958f74b523f0c896eaaa797ff9b2
7
- data.tar.gz: 582c6d71cff598db2c910198d2095f33f60a3a348b4271bd738cd2f3a2c51414fff8a13c59304f14f7877439569a7bfd75a42b84392d1bdd8364bb3d6650bfec
6
+ metadata.gz: d4741f209871a8424389aa87931ea8f5fdf78269dc7fe85189f8ea203ad98f7f912a2dd33a5bfc0c436361a29ea6eabf2c2f9bdaa812d0798c7a570bf47e3046
7
+ data.tar.gz: 8e11b5461c8956edd50e034d34e871214bf28be766b76df34288fccbaf932293eaafd9257a1620aca794f016ff9a3880f6daeff81ee35647426908bfa8beb284
data/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # [v0.7.6.2] - 21-11-2024
2
+ ## What's Changed
3
+ * Slack log urls are unique per env by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/58
4
+
5
+
6
+ **Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.7.6.1...v0.7.6.2
7
+ # [v0.7.6.1] - 21-11-2024
8
+ ## What's Changed
9
+ * replace newlines by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/56
10
+
11
+
12
+ **Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.7.6...v0.7.6.1
1
13
  # [v0.7.6] - 21-11-2024
2
14
  ## What's Changed
3
15
  * 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
@@ -8,7 +8,7 @@ SlackWebhookLogger.setup do |config|
8
8
  #
9
9
  # The URL where messages will be sent.
10
10
  config.webhook_url = fetch_infra_secret(
11
- label: "SLACK_LOG_URL",
11
+ label: "SLACK_#{ENV["RAILS_ENV"].upcase}_LOG_URL",
12
12
  default: "https://slack.com/the_log_room",
13
13
  )
14
14
 
@@ -2,7 +2,7 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module Hephaestus
5
- VERSION = "0.7.6"
5
+ VERSION = "0.7.6.2"
6
6
  RAILS_VERSION = ">= 8.0"
7
7
  RUBY_VERSION = File
8
8
  .read("#{File.dirname(__FILE__)}/../../.ruby-version")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hephaestus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.6
4
+ version: 0.7.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen Torikian