summaryrefslogtreecommitdiff
path: root/databases/ruby-sequel
diff options
context:
space:
mode:
authortaca <taca@pkgsrc.org>2012-06-02 00:35:14 +0000
committertaca <taca@pkgsrc.org>2012-06-02 00:35:14 +0000
commit5669253aeed5eae47c820b21914f73079eb2583c (patch)
tree1fb510c21a0fad0a13e0e63150ad4c55c4f7d7b4 /databases/ruby-sequel
parent0677ac6b47e911ce934d9d19c2e2271a554e8afb (diff)
downloadpkgsrc-5669253aeed5eae47c820b21914f73079eb2583c.tar.gz
Update ruby-sequel to 3.36.0.
=== 3.36.0 (2012-06-01) * Use Bignum generic type when dumping unsigned integer types that could potentially overflow 32-bit signed integer values (stu314) * Support :transform option in the nested_attributes plugin, for automatically preprocessing input hashes (chanks) * Support :unmatched_pk option in the nested_attributes plugin, can be set to :create for associated objects with natural keys (chanks) * Support composite primary keys in the nested_attributes plugin (chanks) * Allow Model#from_json in the json_serializer plugin to use set_fields if a :fields option is given (jeremyevans) * Support :using option to set_column_type on PostgreSQL, to force a specific conversion from the old value to the new value (jeremyevans) * Drop indexes in the reverse order that they were added in the schema dumper (jeremyevans) * Add :index_names option to schema dumper method, can be set to false or :namespace (stu314, jeremyevans) * Add Database#global_index_namespace? for checking if index namespace is global or per table (jeremyevans) * Fix typecasting of time columns on jdbc/postgres, before could be off by a millisecond (jeremyevans) * Add document explaining Sequel's object model (jeremyevans) * Attempt to detect more disconnect errors in the mysql2 adapter (jeremyevans) * Add is_current? and check_current to the migrators, for checking/raising if there are unapplied migrations (pvh, jeremyevans) (#487) * Add a jdbc subadapter for the Progress database (Michael Gliwinski, jeremyevans) * Add pg_inet extension, for working with PostgreSQL inet and cidr types (jeremyevans) * Fix bug in model column setters when passing an object that raises an exception for ==('') (jeremyevans) * Add eager_each plugin, which makes each on an eagerly loaded dataset do eager loading (jeremyevans) * Fix bugs when parsing foreign keys for tables with explicit schema on PostgreSQL (jeremyevans) * Remove Database#case_sensitive_like on SQLite (jeremyevans) * Remove Database#single_value in the native sqlite adapter (jeremyevans) * Make Dataset#get work with nil and false arguments (jeremyevans) * Make json_serializer plugin respect :root=>:collection and :root=>:instance options (jeremyevans) * Support savepoints in prepared transactions on MySQL 5.5.23+ (jeremyevans) * Add pg_json extension, for working with PostgreSQL 9.2's new json type (jeremyevans) * In the optimistic locking plugin, make refresh and save after a failed save work correctly (jeremyevans) * Support partial indexes on Microsoft SQL Server 2008 (jeremyevans) * Make Database#call pass blocks (jeremyevans) * Support :each when preparing statements, useful for iterating over large datasets (jeremyevans) * Support :if_exists and :cascade options when dropping indexes on PostgreSQL (jeremyevans) * Support :concurrently option when adding and dropping indexes on PostgreSQL (jeremyevans) * Make Database#transaction on PostgreSQL recognize :synchronous, :read_only, and :deferrable options (jeremyevans) * Support :sql_mode option when connecting to MySQL (jeremyevans) * Apply :timeout MySQL connection setting on do, jdbc, and swift adapters (jeremyevans) * Don't set Sequel::Model.db automatically when creating an anonymous class with an associated database object (jeremyevans) * Add :connection_handling=>:queue option to the threaded connection pools, may reduce chance of stale connections (jeremyevans) (#481) * Handle JRuby 1.7 exception handling changes when connecting in the jdbc adapter (jeremyevans) (#477) * Make *_to_one association setters be noops if you pass a value that is the same as the cached value (jeremyevans) * Make Model#refresh return self when using dirty plugin (jeremyevans)
Diffstat (limited to 'databases/ruby-sequel')
-rw-r--r--databases/ruby-sequel/Makefile4
-rw-r--r--databases/ruby-sequel/PLIST11
-rw-r--r--databases/ruby-sequel/distinfo8
3 files changed, 16 insertions, 7 deletions
diff --git a/databases/ruby-sequel/Makefile b/databases/ruby-sequel/Makefile
index 89c3a1ca1a9..8ccebeb5e19 100644
--- a/databases/ruby-sequel/Makefile
+++ b/databases/ruby-sequel/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.17 2012/06/01 14:23:41 taca Exp $
+# $NetBSD: Makefile,v 1.18 2012/06/02 00:35:14 taca Exp $
-DISTNAME= sequel-3.35.0
+DISTNAME= sequel-3.36.0
CATEGORIES= databases
MAINTAINER= pkgsrc-users@NetBSD.org
diff --git a/databases/ruby-sequel/PLIST b/databases/ruby-sequel/PLIST
index 1e3ba5f7d9c..ac04f5d4ca1 100644
--- a/databases/ruby-sequel/PLIST
+++ b/databases/ruby-sequel/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.15 2012/06/01 14:23:41 taca Exp $
+@comment $NetBSD: PLIST,v 1.16 2012/06/02 00:35:15 taca Exp $
bin/sequel
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/CHANGELOG
@@ -15,6 +15,7 @@ ${GEM_LIBDIR}/doc/dataset_filtering.rdoc
${GEM_LIBDIR}/doc/mass_assignment.rdoc
${GEM_LIBDIR}/doc/migration.rdoc
${GEM_LIBDIR}/doc/model_hooks.rdoc
+${GEM_LIBDIR}/doc/object_model.rdoc
${GEM_LIBDIR}/doc/opening_databases.rdoc
${GEM_LIBDIR}/doc/prepared_statements.rdoc
${GEM_LIBDIR}/doc/querying.rdoc
@@ -67,6 +68,7 @@ ${GEM_LIBDIR}/doc/release_notes/3.32.0.txt
${GEM_LIBDIR}/doc/release_notes/3.33.0.txt
${GEM_LIBDIR}/doc/release_notes/3.34.0.txt
${GEM_LIBDIR}/doc/release_notes/3.35.0.txt
+${GEM_LIBDIR}/doc/release_notes/3.36.0.txt
${GEM_LIBDIR}/doc/release_notes/3.4.0.txt
${GEM_LIBDIR}/doc/release_notes/3.5.0.txt
${GEM_LIBDIR}/doc/release_notes/3.6.0.txt
@@ -90,6 +92,7 @@ ${GEM_LIBDIR}/lib/sequel/adapters/dbi.rb
${GEM_LIBDIR}/lib/sequel/adapters/do.rb
${GEM_LIBDIR}/lib/sequel/adapters/do/mysql.rb
${GEM_LIBDIR}/lib/sequel/adapters/do/postgres.rb
+${GEM_LIBDIR}/lib/sequel/adapters/jdbc/progress.rb
${GEM_LIBDIR}/lib/sequel/adapters/do/sqlite.rb
${GEM_LIBDIR}/lib/sequel/adapters/firebird.rb
${GEM_LIBDIR}/lib/sequel/adapters/ibmdb.rb
@@ -179,6 +182,8 @@ ${GEM_LIBDIR}/lib/sequel/extensions/pg_array_ops.rb
${GEM_LIBDIR}/lib/sequel/extensions/pg_auto_parameterize.rb
${GEM_LIBDIR}/lib/sequel/extensions/pg_hstore.rb
${GEM_LIBDIR}/lib/sequel/extensions/pg_hstore_ops.rb
+${GEM_LIBDIR}/lib/sequel/extensions/pg_inet.rb
+${GEM_LIBDIR}/lib/sequel/extensions/pg_json.rb
${GEM_LIBDIR}/lib/sequel/extensions/pg_statement_cache.rb
${GEM_LIBDIR}/lib/sequel/extensions/pretty_table.rb
${GEM_LIBDIR}/lib/sequel/extensions/query.rb
@@ -213,6 +218,7 @@ ${GEM_LIBDIR}/lib/sequel/plugins/composition.rb
${GEM_LIBDIR}/lib/sequel/plugins/dataset_associations.rb
${GEM_LIBDIR}/lib/sequel/plugins/defaults_setter.rb
${GEM_LIBDIR}/lib/sequel/plugins/dirty.rb
+${GEM_LIBDIR}/lib/sequel/plugins/eager_each.rb
${GEM_LIBDIR}/lib/sequel/plugins/force_encoding.rb
${GEM_LIBDIR}/lib/sequel/plugins/hook_class_methods.rb
${GEM_LIBDIR}/lib/sequel/plugins/identity_map.rb
@@ -288,6 +294,7 @@ ${GEM_LIBDIR}/spec/extensions/core_extensions_spec.rb
${GEM_LIBDIR}/spec/extensions/dataset_associations_spec.rb
${GEM_LIBDIR}/spec/extensions/defaults_setter_spec.rb
${GEM_LIBDIR}/spec/extensions/dirty_spec.rb
+${GEM_LIBDIR}/spec/extensions/eager_each_spec.rb
${GEM_LIBDIR}/spec/extensions/force_encoding_spec.rb
${GEM_LIBDIR}/spec/extensions/hook_class_methods_spec.rb
${GEM_LIBDIR}/spec/extensions/identity_map_spec.rb
@@ -311,6 +318,8 @@ ${GEM_LIBDIR}/spec/extensions/pg_array_spec.rb
${GEM_LIBDIR}/spec/extensions/pg_auto_parameterize_spec.rb
${GEM_LIBDIR}/spec/extensions/pg_hstore_ops_spec.rb
${GEM_LIBDIR}/spec/extensions/pg_hstore_spec.rb
+${GEM_LIBDIR}/spec/extensions/pg_inet_spec.rb
+${GEM_LIBDIR}/spec/extensions/pg_json_spec.rb
${GEM_LIBDIR}/spec/extensions/pg_statement_cache_spec.rb
${GEM_LIBDIR}/spec/extensions/prepared_statements_associations_spec.rb
${GEM_LIBDIR}/spec/extensions/prepared_statements_safe_spec.rb
diff --git a/databases/ruby-sequel/distinfo b/databases/ruby-sequel/distinfo
index 7dc6ed0e520..4f5fb405b42 100644
--- a/databases/ruby-sequel/distinfo
+++ b/databases/ruby-sequel/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.15 2012/06/01 14:23:41 taca Exp $
+$NetBSD: distinfo,v 1.16 2012/06/02 00:35:15 taca Exp $
-SHA1 (sequel-3.35.0.gem) = 1d633175c0c66fdb991fa58997d92d3c9ea0dd04
-RMD160 (sequel-3.35.0.gem) = a8ff7dd4aab74c4496d73b91401805e6e69333a4
-Size (sequel-3.35.0.gem) = 929280 bytes
+SHA1 (sequel-3.36.0.gem) = 8e4b0b1dccc3d0f6984a5f3fc1cc93fb47d7ffb8
+RMD160 (sequel-3.36.0.gem) = e69e34e9560bb27ffc64f725c49e94867779044c
+Size (sequel-3.36.0.gem) = 953344 bytes