job-iteration 1.1.11 → 1.1.12
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 +4 -4
- data/CHANGELOG.md +6 -0
- data/Gemfile +1 -0
- data/lib/job-iteration/iteration.rb +2 -1
- data/lib/job-iteration/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2109f33c06a85e1b336876ea4c0aafe2dc0ea7f17fbdda0d4bba06177f940113
|
|
4
|
+
data.tar.gz: 3ce3b8017f1dfaac8bb3c83f8b846c4068ed09a0968f937bb1bd3e31d9d1341a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d22611524765adb75a6d6cd457d2c1e0e7169621b3c9a2fd4f8fbcc4d68f7a79cf89764852a61f11bdd586ac60c1bb9d6c76f34426c5a1eb25299bd8b6ec77b7
|
|
7
|
+
data.tar.gz: 952569f76f1d9b739d4219bfb3df0878ef1ec1c3784bba985f2246a956a581c51723e113ca10ac9eec3f4c2ae61c6acaabd4d461aa321c1af989d1921293ef34
|
data/CHANGELOG.md
CHANGED
|
@@ -4,12 +4,18 @@
|
|
|
4
4
|
|
|
5
5
|
#### Bug fix
|
|
6
6
|
|
|
7
|
+
## v1.1.12 (April 19, 2021)
|
|
8
|
+
|
|
9
|
+
#### Bug fix
|
|
10
|
+
|
|
11
|
+
- [77](https://github.com/Shopify/job-iteration/pull/77) - Defer enforce cursor be serializable until 2.0.0
|
|
7
12
|
|
|
8
13
|
## v1.1.11 (April 19, 2021)
|
|
9
14
|
|
|
10
15
|
#### Bug fix
|
|
11
16
|
|
|
12
17
|
- [73](https://github.com/Shopify/job-iteration/pull/73) - Enforce cursor be serializable
|
|
18
|
+
_This is reverted in 1.1.12 as it breaks behaviour in some apps._
|
|
13
19
|
|
|
14
20
|
## v1.1.10 (March 30, 2021)
|
|
15
21
|
|
data/Gemfile
CHANGED
|
@@ -142,7 +142,8 @@ module JobIteration
|
|
|
142
142
|
arguments = arguments.dup.freeze
|
|
143
143
|
found_record = false
|
|
144
144
|
enumerator.each do |object_from_enumerator, index|
|
|
145
|
-
|
|
145
|
+
# Deferred until 2.0.0
|
|
146
|
+
# assert_valid_cursor!(index)
|
|
146
147
|
|
|
147
148
|
record_unit_of_work do
|
|
148
149
|
found_record = true
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: job-iteration
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shopify
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-04-
|
|
11
|
+
date: 2021-04-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activerecord
|