summaryrefslogtreecommitdiff
path: root/databases/ruby-sequel/Makefile
diff options
context:
space:
mode:
authortaca <taca>2016-01-06 15:21:02 +0000
committertaca <taca>2016-01-06 15:21:02 +0000
commite16ef2dc049f2399da0781316f0f2377cc6915aa (patch)
treefd2a6f681dbf38cab5c6fbc586a52c8a776fa00a /databases/ruby-sequel/Makefile
parent656b7169e99564e887676ece120ce4da1c806e07 (diff)
downloadpkgsrc-e16ef2dc049f2399da0781316f0f2377cc6915aa.tar.gz
Update ruby-sequel to 4.30.0.
= New Features * Overriding the :limit and :eager_limit_strategy association options can now be done on a per-call basis when eager loading, by using an eager block callback and setting the :eager_limit or :eager_limit_strategy dataset options. Example: Album.eager(:tracks=>proc{|ds| ds.clone(:eager_limit=>5)}).all * Dataset#insert_conflict and #insert_ignore have been added on SQLite, adding support for the INSERT OR ... SQL syntax: DB[:table].insert_ignore.insert(:a=>1, :b=>2) # INSERT OR IGNORE INTO TABLE (a, b) VALUES (1, 2) DB[:table].insert_conflict(:replace).insert(:a=>1, :b=>2) # INSERT OR REPLACE INTO TABLE (a, b) VALUES (1, 2) * An identifier_columns plugin has been added, which allows Sequel::Model#save to work when column names contain double underscores. = Other Improvements * IPv6 addresses can now be used in connection URLs when using ruby 1.9.3+. * The :db_type entries in column schema hashes now include sizes for string and decimal types on DB2 and when using the jdbc adapter's generic schema parsing. * Database#row_type in the pg_row extension now handles different formats of specifying schema qualified types. So a row type registered via :schema__type can be found using Sequel.qualify(:schema, :type). * Another disconnect error is recognized in the tinytds adapter.
Diffstat (limited to 'databases/ruby-sequel/Makefile')
-rw-r--r--databases/ruby-sequel/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/ruby-sequel/Makefile b/databases/ruby-sequel/Makefile
index ba55e458627..c38787e6b36 100644
--- a/databases/ruby-sequel/Makefile
+++ b/databases/ruby-sequel/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.40 2015/12/02 14:11:58 taca Exp $
+# $NetBSD: Makefile,v 1.41 2016/01/06 15:21:02 taca Exp $
-DISTNAME= sequel-4.29.0
+DISTNAME= sequel-4.30.0
CATEGORIES= databases
MAINTAINER= pkgsrc-users@NetBSD.org