chaotic_job 0.11.0 → 0.11.1

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: dc5202af5b7c61dc01f0c44a251f28aea71741ec57646494fee7fa43750125cf
4
- data.tar.gz: f8268881839b02301924d2ade74b0360a58a0247da197ac3ce618b9e458932ab
3
+ metadata.gz: 65b239108a3f3c45022378231bb6bd49c85f29fba2441e71a0fc49b06fb91413
4
+ data.tar.gz: bce5cb7e9beefbaed434d0f4a232341d8cb427eaa0f569b765dfc9da3b692840
5
5
  SHA512:
6
- metadata.gz: f046356cc1fdcf91fcf4796dc547a490c85ab21ea3518f386cdedb57174038026337272c1ed0830a4b66dd26afaf7cfb2ebae3140a625749d45d78871b1876a0
7
- data.tar.gz: a42f8be0abb820c379c08f7e79631c4c417da9ad2c82f754f743bd587176511f44feaf2b29643c29a670d402aa31019694c87cb69cb639add4a7766b19f8fecc
6
+ metadata.gz: bb13d55b1ad97aab48e9d9a87cefb2dd76134a5fd7aae46409b17107dad1aa4070b890e4224139db43b3c53a9f8410bf8befbe758579d06a9d69fffdac049e30
7
+ data.tar.gz: 93f0394e4138e749beeb1a26bf62f3e14b7345ffcaa9d2b9343db22849568e50108dc0cf9b45d920c3ad1989f2f94b0cd8c1bd8846449ffa310238f264e7d0ea
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.11.1] - 2025-06-18
4
+
5
+ - Fix mistaken `job_id` assignment in `Simulation`
6
+
3
7
  ## [0.11.0] - 2025-06-18
4
8
 
5
9
  - Allow a Simulation to control the ActiveSupport::Notifications captured, and capture all by default [#20](https://github.com/fractaledmind/chaotic_job/pull/20)
@@ -77,7 +77,6 @@ module ChaoticJob
77
77
  serialized_template = @template.serialize
78
78
  job = ActiveJob::Base.deserialize(serialized_template)
79
79
  job.exception_executions = {}
80
- job.job_id = [job.job_id.split("-").first, glitch.event, glitch.key].join("-")
81
80
  job
82
81
  end
83
82
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ChaoticJob
4
- VERSION = "0.11.0"
4
+ VERSION = "0.11.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chaotic_job
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Margheim