hephaestus 0.8.5 → 0.8.6

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: 44a6ef560eaf3539cd8bde7d6e0bebd03d527151d3cf1b6dc6514c8b0901f03b
4
- data.tar.gz: 59de90522a1ce2df7bc841c8d6af6ff94d3624591dcf05fc78a84146fb19abcd
3
+ metadata.gz: b84d2eb6ebcc245c0337f26093cf46d89d08380b76584475891b6a5578e4fbda
4
+ data.tar.gz: b983824e57e08c8fa71320a3605f256893cb3db63a94e2da7c2ed23876b735ae
5
5
  SHA512:
6
- metadata.gz: 56f28075c9a0722b687092e376a7de1d906612e00a919cc6bd0cb7100e92d46424c223670f9311971c376dc29ec23f25de1b1fa42e552e0623dca3f0746ef527
7
- data.tar.gz: d7cc7da306bc4c19eaa56ee8eebed915d1dadf246f678d7e1eb772973c14e2a2285896571a1b7fbc5bd5c16f7e8b1749c708829aca6f416ba07b5c755062cade
6
+ metadata.gz: 82a5dfd851446c1b4af1c8e375ffa8263fa5e375df692a07a7b22e4cf9f133d8fca0c82a0dcbe5d15d87a9a6ab2641353528b53aa6a403bdbafa1ec66073ed46
7
+ data.tar.gz: f605a57f9faa0890bf5c4e2a85643aead84806957f46065f107854d78ab783ead7bbef24b644cde3f262284e0add2496038ac636d5b045a56a0134febe52ddc0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ # [v0.8.6] - 03-12-2024
2
+ **Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.8.5...v0.8.6
1
3
  # [v0.8.5] - 03-12-2024
2
4
  ## What's Changed
3
5
  * Queue jobs based on plug name by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/74
data/config/queue.yml CHANGED
@@ -5,7 +5,7 @@ default: &default
5
5
  workers:
6
6
  - queues: [plug_<%= plug_shortname %>_high_priority*, plug_<%= plug_shortname %>_mid_priority*, plug_<%= plug_shortname %>_low_priority*]
7
7
  threads: 5
8
- - queues: "*" # default, mailers, etc
8
+ - queues: "plug_<%= plug_shortname %>_*" # default, mailers, etc
9
9
  threads: 3
10
10
 
11
11
  development:
@@ -2,7 +2,7 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module Hephaestus
5
- VERSION = "0.8.5"
5
+ VERSION = "0.8.6"
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.8.5
4
+ version: 0.8.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen Torikian