2020-06-07 08:21:36 by Takahiro Kambe | Files touched by this commit (3) | |
Log message:
databases/ruby-sequel: update to 5.33.0
Update ruby-sequel to 5.33.0.
=== 5.33.0 (2020-06-01)
* Support custom join types on a per-association basis when using \
eager_graph/association_join (jeremyevans)
* Support primary_key with type: :smallserial on PostgreSQL (j-a-m-l) (#1698)
* Add Database#current_timestamp_utc accessor on SQLite to keep CURRENT_* in UTC \
instead of converting to localtime (jeremyevans)
|
2020-05-02 15:22:00 by Takahiro Kambe | Files touched by this commit (3) | |
Log message:
databases/ruby-sequel: update to 5.32.0
Update ruby-sequel to 5.32.0.
=== 5.32.0 (2020-05-01)
* Allow Database#create_table? work with :partition_of option on PostgreSQL \
(jeremyevans) (#1690)
* Add fiber_concurrency extension, for using Fiber.current instead of \
Thread.current for checking out connections (jeremyevans)
* Move most Sequel singleton methods into a module that extends Sequel for \
easier overriding (jeremyevans)
* Fix method visibility issues in model, plugin, extension, and adapter code \
(jeremyevans)
* Avoid defining conversion procs for PostgreSQL inet/cidr types in pg_inet \
extension when using sequel_pg 1.13.0+ (jeremyevans)
* Add run_transaction_hooks Database extension, allowing for running the \
transaction hooks before commit/rollback, for use with transactional testing \
(jeremyevans)
* Recognize timestamp(N) with time zone type (isc) (#1684)
|
2020-04-26 10:40:47 by Takahiro Kambe | Files touched by this commit (3) | |
Log message:
databases/ruby-sequel: update to 5.31.0
Update ruby-sequel to 5.31.0.
=== 5.31.0 (2020-04-01)
* Fix alter_table drop_constraint :primary_key option on SQLite for non-integer \
primary keys (jeremyevans)
* Add skip_saving_columns plugin, which supports columns to skip when saving, \
and skips generated columns by default (joeosburn, jeremyevans) (#1681, #1682)
* Add support for creating partitioned tables in PostgreSQL 10+ using \
:partition_by and :partition_of options (jeremyevans)
* Dump generated columns as generated columns when using the schema_dumper with \
:same_db option on PostgreSQL 12+ (jeremyevans) (#1680)
* Ignore defaults for generated columns by default when using the schema dumper \
(jeremyevans) (#1680)
* Include generated columns in schema on SQLite 3.31+ (jeremyevans)
* Add :generated schema entry on PostgreSQL 12+ and SQLite 3.31+ for whether the \
columns is generated (jeremyevans)
* Add association_lazy_eager_option plugin for supporting :eager option for \
association method (jeremyevans)
* Add forbid_lazy_load plugin for forbidding lazy loading of associations, to \
help find N+1 issues (jeremyevans)
|
2020-03-08 14:21:16 by Takahiro Kambe | Files touched by this commit (3) | |
Log message:
databases/ruby-sequel: update to 5.30.0
Update ruby-sequel to 5.30.0.
=== 5.30.0 (2020-03-01)
* Remove specs and old release notes from the gem to reduce gem size by over 40% \
(jeremyevans)
* When using Database#transaction :retry_on, call :before_retry option if \
retrying even if :num_retries is nil (jcmfernandes) (#1678)
* Support generated columns on SQLite 3.31+ using :generated_always_as and \
:generated_type options (jeremyevans)
|
2020-02-05 15:40:29 by Takahiro Kambe | Files touched by this commit (3) | |
Log message:
databases/ruby-sequel: update to 5.29.0
Update ruby-sequel to 5.29.0.
=== 5.29.0 (2020-02-01)
* Recognize another disconnect error in the tinytds adapter (jeremyevans)
* Fix verbose warning in postgres adapter when using prepared statements and \
recent versions of ruby-pg (jeremyevans)
* Work correctly on Ruby 2.8+ by supporting second argument for initialize_clone \
(jeremyevans)
* Add empty_failure_backtraces plugin for empty backtraces for ValidationFailed \
and HookFailed exceptions, much faster on JRuby (jeremyevans)
* Add Dataset#json_serializer_opts to json_serializer plugin, allowing to set \
json_serializer options on a per-dataset basis (jeremyevans)
|
2020-01-26 18:32:28 by Roland Illig | Files touched by this commit (981) |
Log message:
all: migrate homepages from http to https
pkglint -r --network --only "migrate"
As a side-effect of migrating the homepages, pkglint also fixed a few
indentations in unrelated lines. These and the new homepages have been
checked manually.
|
2020-01-16 16:18:45 by Takahiro Kambe | Files touched by this commit (3) | |
Log message:
databases/ruby-sequel: update to 5.28.0
=== 5.28.0 (2020-01-01)
* Warn when calling Sequel::JDBC::Postgres::Dataset#with_fetch_size \
(jeremyevans) (#1665)
* Add exclude_or_null extension, for filtering datasets where the condition is \
false or NULL (jeremyevans)
* Add any_not_empty extension, for making Dataset#any? without a block mean \
!empty? (jeremyevans)
=== 5.27.0 (2019-12-01)
* Add Sequel::DEFAULT for a DEFAULT expression, useful for assigning to default \
values (jeremyevans)
* Make Postgres::ArrayOp#join in pg_array_ops extension work correctly on \
PostgreSQL <9.1 (jeremyevans)
* Make pg_enum extension work correctly on PostgreSQL 8.3-9.0 (jeremyevans)
* Emulate FILTER clause for aggregate functions using CASE on databases not \
supporting it directly (jeremyevans)
* Support ordering by NULLS FIRST/NULLS LAST without emulation on SQLite 3.30+ \
(jeremyevans)
|
2019-11-02 15:26:04 by Takahiro Kambe | Files touched by this commit (3) | |
Log message:
databases/ruby-sequel: update to 5.26.0
Update ruby-sequel to 5.26.0.
=== 5.26.0 (2019-11-01)
* Recognize two additional foreign key constraint violation codes on MySQL \
8.0.13+ (rianmcguire) (#1657)
* Support table aliases for single-table INSERT statements on PostgreSQL 9.5+ \
(jeremyevans) (#1656)
* Implement Sequel::Postgres::PGRange#hash so instances work correctly in hashes \
(jeremyevans) (#1648)
* Make dirty plugin work correctly with typecast_on_load plugin (jeremyevans) (#1647)
* Add support for :require_modification option when setting up nested_attributes \
(jeremyevans)
* Add support for SQL/JSON path expressions to the pg_json_ops extension, \
supported by PostgreSQL 12+ (jeremyevans)
|
2019-10-23 18:13:23 by Takahiro Kambe | Files touched by this commit (3) | |
Log message:
databases/ruby-sequel: update to 5.25.0
Update ruby-sequel to 5.25.0.
=== 5.25.0 (2019-10-01)
* Fix Sequel::SQL::NumericMethods#coerce to not raise NoMethodError if super \
method is not defined (jeremyevans) (#1645)
* Allow setting a default for a column that already has a default on Microsoft \
SQL Server (jeremyevans)
* Fix keyword argument separation warnings on Ruby master branch in \
csv_serializer plugin (jeremyevans)
* Add association_multi_add_remove plugin for adding/removing multiple \
associated objects in a single method call (AlexWayfer, jeremyevans) (#1641, \
#1643)
* Make sharding plugin integrate with server_block extension (jeremyevans)
|
2019-09-13 17:33:14 by Takahiro Kambe | Files touched by this commit (3) | |
Log message:
databases/ruby-sequel: update to 5.24.0
=== 5.24.0 (2019-09-01)
* Add Database#skip_logging? private method designed for extensions to force \
query timing even if no logger is present (adam12) (#1640)
* Allow a hostname specified in a defaults_file in the mysql2 adapter, by not \
explicitly setting :host (sapio-bdeamer) (#1638)
* Convert all database array types to Ruby arrays in the jdbc adapter (jeremyevans)
* Add static_cache_cache plugin for caching rows for static_cache models to a \
file to avoid database queries during model initialization (jeremyevans)
* Add :cache_file plugin option to pg_auto_constraint_validations plugin, for \
caching metadata to a file for faster initialization (jeremyevans)
* Support :unique_deferrable and :primary_key_deferrable column options (jeremyevans)
* Support :generated_always_as column option on PostgreSQL 12+ (jeremyevans)
=== 5.23.0 (2019-08-01)
* Work around a bug on jdbc-sqlite3 3.27.2.1 when parsing schema for tables with \
columns with default values (jeremyevans)
* Work around a bug in jdbc-sqlite3 3.27.2.1 when in Database#foreign_key_list \
in the jdbc/sqlite3 adapter (jeremyevans)
* Make Dataset#execute* private methods respect explicit servers option, fixing \
Dataset#paged_each in the postgres adapter when sharding (jeremyevans) (#1632)
* Handle instances of subclasses of core classes when wrapping objects in the \
pg_json extension (jeremyevans) (#1631)
* Support :ansi Database option in the tinytds adapter (kenaniah) (#1629)
* Support cross-database and linked servers when parsing schema on Microsoft SQL \
Server (kenaniah) (#1629)
* Add insert_conflict plugin for automatically handling unique constraint \
conflicts when saving new model instances on PostgreSQL 9.5+ and SQLite 3.24.0+ \
(jeremyevans)
* Avoid errors when parsing schema in the mock sqlite adapter (jeremyevans)
* Avoid possible thread-safety issue in the timezones support (jeremyevans)
* Handle offsets when typecasting an array or hash to datetime when \
Sequel.datetime_class = Time (jeremyevans)
* Support Sequel.datetime_class = Time when using the named_timezones extension \
(jeremyevans)
|