Sequel 5.55.0 Released #1859
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.55.0 has been released!
New Features
An auto_restrict_eager_graph plugin has been added for automatically
disallowing the use of eager_graph with associations using blocks but
lacking graph_* options. This can prevent potentionally invalid usage,
as the restrictions added by the block are not used by eager_graph.
The sqlite adapter now supports the :setup_regexp_function
Database option. This option will define a REGEXP function in the
database that will allow regexp support in queries, such as:
DB[:table].where(column: /(some|pattern)/)
Note that this creates a Ruby Regexp object per column value tested,
so it isn't the most optimal approach.
Other Improvements
works correctly. Previously, it could fail if called enough times to
optimize using a placeholder literalizer.
Thanks,
Jeremy
Beta Was this translation helpful? Give feedback.
All reactions