Sequel 5.71.0 Released #2067
jeremyevans
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Sequel 5.71.0 has been released!
New Features
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.
Thanks,
Jeremy
Beta Was this translation helpful? Give feedback.
All reactions