diff options
author | taca <taca@pkgsrc.org> | 2018-09-10 15:22:27 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2018-09-10 15:22:27 +0000 |
commit | e11299de58fd77083d6c2abaff5c62d4016deb54 (patch) | |
tree | e1585c10531cc5b7a61715ae8f782c548720011f /databases/ruby-sequel | |
parent | ecc566e1b68724f99ca7e76b04a44fc2df11e320 (diff) | |
download | pkgsrc-e11299de58fd77083d6c2abaff5c62d4016deb54.tar.gz |
databases/ruby-sequel: update to 5.12.0
=== 5.12.0 (2018-08-31)
* Make constraint_validations extension respect Database#constraint_validations_table setting (jeremyevans)
* Make Sequel.extension load files from gems (jeremyevans)
* Map clob prepared statement argument type to OCI8::CLOB in the oracle adapter (pipistrellka) (#1534)
* Make Model.load_cache public in the static_cache plugin (AlexWayfer) (#1533)
* Enable support for NOWAIT on MariaDB 10.3+ (jeremyevans)
* Enable support for INTERSECT and EXCEPT on MariaDB 10.3+ (jeremyevans)
* Make tactical_eager_loading plugin handle automatic eager loading for associated objects created by eager_graph (jeremyevans)
* Cache eager_graph loader to speed up subsequent loads from the same dataset (jeremyevans)
* Add caller_logging database extension to log callers before queries, useful during development (jeremyevans)
* Add Database#call_procedure in the postgres adapter for calling PostgreSQL 11+ procedures (jeremyevans)
* Add eager_graph_eager plugin for chaining eager association loads after eager_graph association loads (jeremyevans)
* Support using Dataset#eager_graph in eager load callback for associations using join tables (jeremyevans)
* Make Dataset#graph handle existing selections without determinable aliases by forcing a subselect (jeremyevans)
* Freeze prepared statement arguments before returning the prepared statement (jeremyevans)
* Refactor emulated prepared statement internals to use a placeholder literalizer (jeremyevans)
=== 5.11.0 (2018-08-01)
* Fix using the jdbc/sqlserver adapter on JRuby 9.2+ (jeremyevans)
* Fix dumping schema for numeric/decimal columns with default values, broken starting in 5.9.0 (jeremyevans)
* Recognize additional check constraint violations on certain versions of SQLite (jeremyevans)
* Use cached model instances for Model.first calls without an argument or with a single integer argument in the static_cache plugin (AlexWayfer) (#1529)
* Support ON CONFLICT clause for INSERT on SQLite 3.24+ (jeremyevans)
* Support Dataset#window for WINDOW clause on MySQL 8 and SQLAnywhere (jeremyevans)
* Enable window function support on SQLAnywhere (jeremyevans)
* Support using a hash as a window function :frame option value, with support for ROWS/RANGE/GROUPS, numeric offsets, and EXCLUDE (jeremyevans)
* Allow using set_column_default with a nil value to remove the default value for a column on MySQL when the column is NOT NULL (jeremyevans)
=== 5.10.0 (2018-07-01)
* Use input type casts when using the postgres adapter with pg 0.18+ to reduce string allocations for some primitive types used as prepared statement arguments (jeremyevans)
* Assume local time if database timezone not specified when handling BC timestamps on JRuby 9.2.0.0 in the pg_extended_date_support extension (jeremyevans)
* Fix parsing of timetz types in the jdbc/postgresql adapter (jeremyevans)
* Make SQLTime.parse respect SQLTime.date and Sequel.application_timezone (jeremyevans)
* Add :top as an option in the list plugin (celsworth) (#1526)
* Fix Model#{ancestors,descendants,self_and_siblings} in the tree plugin when custom parent/children association names are used (jeremyevans) (#1525)
* Treat read-only mode error as disconnect error on mysql and mysql2 adapters, for better behavior on AWS Aurora cluster (jeremyevans)
* Don't use cached placeholder literalizers for in Dataset#{first,where_all,where_each,where_single_value} if argument is empty array or hash (jeremyevans)
* Support :tablespace option when adding tables, indexes, and materialized views on PostgreSQL (jeremyevans)
* Support :include option for indexes on PostgreSQL 11+ (jeremyevans)
* Allow the use of IN/NOT IN operators with set returning functions for Sequel::Model datasets (jeremyevans)
* Make many_to_pg_array associations in the pg_array_associations plugin work on PostgreSQL 11 (jeremyevans)
* Only load strscan library in pg_array extension if it is needed (jeremyevans)
* Don't remove related many_to_one associations from cache when setting column value to existing value for model instances that have not been persisted (jeremyevans) (#1521)
* Support ruby 2.6+ endless ranges in the pg_range extension (jeremyevans)
* Support ruby 2.6+ endless ranges in filters, using just a >= operator for them (jeremyevans)
Diffstat (limited to 'databases/ruby-sequel')
-rw-r--r-- | databases/ruby-sequel/Makefile | 4 | ||||
-rw-r--r-- | databases/ruby-sequel/PLIST | 9 | ||||
-rw-r--r-- | databases/ruby-sequel/distinfo | 10 |
3 files changed, 15 insertions, 8 deletions
diff --git a/databases/ruby-sequel/Makefile b/databases/ruby-sequel/Makefile index 599cf042bdf..14c60747c22 100644 --- a/databases/ruby-sequel/Makefile +++ b/databases/ruby-sequel/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.62 2018/06/06 04:44:51 taca Exp $ +# $NetBSD: Makefile,v 1.63 2018/09/10 15:22:27 taca Exp $ -DISTNAME= sequel-5.9.0 +DISTNAME= sequel-5.12.0 CATEGORIES= databases MAINTAINER= pkgsrc-users@NetBSD.org diff --git a/databases/ruby-sequel/PLIST b/databases/ruby-sequel/PLIST index 16885da31b9..56e39ec6ece 100644 --- a/databases/ruby-sequel/PLIST +++ b/databases/ruby-sequel/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.59 2018/06/06 04:44:51 taca Exp $ +@comment $NetBSD: PLIST,v 1.60 2018/09/10 15:22:27 taca Exp $ bin/sequel${RUBY_SUFFIX} ${GEM_HOME}/cache/${GEM_NAME}.gem ${GEM_LIBDIR}/CHANGELOG @@ -79,6 +79,9 @@ ${GEM_LIBDIR}/doc/release_notes/4.8.0.txt ${GEM_LIBDIR}/doc/release_notes/4.9.0.txt ${GEM_LIBDIR}/doc/release_notes/5.0.0.txt ${GEM_LIBDIR}/doc/release_notes/5.1.0.txt +${GEM_LIBDIR}/doc/release_notes/5.10.0.txt +${GEM_LIBDIR}/doc/release_notes/5.11.0.txt +${GEM_LIBDIR}/doc/release_notes/5.12.0.txt ${GEM_LIBDIR}/doc/release_notes/5.2.0.txt ${GEM_LIBDIR}/doc/release_notes/5.3.0.txt ${GEM_LIBDIR}/doc/release_notes/5.4.0.txt @@ -181,6 +184,7 @@ ${GEM_LIBDIR}/lib/sequel/extensions/_pretty_table.rb ${GEM_LIBDIR}/lib/sequel/extensions/arbitrary_servers.rb ${GEM_LIBDIR}/lib/sequel/extensions/auto_literal_strings.rb ${GEM_LIBDIR}/lib/sequel/extensions/blank.rb +${GEM_LIBDIR}/lib/sequel/extensions/caller_logging.rb ${GEM_LIBDIR}/lib/sequel/extensions/columns_introspection.rb ${GEM_LIBDIR}/lib/sequel/extensions/connection_expiration.rb ${GEM_LIBDIR}/lib/sequel/extensions/connection_validator.rb @@ -286,6 +290,7 @@ ${GEM_LIBDIR}/lib/sequel/plugins/defaults_setter.rb ${GEM_LIBDIR}/lib/sequel/plugins/delay_add_association.rb ${GEM_LIBDIR}/lib/sequel/plugins/dirty.rb ${GEM_LIBDIR}/lib/sequel/plugins/eager_each.rb +${GEM_LIBDIR}/lib/sequel/plugins/eager_graph_eager.rb ${GEM_LIBDIR}/lib/sequel/plugins/error_splitter.rb ${GEM_LIBDIR}/lib/sequel/plugins/finder.rb ${GEM_LIBDIR}/lib/sequel/plugins/force_encoding.rb @@ -380,6 +385,7 @@ ${GEM_LIBDIR}/spec/extensions/blank_spec.rb ${GEM_LIBDIR}/spec/extensions/boolean_readers_spec.rb ${GEM_LIBDIR}/spec/extensions/boolean_subsets_spec.rb ${GEM_LIBDIR}/spec/extensions/caching_spec.rb +${GEM_LIBDIR}/spec/extensions/caller_logging_spec.rb ${GEM_LIBDIR}/spec/extensions/class_table_inheritance_spec.rb ${GEM_LIBDIR}/spec/extensions/column_conflicts_spec.rb ${GEM_LIBDIR}/spec/extensions/column_select_spec.rb @@ -403,6 +409,7 @@ ${GEM_LIBDIR}/spec/extensions/delay_add_association_spec.rb ${GEM_LIBDIR}/spec/extensions/dirty_spec.rb ${GEM_LIBDIR}/spec/extensions/duplicate_columns_handler_spec.rb ${GEM_LIBDIR}/spec/extensions/eager_each_spec.rb +${GEM_LIBDIR}/spec/extensions/eager_graph_eager_spec.rb ${GEM_LIBDIR}/spec/extensions/empty_array_consider_nulls_spec.rb ${GEM_LIBDIR}/spec/extensions/error_splitter_spec.rb ${GEM_LIBDIR}/spec/extensions/error_sql_spec.rb diff --git a/databases/ruby-sequel/distinfo b/databases/ruby-sequel/distinfo index 4898bcc44c5..6da57766fc0 100644 --- a/databases/ruby-sequel/distinfo +++ b/databases/ruby-sequel/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.60 2018/06/06 04:44:51 taca Exp $ +$NetBSD: distinfo,v 1.61 2018/09/10 15:22:27 taca Exp $ -SHA1 (sequel-5.9.0.gem) = ab1934d112ed4a7e020c3f9e3d3b89159fda699f -RMD160 (sequel-5.9.0.gem) = 11dd865e2257b76dcefde4d80b64c5a6ae4bd2bd -SHA512 (sequel-5.9.0.gem) = 46b96b7d7c625001a17c41a96945bced511834077b955769934c1d5de09376314db0694684b745601bc2456658d3121b869c05477309def479ebd865d77c7263 -Size (sequel-5.9.0.gem) = 1196032 bytes +SHA1 (sequel-5.12.0.gem) = 170b9dc197e9e65c59c484e0e9321ef158d7a87e +RMD160 (sequel-5.12.0.gem) = 609269092029d87ce68bfdae0ee03a3410aded41 +SHA512 (sequel-5.12.0.gem) = 34a3fb9d4113edac2b196581c1e560b68ff683dc020c35ee509b5b7cd322f2d544ee73dacd7914d95c75bbd3f5d684b52f3da30d04158c0d542670c44afd68d7 +Size (sequel-5.12.0.gem) = 1218048 bytes |