hephaestus 0.7.6.1 → 0.7.7

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: '06919e0eb77dd697814949c6277748199dad368b99aced6a743011977dda7ce2'
4
- data.tar.gz: 42119352711937a4498fe284838c71ade955fa8dc4352a8ffd8ca753a9af0116
3
+ metadata.gz: 0cd15c600e98170198cb10188a937bd474314c696c00fa3154727117d928dce0
4
+ data.tar.gz: 86827728b9de8cd7a09f2a7b973a2f9d254a9afa3264458be7431dbf46b4ea5b
5
5
  SHA512:
6
- metadata.gz: a652f7316f064d9348d7edd9a77f70dfb909b0933afcaa2f754962766f9afdf76ec46e790d1ae2e78e449b8667ecfc93883caf2e4af11afad49fc1c448cfd77c
7
- data.tar.gz: 67f9a6c742247a646eda858416ae232c8244c304f572cbe91fd676a817b68f71e0d9fd46e322e194e7a75e44c5a5bb902ab0e0b96296ae1f4fc95ce989ac728c
6
+ metadata.gz: f86899573dc2c03c7caeb9a9a2d0e22a37430a87b98c11679761aaacfa02d7341fa06c34d70a84bb00225a706eb814ebaa77c48d916000a3f3b692430742677d
7
+ data.tar.gz: 30e59b66cb8eaddebf6ff4c4f0e40c522e012433a4fadd02d52320c9c3e5c46486534d4c4dc7e8f106d3bb1e55080d081a5886b4aa90cf9bebec3b9d890d4f47
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ # [v0.7.7] - 21-11-2024
2
+ **Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.7.6.2...v0.7.7
3
+ # [v0.7.6.2] - 21-11-2024
4
+ ## What's Changed
5
+ * Slack log urls are unique per env by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/58
6
+
7
+
8
+ **Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.7.6.1...v0.7.6.2
1
9
  # [v0.7.6.1] - 21-11-2024
2
10
  ## What's Changed
3
11
  * replace newlines by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/56
@@ -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
 
data/config/puma.rb CHANGED
@@ -32,9 +32,6 @@ port ENV.fetch("PORT", 3000)
32
32
  # Allow puma to be restarted by `bin/rails restart` command.
33
33
  plugin :tmp_restart
34
34
 
35
- # Run Solid Queue's supervisor
36
- plugin :solid_queue
37
-
38
35
  # Specify the PID file. Defaults to tmp/pids/server.pid in development.
39
36
  # In other environments, only set the PID file if requested.
40
37
  pidfile ENV["PIDFILE"] if ENV["PIDFILE"]
@@ -2,7 +2,7 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module Hephaestus
5
- VERSION = "0.7.6.1"
5
+ VERSION = "0.7.7"
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.1
4
+ version: 0.7.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen Torikian