good_job 3.29.1 → 3.29.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: f777da5778d92df1d68922053e5d86cd66a8f80b219fe4cffb2471e663001a14
4
- data.tar.gz: 33152c0856ffd2c9a8fa1f1ea8d3f9ed27852f1a5be551dfd91dc74c8c565a07
3
+ metadata.gz: '035847331e792e45f5ecc5c94f6038bd9955e022fc3dcdf27263be0bf1e3c02d'
4
+ data.tar.gz: 7068ca56d21b29509841b37386e74ef9b0d3f761e0ce454b3d46522a685ffaa4
5
5
  SHA512:
6
- metadata.gz: 7ba5a1b6b2ffbd6104a83da07e8bb89cc3969b0fc0859bb6e1f82bdface0f505bee1140c7f00c3aa9322677969c202ed8af339f1960de45c433f47e080bb05c7
7
- data.tar.gz: 5d596a9d8bee5e882cf69ae796a6593068d75850b34bd40626d9d55f4fefe9e47633b9580100ace46c805e1c04287ccd455e8a7dd8b1b9ea490f100400f5c1eb
6
+ metadata.gz: 0a3bd5801bcc975e25ac1586b7b392ec3d4e6113338ac18d89c29296a4e28c746c54f9e7c4e4e1343a0ba2f033e5debffb337b4bb54e576f05812d9d7751315d
7
+ data.tar.gz: 8b004560dc95421b474e5ec129b5a0dc2ef2ec20d7ee419d141d591bf29998eb5aaca585cb8a94b146ed9ecd691819062d2faffb66a247b0287488e3e0a62943
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [v3.29.2](https://github.com/bensheldon/good_job/tree/v3.29.2) (2024-05-23)
4
+
5
+ [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.29.1...v3.29.2)
6
+
7
+ **Fixed bugs:**
8
+
9
+ - Fix label modifications on job instance polluting labels on job class [\#1355](https://github.com/bensheldon/good_job/pull/1355) ([bensheldon](https://github.com/bensheldon))
10
+
11
+ **Closed issues:**
12
+
13
+ - `#good_job_labels` retains values across job instances [\#1354](https://github.com/bensheldon/good_job/issues/1354)
14
+
3
15
  ## [v3.29.1](https://github.com/bensheldon/good_job/tree/v3.29.1) (2024-05-23)
4
16
 
5
17
  [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.29.0...v3.29.1)
@@ -8,7 +8,7 @@ module GoodJob
8
8
  module Prepends
9
9
  def initialize(*arguments)
10
10
  super
11
- self.good_job_labels = Array(self.class.good_job_labels)
11
+ self.good_job_labels = Array(self.class.good_job_labels.dup)
12
12
  end
13
13
 
14
14
  def enqueue(options = {})
@@ -2,7 +2,7 @@
2
2
 
3
3
  module GoodJob
4
4
  # GoodJob gem version.
5
- VERSION = '3.29.1'
5
+ VERSION = '3.29.2'
6
6
 
7
7
  # GoodJob version as Gem::Version object
8
8
  GEM_VERSION = Gem::Version.new(VERSION)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: good_job
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.29.1
4
+ version: 3.29.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Sheldon