X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Changes;h=b002e57d38cd92a20aabf46bf4183e50c22ef784;hb=59d017a017e04267fddc5c90ac474032614cf5dd;hp=f71dec55c38321e9ee7b1cef7a91b9e0d9a9bfc9;hpb=e7dcdf69fd96a9a50696607171defaf03075592f;p=dbsrgits%2FDBIx-Class.git diff --git a/Changes b/Changes index f71dec5..b002e57 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,15 @@ +Current Known Issues / Regressions + - Breaks DBIx::Class::ResultSet::WithMetaData (fix pending in RT#104602) + - Breaks DBIx::Class::Tree::NestedSet (fix pending in RT#114440) + Revision history for DBIx::Class * Notable Changes and Deprecations + - The entire class hierarchy now explicitly sets the 'c3' mro, even + in cases where load_components was not used. Extensive testing led + the maintainer believe this is safe, but this is a very complex + area and reality may turn out to be different. If **ANYHTING** at + all seems out of place, please file a report at once - Neither exception_action() nor $SIG{__DIE__} handlers are invoked on recoverable errors. This ensures that the retry logic is fully insulated from changes in control flow, as the handlers are only @@ -18,6 +27,8 @@ Revision history for DBIx::Class mismatches between your codebase and data source - Calling the set_* many-to-many helper with a list (instead of an arrayref) now emits a deprecation warning + - Calling the getter $rsrc->from("argument") now throws an exception + instead of silently discarding the argument * New Features - When using non-scalars (e.g. arrays) as literal bind values it is no @@ -40,6 +51,8 @@ Revision history for DBIx::Class - Make sure exception objects stringifying to '' are properly handled and warned about (GH#15) - Fix silencing of exceptions thrown by custom inflate_result() methods + - Fix complex prefetch when ordering over foreign boolean columns + ( Pg can't MAX(boolcol) despite being able to ORDER BY boolcol ) - Fix incorrect data returned in a corner case of partial-select HRI invocation (no known manifestations of this bug in the field, see commit message for description of exact failure scenario) @@ -73,8 +86,6 @@ Revision history for DBIx::Class - Make the Optional::Dependencies error messages cpanm-friendly - Incompatibly change values (not keys) of the hash returned by Optional::Dependencies::req_group_list (no known users in the wild) - - Protect tests and codebase from incomplete caller() overrides, like - e.g. RT#32640 - Stop using bare $] throughout - protects the codebase from issues similar (but likely not limited to) P5#72210 - Config::Any is no longer a core dep, but instead is migrated to a new