Skip to content

Commit

Permalink
Bump version & update CHANGELOG.md
Browse files Browse the repository at this point in the history
Only relevant change is enforcing serializable cursor. Non-serializable
cursors were always an "error", and their behaviour in the host job was
"undefined", depending on the object and how the host job handled it.
This change just makes the error loud and immediate, instead of silent
and delayed until resumption following interruption; hence the patch
version increment.
  • Loading branch information
azuredeviil053 committed Apr 19, 2021
1 parent 630fbe7 commit c4913a4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,20 @@

#### Bug fix


## v1.1.11 (April 19, 2021)

#### Bug fix

- [73](https://github.com/Shopify/job-iteration/pull/73) - Enforce cursor be serializable

## v1.1.10 (March 30, 2021)

- [69](https://github.com/Shopify/job-iteration/pull/69) Fix memory leak in ActiveRecordCursor
- [69](https://github.com/Shopify/job-iteration/pull/69) - Fix memory leak in ActiveRecordCursor

## v1.1.9 (January 6, 2021)

- [61](https://github.com/Shopify/job-iteration/pull/61) Call `super` in `method_added`
- [61](https://github.com/Shopify/job-iteration/pull/61) - Call `super` in `method_added`

## v1.1.8 (June 8, 2020)

Expand Down
2 changes: 1 addition & 1 deletion lib/job-iteration/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module JobIteration
VERSION = "1.1.10"
VERSION = "1.1.11"
end

0 comments on commit c4913a4

Please sign in to comment.