From 077daa42fa7880a43072aacf5f808ba2f9e65d18 Mon Sep 17 00:00:00 2001 From: taca Date: Wed, 23 Mar 2011 15:49:05 +0000 Subject: Update ruby-sequel package to 3.21.0. === 3.21.0 (2011-03-01) * Make symbol splitting (:table__column___alias) work correctly for identifiers that are not in the \w character class (authorNari) * Enable row locks in Oracle (authorNari) * Prefer cover? over include? for validates_includes/validates_inclusion_of (jeremyevans) * Make using NULL/NOT NULL, DEFAULT, and UNIQUE column options work correctly on H2 and possibly Oracle (jeremyevans) * Make bin/sequel accept file arguments and work correctly when $stdin is not a tty (jeremyevans) * Add support for -I and -r options to bin/sequel (jeremyevans) * Sequel::Model.plugin can now be overridden just like the other Model methods (jeremyevans) * Add tinytds adapter, the best way to connect to MSSQL from a C based ruby running on *nix (jeremyevans) * Recognize bigint unsigned as a Bignum type in the schema dumper (gamespy-tech) (#327) * Add Dataset#calc_found_rows for MySQL datasets (macks) * Add association_autoreloading plugin for clearing association cache when foreign key value changes (jfirebaugh, jeremyevans) * Fix join_table on MySQL ignoring the block (jfirebaugh) * Transfer CTE WITH clauses in subselect to main query when joining on MSSQL (jfirebaugh) * Make specs support both RSpec 1 and RSpec 2 (jeremyevans) * Work with ruby-informix versions >= 0.7.3 in the informix adapter (jeremyevans) (#326) === 3.20.0 (2011-02-01) * Allow a :partial option to Database#indexes on MySQL to include partial indexes (roland.swingler) (#324) * Add a SQLite subadapter to the swift adapter, now that swift supports it (jeremyevans) * Update swift adapter to support swift 0.8.1, older versions no longer supported (jeremyevans) * Allow setting arbitrary JDBC properties in the jdbc adapter with the :jdbc_properties option (jeremyevans) * Use a better error message if a validates_max_length validation is applied to a nil value (jeremyevans) (#322) * Add some basic Microsoft Access support to the ado adapter, autoincrementing primary keys now work (jeremyevans) * Make class_table_inheritance plugin handle subclass associations better (jeremyevans) (#320) === 3.19.0 (2011-01-03) * Handle Date and DateTime types in prepared statements when using the jdbc adapter (jeremyevans) * Handle Date, DateTime, Time, SQL::Blob, true, and false in prepared statements when using the SQLite adapter (jeremyevans) * Use varbinary(max) instead of image for the generic blob type on MSSQL (jeremyevans) * Close prepared statements when disconnecting when using SQLite (jeremyevans) * Allow reflecting on validations in the validation_class_methods plugin (jeremyevans) * Allow passing a primary key value to the add_* association method (gucki) * When typecasting model column values, check the classes of the new and existing values (jeremyevans) * Improve type translation performance in the postgres, mysql, and sqlite adapters by using methods instead of procs (jeremyevans) === 3.18.0 (2010-12-01) * Allow the user to control how the connection pool deals with attempts to access shards that aren't configured (jeremyevans) * Typecast columns when creating model objects from JSON in the json_serializer plugin (jeremyevans) * When parsing the schema for a model that uses an aliased table, use the unaliased table name (jeremyevans) * When emulating schema methods such as drop_column on SQLite, recreate applicable indexes on the recreated table (jeremyevans) * Only remove hook pairs that have been run successfully in the instance_hooks plugin (jeremyevans) * Add reversible migration support to the migration extension (jeremyevans) * Add to_dot extension, for producing visualizations of Dataset abstract syntax trees with Graphviz (jeremyevans) * Switch to using manual type translation in the SQLite adapter (jeremyevans) * Support :read_timeout option in the native mysql adapter (tmm1) * Support :connect_timeout option in the native mysql and mysql2 adapters (tmm1) === 3.17.0 (2010-11-05) * Ensure that the optimistic locking plugin increments the lock column when using Model#modified! (jfirebaugh) * Correctly handle nil values in the xml_serializer plugin, instead of converting them to empty strings (george.haff) (#313) * Use a default wait_timeout that's allowed on Windows for the mysql and mysql2 adapters (jeremyevans) (#314) * Add support for connecting to MySQL over SSL using the :sslca, :sslkey, and related options (jeremyevans) * Fix Database#each_server when used with jdbc or do connection strings without separate :adapter option (jeremyevans) (#312) * Much better support in the AS400 JDBC subadapter (bhauff) * Allow cloning of many_through_many associations (gucki, jeremyevans) * In the nested_attributes plugin, don't make unnecessary update calls to modify associated objects that are about to be deleted (jeremyevans, gucki) * Allow Dataset#(add|set)_graph_aliases to accept as hash values symbols and arrays with a single element (jeremyevans) * Add Databse#views and #view_exists? to the Oracle adapter (gpheruson) * Add Database#sql_log_level for changing the level at which SQL queries are logged (jeremyevans) * Remove unintended use of prepared statements in swift adapter (jeremyevans) * Fix logging in the swift PostgreSQL subadapter (jeremyevans) === 3.16.0 (2010-10-01) * Support composite foreign keys for associations in the identity_map plugin (harukizaemon, jeremyevans) (#310) * Handle INTERSECT and EXCEPT on Microsoft SQL Server 2005+ (jfirebaugh) * Add :replace option to Database#create_language in the postgresql adapter (jeremyevans) * Make rcte_tree plugin work when not all columns are selected (jeremyevans) * Add swift adapter (jeremyevans) * Fix literalization of DateTime objects on 1.9 for databases that support fractional seconds (jeremyevans) --- databases/ruby-sequel/Makefile | 4 ++-- databases/ruby-sequel/PLIST | 25 +++++++++++++++++++++++-- databases/ruby-sequel/distinfo | 8 ++++---- 3 files changed, 29 insertions(+), 8 deletions(-) (limited to 'databases/ruby-sequel') diff --git a/databases/ruby-sequel/Makefile b/databases/ruby-sequel/Makefile index 451bf29b79e..1c2622b6d02 100644 --- a/databases/ruby-sequel/Makefile +++ b/databases/ruby-sequel/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.7 2010/09/10 04:45:46 taca Exp $ +# $NetBSD: Makefile,v 1.8 2011/03/23 15:49:05 taca Exp $ -DISTNAME= sequel-3.15.0 +DISTNAME= sequel-3.21.0 CATEGORIES= databases MAINTAINER= pkgsrc-users@NetBSD.org diff --git a/databases/ruby-sequel/PLIST b/databases/ruby-sequel/PLIST index 8e9b9ad5d50..dec5cd6f7ea 100644 --- a/databases/ruby-sequel/PLIST +++ b/databases/ruby-sequel/PLIST @@ -1,8 +1,8 @@ -@comment $NetBSD: PLIST,v 1.5 2010/09/10 04:45:46 taca Exp $ +@comment $NetBSD: PLIST,v 1.6 2011/03/23 15:49:05 taca Exp $ bin/sequel ${GEM_HOME}/cache/${GEM_NAME}.gem ${GEM_LIBDIR}/CHANGELOG -${GEM_LIBDIR}/COPYING +${GEM_LIBDIR}/MIT-LICENSE ${GEM_LIBDIR}/README.rdoc ${GEM_LIBDIR}/Rakefile ${GEM_LIBDIR}/bin/sequel @@ -44,7 +44,13 @@ ${GEM_LIBDIR}/doc/release_notes/3.12.0.txt ${GEM_LIBDIR}/doc/release_notes/3.13.0.txt ${GEM_LIBDIR}/doc/release_notes/3.14.0.txt ${GEM_LIBDIR}/doc/release_notes/3.15.0.txt +${GEM_LIBDIR}/doc/release_notes/3.16.0.txt +${GEM_LIBDIR}/doc/release_notes/3.17.0.txt +${GEM_LIBDIR}/doc/release_notes/3.18.0.txt +${GEM_LIBDIR}/doc/release_notes/3.19.0.txt ${GEM_LIBDIR}/doc/release_notes/3.2.0.txt +${GEM_LIBDIR}/doc/release_notes/3.20.0.txt +${GEM_LIBDIR}/doc/release_notes/3.21.0.txt ${GEM_LIBDIR}/doc/release_notes/3.3.0.txt ${GEM_LIBDIR}/doc/release_notes/3.4.0.txt ${GEM_LIBDIR}/doc/release_notes/3.5.0.txt @@ -83,6 +89,7 @@ ${GEM_LIBDIR}/lib/sequel/adapters/odbc/mssql.rb ${GEM_LIBDIR}/lib/sequel/adapters/openbase.rb ${GEM_LIBDIR}/lib/sequel/adapters/oracle.rb ${GEM_LIBDIR}/lib/sequel/adapters/postgres.rb +${GEM_LIBDIR}/lib/sequel/adapters/shared/access.rb ${GEM_LIBDIR}/lib/sequel/adapters/shared/mssql.rb ${GEM_LIBDIR}/lib/sequel/adapters/shared/mysql.rb ${GEM_LIBDIR}/lib/sequel/adapters/shared/oracle.rb @@ -90,6 +97,11 @@ ${GEM_LIBDIR}/lib/sequel/adapters/shared/postgres.rb ${GEM_LIBDIR}/lib/sequel/adapters/shared/progress.rb ${GEM_LIBDIR}/lib/sequel/adapters/shared/sqlite.rb ${GEM_LIBDIR}/lib/sequel/adapters/sqlite.rb +${GEM_LIBDIR}/lib/sequel/adapters/swift.rb +${GEM_LIBDIR}/lib/sequel/adapters/swift/mysql.rb +${GEM_LIBDIR}/lib/sequel/adapters/swift/postgres.rb +${GEM_LIBDIR}/lib/sequel/adapters/swift/sqlite.rb +${GEM_LIBDIR}/lib/sequel/adapters/tinytds.rb ${GEM_LIBDIR}/lib/sequel/adapters/utils/stored_procedures.rb ${GEM_LIBDIR}/lib/sequel/connection_pool.rb ${GEM_LIBDIR}/lib/sequel/connection_pool/sharded_single.rb @@ -129,6 +141,7 @@ ${GEM_LIBDIR}/lib/sequel/extensions/schema_dumper.rb ${GEM_LIBDIR}/lib/sequel/extensions/sql_expr.rb ${GEM_LIBDIR}/lib/sequel/extensions/string_date_time.rb ${GEM_LIBDIR}/lib/sequel/extensions/thread_local_timezones.rb +${GEM_LIBDIR}/lib/sequel/extensions/to_dot.rb ${GEM_LIBDIR}/lib/sequel/metaprogramming.rb ${GEM_LIBDIR}/lib/sequel/model.rb ${GEM_LIBDIR}/lib/sequel/model/associations.rb @@ -139,6 +152,7 @@ ${GEM_LIBDIR}/lib/sequel/model/exceptions.rb ${GEM_LIBDIR}/lib/sequel/model/inflections.rb ${GEM_LIBDIR}/lib/sequel/model/plugins.rb ${GEM_LIBDIR}/lib/sequel/plugins/active_model.rb +${GEM_LIBDIR}/lib/sequel/plugins/association_autoreloading.rb ${GEM_LIBDIR}/lib/sequel/plugins/association_dependencies.rb ${GEM_LIBDIR}/lib/sequel/plugins/association_pks.rb ${GEM_LIBDIR}/lib/sequel/plugins/association_proxies.rb @@ -198,6 +212,7 @@ ${GEM_LIBDIR}/spec/core/schema_spec.rb ${GEM_LIBDIR}/spec/core/spec_helper.rb ${GEM_LIBDIR}/spec/core/version_spec.rb ${GEM_LIBDIR}/spec/extensions/active_model_spec.rb +${GEM_LIBDIR}/spec/extensions/association_autoreloading_spec.rb ${GEM_LIBDIR}/spec/extensions/association_dependencies_spec.rb ${GEM_LIBDIR}/spec/extensions/association_pks_spec.rb ${GEM_LIBDIR}/spec/extensions/association_proxies_spec.rb @@ -239,6 +254,7 @@ ${GEM_LIBDIR}/spec/extensions/subclasses_spec.rb ${GEM_LIBDIR}/spec/extensions/tactical_eager_loading_spec.rb ${GEM_LIBDIR}/spec/extensions/thread_local_timezones_spec.rb ${GEM_LIBDIR}/spec/extensions/timestamps_spec.rb +${GEM_LIBDIR}/spec/extensions/to_dot_spec.rb ${GEM_LIBDIR}/spec/extensions/touch_spec.rb ${GEM_LIBDIR}/spec/extensions/tree_spec.rb ${GEM_LIBDIR}/spec/extensions/typecast_on_load_spec.rb @@ -275,6 +291,11 @@ ${GEM_LIBDIR}/spec/files/missing_integer_migrations/001_create_alt_basic.rb ${GEM_LIBDIR}/spec/files/missing_integer_migrations/003_create_alt_advanced.rb ${GEM_LIBDIR}/spec/files/missing_timestamped_migrations/1273253849_create_sessions.rb ${GEM_LIBDIR}/spec/files/missing_timestamped_migrations/1273253853_3_create_users.rb +${GEM_LIBDIR}/spec/files/reversible_migrations/001_reversible.rb +${GEM_LIBDIR}/spec/files/reversible_migrations/002_reversible.rb +${GEM_LIBDIR}/spec/files/reversible_migrations/003_reversible.rb +${GEM_LIBDIR}/spec/files/reversible_migrations/004_reversible.rb +${GEM_LIBDIR}/spec/files/reversible_migrations/005_reversible.rb ${GEM_LIBDIR}/spec/files/timestamped_migrations/1273253849_create_sessions.rb ${GEM_LIBDIR}/spec/files/timestamped_migrations/1273253851_create_nodes.rb ${GEM_LIBDIR}/spec/files/timestamped_migrations/1273253853_3_create_users.rb diff --git a/databases/ruby-sequel/distinfo b/databases/ruby-sequel/distinfo index 2aff501f256..904ea5a6595 100644 --- a/databases/ruby-sequel/distinfo +++ b/databases/ruby-sequel/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.5 2010/09/10 04:45:46 taca Exp $ +$NetBSD: distinfo,v 1.6 2011/03/23 15:49:05 taca Exp $ -SHA1 (sequel-3.15.0.gem) = 135db281c1f0e5e9fb0176cd0d07dc72080276d4 -RMD160 (sequel-3.15.0.gem) = 828131f55191e2ea394e39d75ad93602c23df91e -Size (sequel-3.15.0.gem) = 668672 bytes +SHA1 (sequel-3.21.0.gem) = 15f9519c02cd9c9b451e1ef9c859d51fb5bccc90 +RMD160 (sequel-3.21.0.gem) = 4dd726a1b80fa6609ecc404215c3bf4de5dd4771 +Size (sequel-3.21.0.gem) = 695296 bytes -- cgit v1.2.3