Skip to content

Commit

Permalink
Version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brendon committed Nov 6, 2024
1 parent 0d7c788 commit 580ea8e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## [Unreleased]

## [0.4.0] - 2024-10-12

- BREAKING CHANGE: Advisory Lock has been removed. If you explicitly define `advisory_lock: false` in your `positioned` call, you'll need to remove this.
- CAUTION: The Advisory Lock replacement is row locking. Where `belongs_to` associations exist, we lock the associated record(s), and that limits the locking scope down to the record's current scope, and potentially the scope it belonged to before a change in scope. If there are no `belongs_to` associations then the records that belong to the current (and potentially new) scope are locked, or all the records in the table are locked if there is no scope. Please report any deadlock issues.

## [0.3.0] - 2024-10-12

- POSSIBLY BREAKING: Clear all position columns on a duplicate created with `dup`.
Expand Down
2 changes: 1 addition & 1 deletion lib/positioning/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Positioning
VERSION = "0.3.0"
VERSION = "0.4.0"
end

0 comments on commit 580ea8e

Please sign in to comment.