hephaestus 0.7.6.2 → 0.7.7.2

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: 85a0b7b513f676ed8687312221598970fa528e732d1fd58f6a7a5b1f3946c789
4
- data.tar.gz: 7368456a76e76d0bed34e96da971cffdced86a7b65cfc3ff22b55e14914238c1
3
+ metadata.gz: f2837748b9cb4e5f28f3d3f22078a0b62a87c618b8d2cc39c528190ce42d53a2
4
+ data.tar.gz: 9e67536a68f2c5c5d5987c655040fe12d486466894d2c744b38c1c522614a0bd
5
5
  SHA512:
6
- metadata.gz: d4741f209871a8424389aa87931ea8f5fdf78269dc7fe85189f8ea203ad98f7f912a2dd33a5bfc0c436361a29ea6eabf2c2f9bdaa812d0798c7a570bf47e3046
7
- data.tar.gz: 8e11b5461c8956edd50e034d34e871214bf28be766b76df34288fccbaf932293eaafd9257a1620aca794f016ff9a3880f6daeff81ee35647426908bfa8beb284
6
+ metadata.gz: 867e9640272aefff1e1179039d13fc33769a37650713c318194c1b860c01b40bebd8b049873e521b00e671e7fae0cc9bd8abb3f9cdc6837d07ed84ea2b5c67e9
7
+ data.tar.gz: 38ca01544d3b55df49aa63e5004af7b4a2f9e5fc9151f4231cfd36319a0d8c03e78dbf91ec9ea255f3683d1124f0020441a292cba07c8c8f87c0a0595f53ae50
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # [v0.7.7.2] - 21-11-2024
2
+ **Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.7.7...v0.7.7.2
3
+ # [v0.7.7] - 21-11-2024
4
+ **Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.7.6.2...v0.7.7
1
5
  # [v0.7.6.2] - 21-11-2024
2
6
  ## What's Changed
3
7
  * Slack log urls are unique per env by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/58
@@ -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_#{ENV["RAILS_ENV"].upcase}_LOG_URL",
11
+ label: "SLACK_#{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"]
data/config/queue.yml CHANGED
@@ -14,5 +14,8 @@ development:
14
14
  test:
15
15
  <<: *default
16
16
 
17
+ staging:
18
+ <<: *default
19
+
17
20
  production:
18
21
  <<: *default
@@ -2,7 +2,7 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module Hephaestus
5
- VERSION = "0.7.6.2"
5
+ VERSION = "0.7.7.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.2
4
+ version: 0.7.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen Torikian