Sequel 5.67.0 Released #2014
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.67.0 has been released!
New Features
A set_literalizer extension has been added, for treating Set
instances in datasets similar to Array instances:
Improvements
Sequel now avoids the use of singleton classes for datasets on Ruby
2.4+, instead creating a regular subclass whenever a dataset would
be extended via #extension or #with_extend. This significantly
improves performance, up to 20-40% for common dataset usage,
because it avoids creating new singleton classes for every dataset
clone, and it allows for cached method lookup.
Database#tables and #views now support a :qualify option on Microsoft
SQL Server to returned qualified identifiers.
The schema_dumper extension can now dump tables in non-default schemas
when using Microsoft SQL Server.
The schema_dumper extension now correctly dumps string column sizes
when using Microsoft SQL Server.
Backwards Compatibility
is not a module now issues a deprecation warning. Support for this
will be removed in Sequel 6.
Thanks,
Jeremy
Beta Was this translation helpful? Give feedback.
All reactions