X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Changes;h=3efcfb4a6086f2714e6a3777e29dc23e8088303a;hb=e9657379908899b73ff92948a4cd19b6f875e10f;hp=9dd6ebfd4cfcb3a4532e5ab4ad45f977bd76cc60;hpb=f76f761c646505aafa2d02ed8c5f615858c82a9e;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/Changes b/Changes index 9dd6ebf..3efcfb4 100644 --- a/Changes +++ b/Changes @@ -5,9 +5,13 @@ Revision history for DBIx::Class - ::Storage::DBI now correctly preserves a parent $dbh from terminating children, even during interpreter-global out-of-order destruction + - dbicadmin supports an -I option with the same semantics as + perl itself - InflateColumn::DateTime support for MSSQL via DBD::Sybase - Millisecond precision support for MSSQL datetimes for InflateColumn::DateTime + - Oracle-specific hierarchical query syntax support: + CONNECT BY (NOCYCLE) / START WITH / ORDER SIBLINGS BY - Support connecting using $ENV{DBI_DSN} and $ENV{DBI_DRIVER} - current_source_alias method on ResultSet objects to determine the alias to use in programatically assembled @@ -19,7 +23,10 @@ Revision history for DBIx::Class the unsafe_subselect_ok attribute, due to optimized queries - Support for Generic Subquery limit "emulation" - awfully slow and inefficient but works on almost any db, and is preferred - to a soft-limit + to software limit emulation + - Sybase ASE driver now uses SET ROWCOUNT where possible, and + Generic Subquery otherwise for limit support instead of always + using software limit emulation * Fixes - Fix nasty potentially data-eating bug when deleting/updating @@ -32,6 +39,10 @@ Revision history for DBIx::Class - update() on row not in_storage no longer throws an exception if there are no dirty columns to update (fixes cascaded update annoyances) + - update()/delete() on prefetching resultsets no longer results + in malformed SQL (some $rs attributes were erroneously left in) + - Fix dbicadmin to allow deploy() on non-versioned schema + - Fix dbicadmin to respect sql_dir on upgrade() (RT#57732) - Update Schema::Versioned to respect hashref style of connection_info - Do not recreate the same related object twice during MultiCreate