job-iteration 1.15.0 → 1.15.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: dbb861f47602c89b8163b0f36f662c8b1f10c34528c0d06b0ce74918973e89db
4
- data.tar.gz: b00adea778b0a722dc727fdd4a9954c60442df995ee273ec82ff9d85b9fa222f
3
+ metadata.gz: c185ebebe932e13f51e39bc16d6bd18eca716a6bb8b179d400d0ab2cfff31910
4
+ data.tar.gz: 8675ef2c1d85051d2166ef65b870c4982bb2f3e9657c513b28dbadf69de1588e
5
5
  SHA512:
6
- metadata.gz: 1d085184d274fcc7315277c0e11e45093674e96a152d6bf49eff6644be23974df17f6d778e0abf0d1289ac2203af8ea59a9c7a7d9aeedd46de26b6ed16649d86
7
- data.tar.gz: 50fea852189c3f13f4b0c84f465f532e4b27804d5d71238f044fa0f6beec67c8372c83561b0690e1605eb09c47a3f07cfad24a417a3dd612a4b57bfda840696d
6
+ metadata.gz: 82b50b5701c001350571cf718bad50a7e0c882bd3e251f1c016ab0e46e4b224034a0a8a6042262254bb356c0d2b291eba69b437ee659282ca1d0a798a50fae54
7
+ data.tar.gz: 72abfc4ee81110b8d99ba8d5ccc9cdad7cd32de945ebc0a4a1022ecd8bc8307196c0889948e7f7ef1ceff8a78f5cbfd579243be59b3e6534d87d673c11149021
data/CHANGELOG.md CHANGED
@@ -1,5 +1,5 @@
1
1
  ## Main (unreleased)
2
-
2
+
3
3
  ### Breaking Changes
4
4
 
5
5
  nil
@@ -16,6 +16,12 @@ nil
16
16
 
17
17
  nil
18
18
 
19
+ ## v1.15.1 (Sep 15, 2026)
20
+
21
+ ### Bug fixes
22
+
23
+ - [734](https://github.com/Shopify/job-iteration/pull/734) - Account for anonymous block parameters in DSL compiler.
24
+
19
25
  ## v1.15.0 (Jun 4, 2026)
20
26
 
21
27
  ### Features
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JobIteration
4
- VERSION = "1.15.0"
4
+ VERSION = "1.15.1"
5
5
  end
@@ -37,7 +37,9 @@ module Tapioca
37
37
  if signature
38
38
  fixed_hash_args = signature.arg_types.select { |arg_type| T::Types::FixedHash === arg_type[1] }.to_h
39
39
  expanded_parameters = parameters.flat_map do |typed_param|
40
- if (hash_type = fixed_hash_args[typed_param.param.name.to_sym])
40
+ param_name = typed_param.param.name
41
+
42
+ if param_name && (hash_type = fixed_hash_args[param_name.to_sym])
41
43
  expand_fixed_hash(typed_param, hash_type)
42
44
  else
43
45
  typed_param
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: job-iteration
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.15.0
4
+ version: 1.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shopify
@@ -78,7 +78,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
78
78
  - !ruby/object:Gem::Version
79
79
  version: '0'
80
80
  requirements: []
81
- rubygems_version: 4.0.12
81
+ rubygems_version: 4.0.21
82
82
  specification_version: 4
83
83
  summary: Makes your background jobs interruptible and resumable.
84
84
  test_files: []