Skip to content

Commit

Permalink
Bump version to 5.71.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyevans committed Aug 1, 2023
1 parent a253899 commit b572833
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
=== master
=== 5.71.0 (2023-08-01)

* Support ILIKE ANY on PostgreSQL by not forcing the use of ESCAPE for ILIKE (gilesbowkett) (#2066)

Expand Down
21 changes: 21 additions & 0 deletions doc/release_notes/5.71.0.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
= New Features

* A pg_xmin_optimistic_locking plugin has been added. This plugin
uses PostgreSQL's xmin system column to implement optimistic
locking. The xmin system column is automatically updated whenever
the database row is updated. You can load this plugin into a
base model and have all models that subclass from it use optimistic
locking, without needing any user-defined lock columns.

= Other Improvements

* set_column_allow_null is now a reversible migration method inside
alter_table blocks.

* The use of ILIKE no longer forces the ESCAPE clause on PostgreSQL,
which allows the use of ILIKE ANY and other constructions. There
is no need to use the ESCAPE clause with ILIKE, because the value
Sequel uses is PostgreSQL's default.

* The xid PostgreSQL type is now recognized as an integer type in the
jdbc/postgresql adapter.
2 changes: 1 addition & 1 deletion lib/sequel/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module Sequel

# The minor version of Sequel. Bumped for every non-patch level
# release, generally around once a month.
MINOR = 70
MINOR = 71

# The tiny version of Sequel. Usually 0, only bumped for bugfix
# releases that fix regressions from previous versions.
Expand Down

0 comments on commit b572833

Please sign in to comment.