Release 0.08125
[dbsrgits/DBIx-Class.git] / Changes
1 Revision history for DBIx::Class
2
3 0.08125 2010-12-27 04:30 (UTC)
4     * New Features / Changes
5         - New method ResultSource columns_info method, returning multiple
6           pairs of column name/info at once
7         - $rs->search now throws when called in void context, as it makes
8           no sense (and is nearly always a sign of a bug/misdesign)
9         - Restore long-lost ability to supply unbalanced select/as pairs
10           e.g. +select => \'DISTINCT(foo, bar)', +as => ['foo', 'bar']
11         - +columns now behaves just like columns by not stripping a
12           fully-qualified 'as' spec (i.e. foo.bar results in $obj->foo->bar)
13         - Deprecate legacy $rs->search( %condition ) syntax (warn once per
14           callsite)
15         - NULL is now supplied unquoted to all debug-objects, in order to
16           differentiate between a real NULL and the string 'NULL'
17         - New search() condition operator -value used to pass complex bind
18           values to DBI: search({ array_col => { -value => [1,2,3] }})
19         - Add full INSERT...RETURNING support for Oracle
20         - Deprecate use of -nest in search conditions (warn once per
21           callsite)
22         - Deprecate the completely useless DBIx::Class::Serialize::Storable
23           result component
24
25     * Fixes
26         - Fixed read-only attribute set attempt in ::Storage::Replicated
27           (RT#62642)
28         - Fix incomplete logic while detecting correct Oracle sequence
29           on insert
30         - Fix detection of Oracle sequences for tables without an explicitly
31           specified schema (RT#63493)
32         - Major overhaul of Storage::Oracle to handle enabled quoting
33         - Fixed incorrect composition of select/as/columns attributes during
34           chaining (RT#61235)
35         - Proper serialization of resultsets with open cursors
36         - Refactor handling of RDBMS-side values during insert() - fix
37           regression of inserts into a Postgres / ::Replicated combination
38         - Missing dependency check in t/60core.t (RT#62635)
39         - Fix regressions in IC::DT registration logic
40         - Fix regression in select-associated bind value handling (RT#61025)
41         - Simplify SQL generated by some LIMITed prefetching queries
42         - Throw an exception when a required group_by on a complex prefetch
43           can not be auto-constructed, instead of continuing to eventually
44           produce invalid SQL
45         - Fix infinite loops on old perls with a recent Try::Tiny
46         - Improve "fork()" on Win32 by reimplementing a more robust DBIC
47           thread support (still problematic, pending a DBI fix)
48         - Properly quote table name on INSERT with no values
49         - Work around possible Storage destruction warnings
50         - Fix count of grouped resultsets using HAVING with aliases
51         - Setting belongs_to columns/relationships no longer leaves the
52           FK value and related object out of sync
53         - Stop stripping newlines from SQL statements in the limit emulators
54           as it is possible that custom sql with comments was provided
55         - Add forgotten attributes to Admin.pm
56         - Fix incorrect 'having' attribute documentation (RT#64129)
57         - Improve fallback-to-master/return-to-slave reporting in
58           ::Replicated::Balancer
59         - Adjust txn_scope_guard code/tests to changes in $@ handling on
60           recent blead (RT#64251)
61
62     * Misc
63         - Add extra option groups to DBIC::Optional::Depencencies, to aid
64           users in requesting the prerequisites for a particular RDBMS
65         - Switch all serialization to use Storable::nfreeze for portable
66           architecture independent ice
67         - Fix the bogus META.yml dependency injection issue for good
68         - Refactor DBIx::Class::Storage::Statistics::debugfh() to be lazy
69
70 0.08124 2010-10-28 14:23 (UTC)
71     * New Features / Changes
72         - Add new -ident "function" indicating rhs is a column name
73           { col => { -ident => 'othercol' } } vs { col => \'othercol' }
74         - Extend 'proxy' relationship attribute
75         - Use DBIx::Class::Storage::Debug::PrettyPrint when the
76           environment variable DBIC_TRACE_PROFILE is set, see
77           DBIx::Class::Storage for more information
78         - Implemented add_unique_constraints() which delegates to
79           add_unique_constraint() as appropriate
80         - add_unique_constraint() now poparly throws if called with
81           multiple constraint definitions
82         - No longer depend on SQL::Abstract::Limit - DBIC has been doing
83           most of the heavy lifting for a while anyway
84         - FilterColumn now passes data through when transformations
85           are not specified rather than throwing an exception.
86         - Optimized RowNum based Oracle limit-dialect (RT#61277)
87         - Requesting a pager on a resultset with cached entries now
88           throws an exception, instead of returning a 1-page object
89           since the amount of rows is always equal to the "pagesize"
90         - $rs->pager now uses a lazy count to determine the amount of
91           total entries only when really needed, instead of doing it
92           at instantiation time
93         - New documentation map organized by features
94           (DBIx::Class::Manual::Features)
95         - find( { ... }, { key => $constraint } ) now throws an exception
96           when the supplied data does not fully specify $constraint
97         - find( col1 => $val1, col2 => $val2, ... ) is no longer supported
98           (it has been in deprecated state for more than 4 years)
99         - Make sure exception_action does not allow exception-hiding
100           due to badly-written handlers (the mechanism was never meant
101           to be able to suppress exceptions)
102
103     * Fixes
104         - Fix memory leak during populate() on 5.8.x perls
105         - Temporarily fixed 5.13.x failures (RT#58225)
106           (perl-core fix still pending)
107         - Fix result_soutrce_instance leaks on compose_namespace
108         - Fix $_ volatility on load_namespaces (a class changing $_
109           at compile time no longer causes a massive fail)
110         - Fix find() without a key attr. choosing constraints even if
111           some of the supplied values are NULL (RT#59219)
112         - Fixed rels ending with me breaking subqueried limit realiasing
113         - Fixed $rs->update/delete on resutsets constrained by an
114           -or condition
115         - Remove rogue GROUP BY on non-multiplying prefetch-induced
116           subqueries
117         - Fix incorrect order_by handling with prefetch on
118           $ordered_rs->search_related ('has_many_rel') resultsets
119         - Oracle sequence detection now *really* works across schemas
120           (fixed some ommissions from 0.08123)
121         - dbicadmin now uses a /usr/bin/env shebang to work better with
122           perlbrew and other local perl builds
123         - bulk-inserts via $dbh->bind_array (void $rs->populate) now
124           display properly in DBIC_TRACE
125         - Incomplete exception thrown on relationship auto-fk-inference
126           failures
127         - Fixed distinct with order_by to not double-specify the same
128           column in the GROUP BY clause
129         - Properly support column names with symbols (e.g. single quote)
130           via custom accessors
131         - Fixed ::Schema::Versioned to work properly with quoting on
132           (RT#59619)
133         - Fixed t/54taint fails under local-lib
134         - Fixed SELECT ... FOR UPDATE with LIMIT regression (RT#58554)
135         - Fixed CDBICompat to preserve order of column-group additions,
136           so that test relying on the order of %{} will no longer fail
137         - Fixed mysterious ::Storage::DBI goto-shim failures on older
138           perl versions
139         - Non-blessed reference exceptions are now correctly preserved
140           when thrown from udner DBIC (e.g. from txn_do)
141         - No longer disconnecting database handles supplied to connect
142           via a coderef
143         - Fixed t/inflate/datetime_pg.t failures due to a low dependency
144           on DateTime::Format::Pg (RT#61503)
145         - Fix dirtyness detection on source-less objects
146         - Fix incorrect limit_dialect assignment on Replicated pool members
147         - Fix invalid sql on relationship attr order_by with prefetch
148         - Fix primary key sequence detection for Oracle
149           (first trigger instead of trigger for column)
150         - Add various missing things to Optional::Dependencies
151         - Skip a test that breaks due to serious bugs in current DBD::SQLite
152         - Fix tests related to leaks and leaky perls (5.13.5, 5.13.6)
153
154     * Misc
155         - Entire test suite now passes under DBIC_TRACE=1
156         - Makefile.PL no longer imports GetOptions() to interoperate
157           better with Catalyst installers
158         - Bumped minimum Module::Install for developers
159         - Bumped DBD::SQLite dependency and removed some TODO markers
160           from tests (RT#59565)
161         - Do not execute t/zzzzzzz_sqlite_deadlock.t for regular module
162           installs - test is prone to spontaneous blow up
163         - DT-related tests now require a DateTime >= 0.55 (RT#60324)
164         - Makefile.PL now provides a pre-parsed DBIC version to the
165           Opt::Dep pod generator
166         - t/52leaks.t now performs very aggressive leak detection in
167           author/smoker mode
168
169 0.08123 2010-06-12 14:46 (UTC)
170     * Fixes
171         - Make sure Oracle identifier shortener applies to auto-generated
172           column names, so we stay within the 30-char limit (RT#58271)
173         - Oracle sequence detection now works across schemas
174         - Fix a Storage/$dbh leak introduced by the migration to
175           Try::Tiny (this is *not* a Try::Tiny bug)
176         - Fix corner case of count with group-by over a 1:1 join column
177           where the selector ends up with column name clashes
178         - POD fixes (RT#58247)
179
180     * Misc
181         - Test suite default on-disk database now checks for Win32
182           fail-conditions even when running on other OSes
183
184 0.08122 2010-06-03 17:41 (UTC)
185     * New Features
186         - Add DBIx::Class::FilterColumn for non-ref filtering
187         - ::Storage::DBI now correctly preserves a parent $dbh from
188           terminating children, even during interpreter-global
189           out-of-order destruction
190         - dbicadmin supports an -I option with the same semantics as
191           perl itself
192         - InflateColumn::DateTime support for MSSQL via DBD::Sybase
193         - Millisecond precision support for MSSQL datetimes for
194           InflateColumn::DateTime
195         - Oracle-specific hierarchical query syntax support:
196           CONNECT BY (NOCYCLE) / START WITH / ORDER SIBLINGS BY
197         - Support connecting using $ENV{DBI_DSN} and $ENV{DBI_DRIVER}
198         - current_source_alias method on ResultSet objects to
199           determine the alias to use in programatically assembled
200           search()es (originally added in 0.08100 but unmentioned)
201         - Rewrite/unification of all subselecting limit emulations
202           (RNO, Top, RowNum) to be much more robust wrt complex joined
203           resultsets
204         - MSSQL limits now don't require nearly as many applications of
205           the unsafe_subselect_ok attribute, due to optimized queries
206         - Support for Generic Subquery limit "emulation" - awfully slow
207           and inefficient but works on almost any db, and is preferred
208           to software limit emulation
209         - Sybase ASE driver now uses SET ROWCOUNT where possible, and
210           Generic Subquery otherwise for limit support instead of always
211           using software limit emulation
212         - create_ddl_dir (and derivatives) now attempt to create the given
213           $ddl_dir if it does not already exist
214         - deployment_statements now automatically supplies the current RDBMS
215           version to SQLT producer_args for MySQL, Pg, SQLite and Oracle
216
217     * Fixes
218         - Fix nasty potentially data-eating bug when deleting/updating
219           a limited resultset
220         - Fix find() to use result_class set on object
221         - Fix result_class setter behaviour to not mistakenly stuff attrs.
222         - Don't try and ensure_class_loaded an object. This doesn't work.
223         - Fix as_subselect_rs to not inject resultset class-wide where
224           conditions outside of the resulting subquery
225         - Fix count() failing with {for} resultset attribute (RT#56257)
226         - Fixed incorrect detection of Limit dialect on unconnected $schema
227         - update() on row not in_storage no longer throws an exception
228           if there are no dirty columns to update (fixes cascaded update
229           annoyances)
230         - update()/delete() on prefetching resultsets no longer results
231           in malformed SQL (some $rs attributes were erroneously left in)
232         - Fix dbicadmin to allow deploy() on non-versioned schema
233         - Fix dbicadmin to respect sql_dir on upgrade() (RT#57732)
234         - Update Schema::Versioned to respect hashref style of
235           connection_info
236         - Do not recreate the same related object twice during MultiCreate
237           (solves the problem of orphaned IC::FS files)
238         - Fully qualify xp_msver selector when using DBD::Sybase with
239           MSSQL (RT#57467)
240         - Fix ::DBI::Storage to always be able to present a full set of
241           connect() attributes to e.g. Schema::Versioned
242         - Fix Oracle auto-inc trigger detection of "INSERT OR UPDATE"-type
243           triggers
244
245     * Misc
246         - Reformatted Changelog \o/
247         - DBIC goes git://git.shadowcat.co.uk/dbsrgits/DBIx-Class.git
248         - Allow developers to skip optional dependency forcing when working
249           from a checkout
250         - Add a warning to load_namespaces if a class in ResultSet/ is not
251           a subclass of DBIx::Class::ResultSet
252         - All DBIC exception-handling switched to Try::Tiny
253         - All DBIC modules are now free of imports via namespace::clean
254         - Depend on optimized SQL::Abstract (faster SQL generation)
255         - Depend on new Class::Accessor::Grouped reintroducing optional use
256           of Class::XSAccessor (just install C::XSA and get lightning fast
257           column accessors)
258
259 0.08121 2010-04-11 18:43:00 (UTC)
260         - Support for Firebird RDBMS with DBD::InterBase and ODBC
261         - Add core support for INSERT RETURNING (for storages that
262           supports this syntax, currently PostgreSQL and Firebird)
263         - Fix spurious warnings on multiple UTF8Columns component loads
264         - DBIx::Class::UTF8Columns entered deprecated state
265         - DBIx::Class::InflateColumn::File entered deprecated state
266         - DBIx::Class::Optional::Dependencies left experimental state
267         - Add req_group_list to Opt::Deps (RT#55211)
268         - Add support for mysql-specific STRAIGHT_JOIN (RT#55579)
269         - Cascading delete/update are now wrapped in a transaction
270           for atomicity
271         - Fix accidental autovivification of ENV vars
272         - Fix update_all and delete_all to be wrapped in a transaction
273         - Fix multiple deficiencies when using MultiCreate with
274           data-encoder components (e.g. ::EncodedColumn)
275         - Fix regression where SQL files with comments were not
276           handled properly by ::Schema::Versioned.
277         - Fix regression on not properly throwing when $obj->relationship
278           is unresolvable
279         - Fix the join-optimiser to consider unqualified column names
280           whenever possible
281         - Fix an issue with multiple same-table joins confusing the join
282           optimizier
283         - Add has_relationship method to row objects
284         - Fix regression in set_column on PK-less objects
285         - Better error text on malformed/missing relationships
286         - Add POD about the significance of PK columns
287         - Fix for SQLite to ignore the (unsupported) { for => ... }
288           attribute
289         - Fix ambiguity in default directory handling of create_ddl_dir
290           (RT#54063)
291         - Support add_columns('+colname' => { ... }) to augment column
292           definitions.
293
294 0.08120 2010-02-24 08:58:00 (UTC)
295         - Make sure possibly overwritten deployment_statements methods in
296           schemas get called on $schema->deploy
297         - Fix count() with group_by aliased-function resultsets
298         - with_deferred_fk_checks() Oracle support
299         - Massive refactor and cleanup of primary key handling
300         - Fixed regression losing custom result_class (really this time)
301           (RT#54697)
302         - Fixed regression in DBIC SQLT::Parser failing with a classname
303           (as opposed to a schema object)
304         - Changes to Storage::DBI::Oracle to accomodate changes in latest
305           SQL::Translator (quote handling)
306         - Make sure deployment_statements is per-storage overridable
307         - Fix dbicadmin's (lack of) POD
308
309 0.08119 2010-02-15 09:36:00 (UTC)
310         - Add $rs->is_ordered to test for existing order_by on a resultset
311         - Add as_subselect_rs to DBIC::ResultSet from
312           DBIC::Helper::ResultSet::VirtualView::as_virtual_view
313         - Refactor dbicadmin adding DDL manipulation capabilities
314         - New optional dependency manager to aid extension writers
315         - Depend on newest bugfixed Moose
316         - Make resultset chaining consistent wrt selection specification
317         - Storage::DBI::Replicated cleanup
318         - Fix autoinc PKs without an autoinc flag on Sybase ASA
319
320 0.08118 2010-02-08 11:53:00 (UTC)
321         - Fix a bug causing UTF8 columns not to be decoded (RT#54395)
322         - Fix bug in One->Many->One prefetch-collapse handling (RT#54039)
323         - Cleanup handling of relationship accessor types
324
325 0.08117 2010-02-05 17:10:00 (UTC)
326         - Perl 5.8.1 is now the minimum supported version
327         - Massive optimization of the join resolution code - now joins
328           will be removed from the resulting SQL if DBIC can prove they
329           are not referenced by anything
330         - Subqueries no longer marked experimental
331         - Support for Informix RDBMS (limit/offset and auto-inc columns)
332         - Support for Sybase SQLAnywhere, both native and via ODBC
333         - might_have/has_one now warn if applied calling class's column
334           has is_nullable set to true.
335         - Fixed regression in deploy() with a {sources} table limit applied
336           (RT#52812)
337         - Views without a view_definition will throw an exception when
338           parsed by SQL::Translator::Parser::DBIx::Class
339         - Stop the SQLT parser from auto-adding indexes identical to the
340           Primary Key
341         - InflateColumn::DateTime refactoring to allow fine grained method
342           overloads
343         - Fix ResultSetColumn improperly selecting more than the requested
344           column when +columns/+select is present
345         - Fix failure when update/delete of resultsets with complex WHERE
346           SQLA structures
347         - Fix regression in context sensitiveness of deployment_statements
348         - Fix regression resulting in overcomplicated query on
349           search_related from prefetching resultsets
350         - Fix regression on all-null returning searches (properly switch
351           LEFT JOIN to JOIN in order to distinguish between both cases)
352         - Fix regression in groupedresultset count() used on strict-mode
353           MySQL connections
354         - Better isolation of RNO-limited queries from the rest of a
355           prefetching resultset
356         - New MSSQL specific resultset attribute to allow hacky ordered
357           subquery support
358         - Fix nasty schema/dbhandle leak due to SQL::Translator
359         - Initial implementation of a mechanism for Schema::Version to
360           apply multiple step upgrades
361         - Fix regression on externally supplied $dbh with AutoCommit=0
362         - FAQ "Custom methods in Result classes"
363         - Cookbook POD fix for add_drop_table instead of add_drop_tables
364         - Schema POD improvement for dclone
365
366 0.08115 2009-12-10 09:02:00 (CST)
367         - Real limit/offset support for MSSQL server (via Row_Number)
368         - Fix distinct => 1 with non-selecting order_by (the columns
369           in order_by also need to be aded to the resulting group_by)
370         - Do not attempt to deploy FK constraints pointing to a View
371         - Fix count/objects from search_related on limited resultset
372         - Stop propagating distinct => 1 over search_related chains
373         - Make sure populate() inherits the resultset conditions just
374           like create() does
375         - Make get_inflated_columns behave identically to get_columns
376           wrt +select/+as (RT#46953)
377         - Fix problems with scalarrefs under InflateColumn (RT#51559)
378         - Throw exception on delete/update of PK-less resultsets
379         - Refactored Sybase storage driver into a central ::DBI::Sybase
380           dispatcher, and a sybase-specific ::DBI::Sybase::ASE
381         - Fixed an atrocious DBD::ADO bind-value bug
382         - Cookbook/Intro POD improvements
383
384 0.08114 2009-11-14 17:45:00 (UTC)
385         - Preliminary support for MSSQL via DBD::ADO
386         - Fix botched 0.08113 release (invalid tarball)
387
388 0.08113 2009-11-13 23:13:00 (UTC)
389         - Fix populate with has_many bug
390           (RT #50828)
391         - Fix Oracle autoincrement broken for Resultsets with scalar refs
392           (RT #50874)
393         - Complete Sybase RDBMS support including:
394           - Support for TEXT/IMAGE columns
395           - Support for the 'money' datatype
396           - Transaction savepoints support
397           - DateTime inflation support
398           - Support for bind variables when connecting to a newer Sybase with
399              OpenClient libraries
400           - Support for connections via FreeTDS with CASTs for bind variables
401              when needed
402           - Support for interpolated variables with proper quoting when
403              connecting to an older Sybase and/or via FreeTDS
404           - bulk API support for populate()
405         - Transaction support for MSSQL via DBD::Sybase
406         - Add is_paged method to DBIx::Class::ResultSet so that we can
407           check that if we want a pager
408         - Skip versioning test on really old perls lacking Time::HiRes
409           (RT #50209)
410         - Fixed on_connect_do/call regression when used with a coderef
411           connector (RT #50003)
412         - A couple of fixes to Ordered to remedy subclassing issues
413         - Fixed another lingering problem with PostgreSQL
414           auto-increment support and its interaction with multiple
415           schemas
416         - Remove some IN workarounds, and require a recent version of
417           SQLA instead
418         - Improvements to populate's handling of mixed scalarref values
419         - Fixed regression losing result_class after $rs->find (introduced
420           in 0.08108)
421         - Fix in_storage() to return 1|0 as per existing documentation
422         - Centralize handling of _determine_driver calls prior to certain
423           ::Storage::DBI methods
424         - Fix update/delete arbitrary condition handling (RT#51409)
425         - POD improvements
426
427 0.08112 2009-09-21 10:57:00 (UTC)
428         - Remove the recommends from Makefile.PL, DBIx::Class is not
429           supposed to have optional dependencies. ever.
430         - Mangle the DBIx/Class.pm POD to be more clear about
431           copyright and license
432         - Put back PG's multiple autoinc per table support, accidentally
433           dropped during the serial-autodetection rewrite
434         - Make sure ResultSetColumn does not depend on the (undefined)
435           return value of ->cursor->reset()
436         - Add single() to ResultSetColumn (same semantics as ResultSet)
437         - Make sure to turn off IDENTITY_INSERT after insert() on MSSQL
438           tables that needed it
439         - More informative exception on failing _resolve_relationship
440         - Allow undef/NULL as the sole grouping value in Ordered
441         - Fix unreported rollback exceptions in TxnScopeGuard
442         - Fix overly-eager left-join chain enforcing code
443         - Warn about using distinct with an existing group_by
444         - Warn about attempting to $rs->get_column a non-unique column
445           when has_many joins are added to resultset
446         - Refactor of the exception handling system (now everything is a
447           DBIx::Class::Exception object)
448
449 0.08111 2009-09-06 21:58:00 (UTC)
450         - The hashref to connection_info now accepts a 'dbh_maker'
451           coderef, allowing better intergration with Catalyst
452         - Fixed a complex prefetch + regular join regression introduced
453           in 0.08108
454         - Fixed insert_bulk rebless handling
455         - Fixed Storable roundtrip regression, and general serialization
456           cleanup
457         - SQLT related fixes:
458           - sqlt_type is now called on the correct storage object
459           - hooks can now see the correct producer_type (RT#47891)
460           - optional SQLT requirements for e.g. deploy() bumped to 0.11002
461         - Really fixed (and greatly cleaned up) postgresql autoinc sequence
462           autodetection
463         - Automatically detect MySQL v3 and use INNER JOIN instead of JOIN
464         - POD improvements (including RT#48769)
465         - Test suite tweaks (including fixes for recent CPANTS fails)
466         - Better support for MSSQL IDENTITY_INSERT ON
467
468 0.08109 2009-08-18 08:35:00 (UTC)
469         - Replication updates:
470           - Improved the replication tests so that they are more reliable
471             and accurate, and hopefully solve some cross platform issues.
472           - Bugfixes related to naming particular replicants in a
473             'force_pool' attribute.
474           - Lots of documentation updates, including a new Introduction.pod
475             file.
476           - Fixed the way we detect transaction to make this more reliable
477             and forward looking.
478           - Fixed some trouble with the way Moose Types are used.
479           - Made discard_chages/get_from_storage replication aware (they
480             now read from the master storage by default)
481         - Refactor of MSSQL storage drivers, with some new features:
482           - Support for placeholders for MSSQL via DBD::Sybase with proper
483             autodetection
484           - 'uniqueidentifier' support with auto newid()
485           - Dynamic cursor support and other MARS options for ODBC
486           - savepoints with auto_savepoint => 1
487         - Support for MSSQL 'money' type
488         - Support for 'smalldatetime' type used in MSSQL and Sybase for
489           InflateColumn::DateTime
490         - Support for Postgres 'timestamp without timezone' type in
491           InflateColumn::DateTime (RT#48389)
492         - Added new MySQL specific on_connect_call macro 'set_strict_mode'
493           (also known as make_mysql_not_suck_as_much)
494         - Multiple prefetch-related fixes:
495           - Adjust overly agressive subquery join-chain pruning
496           - Always preserve the outer join-chain - fixes numerous
497             problems with search_related chaining
498           - Deal with the distinct => 1 attribute properly when using
499             prefetch
500         - An extension of the select-hashref syntax, allowing labeling
501           SQL-side aliasing: select => [ { max => 'foo', -as => 'bar' } ]
502         - Massive optimization of the DBI storage layer - reduce the
503           amount of connected() ping-calls
504         - Some fixes of multi-create corner cases
505         - Multiple POD improvements
506         - Added exception when resultset is called without an argument
507         - Improved support for non-schema-qualified tables under
508           Postgres (fixed last_insert_id sequence name auto-detection)
509
510 0.08108 2009-07-05 23:15:00 (UTC)
511         - Fixed the has_many prefetch with limit/group deficiency -
512           it is now possible to select "top 5 commenters" while
513           prefetching all their comments
514         - New resultsed method count_rs, returns a ::ResultSetColumn
515           which in turn returns a single count value
516         - Even better support of count with limit
517         - New on_connect_call/on_disconnect_call functionality (check
518           POD of Storage::DBI)
519         - Automatic datetime handling environment/session setup for
520           Oracle via connect_call_datetime_setup()
521         - count/all on related left-joined empty resultsets now correctly
522           returns 0/()
523         - Fixed regression when both page and offset are specified on
524           a resultset
525         - Fixed HRI returning too many empty results on multilevel
526           nonexisting prefetch
527         - make_column_dirty() now overwrites the deflated value with an
528           inflated one if such exists
529         - Fixed set_$rel with where restriction deleting rows outside
530           the restriction
531         - populate() returns the created objects or an arrayref of the
532           created objects depending on scalar vs. list context
533         - Fixed find_related on 'single' relationships - the former
534           implementation would overspecify the WHERE condition, reporting
535           no related objects when there in fact is one
536         - SQL::Translator::Parser::DBIx::Class now attaches tables to the
537           central schema object in relationship dependency order
538         - Fixed regression in set_column() preventing sourceless object
539           manipulations
540         - Fixed a bug in search_related doubling a join if the original
541           $rs already joins/prefetches the same relation
542         - Storage::DBI::connected() improvements for Oracle and Sybase
543         - Fixed prefetch+incomplete select regression introduced in
544           0.08100
545         - MSSQL limit (TOP emulation) fixes and improvements
546
547 0.08107 2009-06-14 08:21:00 (UTC)
548         - Fix serialization regression introduced in 0.08103 (affects
549           Cursor::Cached)
550         - POD fixes
551         - Fixed incomplete ::Replicated debug output
552
553 0.08106 2009-06-11 21:42:00 (UTC)
554         - Switched SQLite storage driver to DateTime::Format::SQLite
555           (proper timezone handling)
556         - Fix more test problems
557
558 0.08105 2009-06-11 19:04:00 (UTC)
559         - Update of numeric columns now properly uses != to determine
560           dirtyness instead of the usual eq
561         - Fixes to IC::DT tests
562         - Fixed exception when undef_if_invalid and timezone are both set
563           on an invalid datetime column
564
565 0.08104 2009-06-10 13:38:00 (UTC)
566         - order_by now can take \[$sql, @bind] as in
567           order_by => { -desc => \['colA LIKE ?', 'somestring'] }
568         - SQL::Abstract errors are now properly croak()ed with the
569           correct trace
570         - populate() now properly reports the dataset slice in case of
571           an exception
572         - Fixed corner case when populate() erroneously falls back to
573           create()
574         - Work around braindead mysql when doing subquery counts on
575           resultsets containing identically named columns from several
576           tables
577         - Fixed m2m add_to_$rel to invoke find_or_create on the far
578           side of the relation, to avoid duplicates
579         - DBIC now properly handles empty inserts (invoking all default
580           values from the DB, normally via INSERT INTO tbl DEFAULT VALUES
581         - Fix find_or_new/create to stop returning random rows when
582           default value insert is requested (RT#28875)
583         - Make IC::DT extra warning state the column name too
584         - It is now possible to transparrently search() on columns
585           requiring DBI bind (i.e. PostgreSQL BLOB)
586         - as_query is now a Storage::DBI method, so custom cursors can
587           be seamlessly used
588         - Fix search_related regression introduced in 0.08103
589
590 0.08103 2009-05-26 19:50:00 (UTC)
591         - Multiple $resultset -> count/update/delete fixes. Now any
592           of these operations will succeed, regardless of the complexity
593           of $resultset. distinct, group_by, join, prefetch are all
594           supported with expected results
595         - Return value of $rs->delete is now the storage return value
596           and not 1 as it used to be
597         - don't pass SQL functions into GROUP BY
598         - Remove MultiDistinctEmulation.pm, effectively deprecating
599           { select => { distinct => [ qw/col1 col2/ ] } }
600         - Change ->count code to work correctly with DISTINCT (distinct => 1)
601           via GROUP BY
602         - Removed interpolation of bind vars for as_query - placeholders
603           are preserved and nested query bind variables are properly
604           merged in the correct order
605         - Refactor DBIx::Class::Storage::DBI::Sybase to automatically
606           load a subclass, namely Microsoft_SQL_Server.pm
607           (similar to DBIx::Class::Storage::DBI::ODBC)
608         - Refactor InflateColumn::DateTime to allow components to
609           circumvent DateTime parsing
610         - Support inflation of timestamp datatype
611         - Support BLOB and CLOB datatypes on Oracle
612         - Storage::DBI::Replicated::Balancer::Random:
613           added master_read_weight
614         - Storage::DBI::Replicated: storage opts from connect_info,
615           connect_info merging to replicants, hashref connect_info support,
616           improved trace output, other bug fixes/cleanups
617         - distinct => 1 with prefetch now groups by all columns
618         - on_connect_do accepts a single string equivalent to a one
619           element arrayref (RT#45159)
620         - DB2 limit + offset now works correctly
621         - Sybase now supports autoinc PKs (RT#40265)
622         - Prefetch on joins over duplicate relations now works
623           correctly (RT#28451)
624         - "timestamp with time zone" columns (for Pg) now get inflated with a
625           time zone information preserved
626         - MSSQL Top limit-emulation improvements (GROUP BY and subquery support)
627         - ResultSetColumn will not lose the joins infered from a parent
628           resultset prefetch
629
630 0.08102 2009-04-30 08:29:00 (UTC)
631         - Fixed two subtle bugs when using columns or select/as
632           paired with a join (limited prefetch)
633         - Fixed breakage of cdbi tests (RT#45551)
634         - Some POD improvements
635
636 0.08101 2009-04-27 09:45:00 (UTC)
637         - Fix +select, +as, +columns and include_columns being stripped
638           by $rs->get_column
639         - move load_optional_class from DBIx::Class::Componentised to
640           Class::C3::Componentised, bump dependency
641         - register_extra_source() now *really* fixed wrt subclassing
642         - Added missing POD descriptions (RT#45195)
643         - Fix insert() to not store_column() every present object column
644         - Multiple Makefile.PL fixes
645
646 0.08100 2009-04-19 11:39:35 (UTC)
647         - Todo out the register_extra_source test until after shipping
648
649 0.08099_08 2009-03-30 00:00:00 (UTC)
650         - Fixed taint mode with load_namespaces
651         - Putting IC::DateTime locale, timezone or floating_tz_ok attributes into
652           extra => {} has been deprecated. The new way is to put these things
653           directly into the columns definition
654         - Switched MI code to MRO::Compat
655         - Document db-side default_value caveats
656         - Search_like() now warns to indicate deprecation in 0.09.
657         - TxnScopeGuard left experimental state
658
659 0.08099_07 2009-02-27 02:00:00 (UTC)
660         - multi-create using find_or_create rather than _related for post-insert
661         - fix get_inflated_columns to check has_column_loaded
662         - Add DBIC_MULTICREATE_DEBUG env var (undocumented, quasi-internal)
663         - Fix up multi-create to:
664           - correctly propagate columns loaded during multi-insert of rels
665           - not try and insert things tagged on via new_related unless required
666         - Possible to set locale in IC::DateTime extra => {} config
667         - Calling the accessor of a belongs_to when the foreign_key
668           was NULL and the row was not stored would unexpectedly fail
669         - Split sql statements for deploy only if SQLT::Producer returned a scalar
670           containing all statements to be executed
671         - Add as_query() for ResultSet and ResultSetColumn. This makes subqueries
672           possible. See the Cookbook for details.
673         - Massive rewrite of Ordered to properly handle position constraints and
674           to make it more matpath-friendly
675         - deploy_statements called ddl_filename with the $version and $dir arguments
676           in the wrong order.
677         - columns/+columns attributes now support { as => select } hahsrefs
678         - support for views both in DBIC and via deploy() in SQLT
679
680 0.08099_06 2009-01-23 07:30:00 (UTC)
681         - Allow a scalarref to be supplied to the 'from' resultset attribute
682         - Classes submitted as result_class for a resultsource are now
683           automatically loaded via ensure_loaded()
684         - 'result_class' resultset attribute, identical to result_class()
685         - add 'undef_on_null_fk' option for relationship accessors of type 'single'.
686           This will prevent DBIC from querying the database if one or more of
687           the key columns IS NULL
688         - for 'belongs_to' rels, 'undef_on_null_fk' defaults to true.
689         - fixed scope unaware last_insert_id fetching for MSSQL
690           (http://msdn.microsoft.com/en-us/library/ms190315.aspx)
691         - an sqlt_deploy_hook can now be shared between result sources using
692           a configurable callback trigger
693         - new order_by => { -desc => 'colname' } syntax supported
694         - PG array datatype supported
695         - insert should use store_column, not set_column to avoid marking
696           clean just-stored values as dirty. New test for this
697         - regression test for source_name
698
699 0.08099_05 2008-10-30 21:30:00 (UTC)
700         - Rewrite of Storage::DBI::connect_info(), extended with an
701           additional argument format type
702         - InflateColumn::DateTime: add warning about floating timezone
703         - InflateColumn::DateTime: possible to enforce/skip inflation
704         - delete throws exception if passed arguments to prevent drunken mishaps.
705         - Fix storage to copy scalar conds before regexping to avoid
706           trying to modify a constant in odd edge cases
707         - Related resultsets on uninserted objects are now empty
708         - Fixed up related resultsets and multi-create
709         - Fixed superfluous connection in ODBC::_rebless
710         - Fixed undef PK for first insert in ODBC::Microsoft_SQL_Server
711         - Added virtual method to Versioned so a user can create upgrade
712           path across multiple versions (jgoulah)
713         - Better (and marginally faster) implementation of the HashRefInflator
714           hash construction algorithm
715         - Allow explicit specification of ON DELETE/ON UPDATE constraints
716           when using the SQLT parser
717
718 0.08099_04 2008-07-24 01:00:00
719         - Functionality to storage to enable a sub to be run without FK checks
720         - Fixed $schema->clone bug which caused clone and source to share
721           internal hash refs
722         - Added register_extra_source methods for additional sources
723         - Added datetime_undef_if_invalid for InflateColumn::DateTime to
724           return undef on invalid date/time values
725         - Added search_related_rs method to ResultSet
726         - add a make_column_dirty method to Row to force updates
727         - throw a clear exception when user tries multi-has_many prefetch
728         - SQLT parser prefixes index names with ${table}_idx_ to avoid clashes
729         - mark ResultSetManager as deprecated and undocument it
730         - pod fix (RT #32988)
731         - add Test::Exception to test requirements (RT #34256)
732         - make ash's build_requires/META.yml fixes work better
733         - is_deferable support on relations used by the SQL::Translator
734           parser
735         - Refactored DBIx::Class::Schema::Versioned
736         - Syntax errors from resultset components are now reported correctly
737         - sqltargs respected correctly in deploy et al.
738         - Added support for savepoints, and using them automatically in
739           nested transactions if auto_savepoint is set in connect_info.
740         - Changed naming scheme for constraints and keys in the sqlt parser;
741           names should now be consistent and collision-free.
742         - Improve handling of explicit key attr in ResultSet::find
743         - Add warnings for non-unique ResultSet::find queries
744         - Changed Storage::DBI::Replication to Storage::DBI::Replicated and
745           refactored support.
746         - By default now deploy/diff et al. will ignore constraint and index
747           names
748         - Add ResultSet::_is_deterministic_value, make new_result filter the
749           values passed to new to drop values that would generate invalid SQL.
750         - Use Sub::Name to name closures before installing them. Fixes
751           incompatibility with Moose method modifiers on generated methods.
752
753 0.08010 2008-03-01 10:30
754         - Fix t/94versioning.t so it passes with latest SQL::Translator
755
756 0.08009 2008-01-20 13:30
757         - Made search_rs smarter about when to preserve the cache to fix
758           mm prefetch usage
759         - Added Storage::DBI subclass for MSSQL over ODBC.
760         - Added freeze, thaw and dclone methods to Schema so that thawed
761           objects will get re-attached to the schema.
762         - Moved dbicadmin to JSON::Any wrapped JSON.pm for a sane API
763           (also fixes RT #32393)
764         - introduced DBIx::Class::set_inflated_columns
765         - DBIx::Class::Row::copy uses set_inflated_columns
766
767 0.08008 2007-11-16 14:30:00
768         - Fixed join merging bug (test from Zby)
769         - When adding relationships, it will throw an exception if you get the
770           foreign and self parts the wrong way round in the condition
771         - ResultSetColumn::func() now returns all results if called in list
772           context; this makes things like func('DISTINCT') work as expected
773         - Many-to-many relationships now warn if the utility methods would
774           clash
775         - InflateColumn::DateTime now accepts an extra parameter of timezone
776           to set timezone on the DT object (thanks Sergio Salvi)
777         - Added sqlt_deploy_hook to result classes so that indexes can be
778           added.
779         - Added startup checks to warn loudly if we appear to be running on
780           RedHat systems from perl-5.8.8-10 and up that have the bless/overload
781           patch applied (badly) which causes 2x -> 100x performance penalty.
782           (Jon Schutz)
783         - ResultSource::reverse_relationship_info can distinguish between
784           sources using the same table
785         - Row::insert will now not fall over if passed duplicate related objects
786         - Row::copy will not fall over if you have two relationships to the
787           same source with a unique constraint on it
788
789 0.08007 2007-09-04 19:36:00
790         - patch for Oracle datetime inflation (abram@arin.net)
791         - added on_disconnect_do
792         - on_connect_do and on_disconnect_do take coderefs and arrayrefs
793
794 0.08006 2007-08-12 15:12:00
795         - Move to using Class::C3::Componentised
796         - Remove warn statement from DBIx::Class::Row
797
798 0.08005 2007-08-06
799         - add timestamp fix re rt.cpan 26978 - no test yet but change
800           clearly should cause no regressions
801         - provide alias for related_resultset via local() so it's set
802           correctly at resultset construction time (fixes RestrictWithObject)
803         - fixes bind params in debug statements
804           (original test from abraxxa)
805         - fixed storage->connected fork bug
806           (test and fix from Radu Greab)
807         - add 1; to AccessorGroup.pm for stuff that still uses it
808         - refactor Statistics to create debugging filehandle to fix bug with
809           closed STDERR, update docs and modify Versioned to use Statistics
810           (original fix from diz)
811
812 0.08004 2007-08-06 19:00:00
813         - fix storage connect code to not trigger bug via auto-viv
814           (test from aherzog)
815         - fixup cursor_class to be an 'inherited' attr for per-package defaults
816         - add default_resultset_attributes entry to Schema
817         - optimisation in DBI::Cursor to check software_limit before falling
818           back to base Cursor->all
819         - fix bug with create_multi not inserting non-storage objects
820           (test and fix from davinchi)
821         - DBIx::Class::AccessorGroup made empty subclass of
822           Class::Accessor::Grouped
823         - fixed an ugly bug regarding $dbh->{AutoCommit} and transactions
824         - ensure_class_loaded handles non-classnames better.
825         - non-destructive hashref handling for connect_info options
826         - count no longer returns negative values after slice
827           (report and test from JOHANL)
828         - rebless before building datetime_parser
829           (patch from mattlaw / Matt Lawrence)
830
831 0.08003 2007-07-14 18:01:00
832         - improved populate bulk_insert mode
833         - fixed up multi_create to be more intelligent about PK<->PK rels
834         - fix many-many rels to not use set_columns
835         - Unmarked deploy as experimental since it isn't anymore
836         - Removed Cwd dep since it's not required and causes problems
837           with debian packaging
838         - Patch to fix ? in data for NoBindVars (from Tom Hukins)
839         - Restored mk_classaccessor method for compatibility
840         - Fixed group_by problem with oracle limit syntax
841         - Fixed attr merging problem
842         - Fixed $rs->get_column w/prefetch  problem
843
844 0.08002 2007-06-20 06:10:00
845         - add scope guard to Row::insert to ensure rollback gets called
846         - more heuristics in Row::insert to try and get insert order right
847         - eliminate vestigial code in PK::Auto
848         - more expressive DBI errors
849         - soften errors during deploy
850         - ensure_connected before txn_begin to catch stomping on transaction
851           depth
852         - new method "rethrow" for our exception objects
853
854 0.08001 2007-06-17 21:21:02
855         - Cleaned up on_connect handling for versioned
856         - removed DateTime use line from multi_create test
857         - hid DBIx::ContextualFetch::st override in CDBICompat
858
859 0.08000 2007-06-17 18:06:12
860         - Fixed DBIC_TRACE debug filehandles to set ->autoflush(1)
861         - Fixed circular dbh<->storage in HandleError with weakref
862
863 0.07999_06 2007-06-13 04:45:00
864         - tweaked Row.pm to make last_insert_id take multiple column names
865         - Fixed DBIC::Storage::DBI::Cursor::DESTROY bug that was
866           messing up exception handling
867         - added exception objects to eliminate stacktrace/Carp::Clan
868           output redundancy
869         - setting $ENV{DBIC_TRACE} defaults stacktrace on.
870         - added stacktrace option to Schema, makes throw_exception
871           use "confess"
872         - make database handles use throw_exception by default
873         - make database handles supplied by a coderef use our
874           standard HandleError/RaiseError/PrintError
875         - add "unsafe" connect_info option to suppress our setting
876           of HandleError/RaiseError/PrintError
877         - removed several redundant evals whose sole purpose was to
878           provide extra debugging info
879         - fixed page-within-page bug (reported by nilsonsfj)
880         - fixed rare bug when database is disconnected inbetween
881           "$dbh->prepare_cached" and "$sth->execute"
882
883 0.07999_05 2007-06-07 23:00:00
884         - Made source_name rw in ResultSource
885         - Fixed up SQL::Translator test/runtime dependencies
886         - Fixed t/60core.t in the absence of DateTime::Format::MySQL
887         - Test cleanup and doc note (ribasushi)
888
889 0.07999_04 2007-06-01 14:04:00
890         - pulled in Replication storage from branch and marked EXPERIMENTAL
891         - fixup to ensure join always LEFT after first LEFT join depthwise
892         - converted the vendor tests to use schema objects intead of schema
893           classes, made cleaned more reliable with END blocks
894         - versioning support via DBIx::Class::Schema::Versioned
895         - find/next now return undef rather than () on fail from Bernhard Graf
896         - rewritten collapse_result to fix prefetch
897         - moved populate to resultset
898         - added support for creation of related rows via insert and populate
899         - transaction support more robust now in the face of varying AutoCommit
900           and manual txn_begin usage
901         - unbreak back-compat for Row/ResultSet->new_result
902         - Added Oracle/WhereJoins.pm for Oracle >= 8 to support
903           Oracle <= 9i, and provide Oracle with a better join method for
904           later versions.  (I use the term better loosely.)
905         - The SQL::T parser class now respects a relationship attribute of
906           is_foreign_key_constrain to allow explicit control over wether or
907           not a foreign constraint is needed
908         - resultset_class/result_class now (again) auto loads the specified
909           class; requires Class::Accessor::Grouped 0.05002+
910         - added get_inflated_columns to Row
911         - %colinfo accessor and inflate_column now work together
912         - More documentation updates
913         - Error messages from ->deploy made more informative
914         - connect_info will now always return the arguments it was
915           originally given
916         - A few small efficiency improvements for load_classes
917           and compose_namespace
918
919 0.07006 2007-04-17 23:18:00
920         - Lots of documentation updates
921         - deploy now takes an optional 'source_names' parameter (dec)
922         - Quoting for for columns_info_for
923         - RT#25683 fixed (multiple open sths on DBD::Sybase)
924         - CDBI compat infers has_many from has_a (Schwern)
925         - Fix ddl_filename transformation (Carl Vincent)
926
927 0.07999_02 2007-01-25 20:11:00
928         - add support for binding BYTEA and similar parameters (w/Pg impl)
929         - add support to Ordered for multiple ordering columns
930         - mark DB.pm and compose_connection as deprecated
931         - switch tests to compose_namespace
932         - ResultClass::HashRefInflator added
933         - Changed row and rs objects to not have direct handle to a source,
934           instead a (schema,source_name) tuple of type ResultSourceHandle
935
936 0.07005 2007-01-10 18:36:00
937         - fixup changes file
938         - remove erroneous .orig files - oops
939
940 0.07004 2007-01-09 21:52:00
941         - fix find_related-based queries to correctly grep the unique key
942         - fix InflateColumn to inflate/deflate all refs but scalar refs
943
944 0.07003 2006-11-16 11:52:00
945         - fix for rt.cpan.org #22740 (use $^X instead of hardcoded "perl")
946         - Tweaks to resultset to allow inflate_result to return an array
947         - Fix UTF8Columns to work under Perl <= 5.8.0
948         - Fix up new_result in ResultSet to avoid alias-related bugs
949         - Made new/update/find handle 'single' rel accessor correctly
950         - Fix NoBindVars to be safer and handle non-true bind values
951         - Don't blow up if columns_info_for returns useless results
952         - Documentation updates
953
954 0.07999_01 2006-10-05 21:00:00
955         - add connect_info option "disable_statement_caching"
956         - create insert_bulk using execute_array, populate uses it
957         - added DBIx::Class::Schema::load_namespaces, alternative to
958           load_classes
959         - added source_info method for source-level metadata (kinda like
960           column_info)
961         - Some of ::Storage::DBI's code/docs moved to ::Storage
962         - DBIx::Class::Schema::txn_do code moved to ::Storage
963         - Storage::DBI now uses exceptions instead of ->ping/->{Active} checks
964         - Storage exceptions are thrown via the schema class's throw_exception
965         - DBIx::Class::Schema::throw_exception's behavior can be modified via
966           ->exception_action
967         - columns_info_for is deprecated, and no longer runs automatically.
968           You can make it work like before via
969           __PACKAGE__->column_info_from_storage(1) for now
970         - Replaced DBIx::Class::AccessorGroup and Class::Data::Accessor with
971           Class::Accessor::Grouped. Only user noticible change is to
972           table_class on ResultSourceProxy::Table (i.e. table objects in
973           schemas) and, resultset_class and result_class in ResultSource.
974           These accessors no longer automatically require the classes when
975           set.
976
977 0.07002 2006-09-14 21:17:32
978         - fix quote tests for recent versions of SQLite
979         - added reference implementation of Manual::Example
980         - backported column_info_from_storage accessor from -current, but
981         - fixed inflate_datetime.t tests/stringify under older Test::More
982         - minor fixes for many-to-many relationship helpers
983         - cleared up Relationship docs, and fixed some typos
984         - use ref instead of eval to check limit syntax (to avoid issues with
985           Devel::StackTrace)
986         - update ResultSet::_cond_for_update_delete to handle more complicated
987           queries
988         - bugfix to Oracle columns_info_for
989         - remove_columns now deletes columns from _columns
990
991 0.07001 2006-08-18 19:55:00
992         - add directory argument to deploy()
993         - support default aliases in many_to_many accessors.
994         - support for relationship attributes in many_to_many accessors.
995         - stop search_rs being destructive to attrs
996         - better error reporting when loading components
997         - UTF8Columns changed to use "utf8" instead of "Encode"
998         - restore automatic aliasing in ResultSet::find() on nonunique queries
999         - allow aliases in ResultSet::find() queries (in cases of relationships
1000           with prefetch)
1001         - pass $attrs to find from update_or_create so a specific key can be
1002           provided
1003         - remove anonymous blesses to avoid major speed hit on Fedora Core 5's
1004           Perl and possibly others; for more information see:
1005           https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=196836
1006         - fix a pathological prefetch case
1007         - table case fix for Oracle in columns_info_for
1008         - stopped search_rs deleting attributes from passed hash
1009
1010 0.07000 2006-07-23 02:30:00
1011         - supress warnings for possibly non-unique queries, since
1012           _is_unique_query doesn't infer properly in all cases
1013         - skip empty queries to eliminate spurious warnings on ->deploy
1014         - fixups to ORDER BY, tweaks to deepen some copies in ResultSet
1015         - fixup for RowNum limit syntax with functions
1016
1017 0.06999_07 2006-07-12 20:58:05
1018         - fix issue with from attr copying introduced in last release
1019
1020 0.06999_06 2006-07-12 17:16:55
1021         - documentation for new storage options, fix S::A::L hanging on to $dbh
1022         - substantial refactor of search_related code to fix alias numbering
1023         - don't generate partial unique keys in ResultSet::find() when a table
1024           has more than one unique constraint which share a column and only one
1025           is satisfied
1026         - cleanup UTF8Columns and make more efficient
1027         - rename DBIX_CLASS_STORAGE_DBI_DEBUG to DBIC_TRACE (with compat)
1028         - rename _parent_rs to _parent_source in ResultSet
1029         - new FAQ.pod!
1030
1031 0.06999_05 2006-07-04 14:40:01
1032         - fix issue with incorrect $rs->{attrs}{alias}
1033         - fix subclassing issue with source_name
1034         - tweak quotes test to output text on failure
1035         - fix Schema->txn_do to not fail as a classmethod
1036
1037 0.06999_04 2006-06-29 20:18:47
1038         - disable cdbi-t/02-Film.t warning tests under AS perl
1039         - fixups to MySQL tests (aka "work round mysql being retarded")
1040         - compat tweaks for Storage debug logging
1041
1042 0.06999_03 2006-06-26 21:04:44
1043         - various documentation improvements
1044         - fixes to pass test suite on Windows
1045         - rewrote and cleaned up SQL::Translator tests
1046         - changed relationship helpers to only call ensure_class_loaded when the
1047           join condition is inferred
1048         - rewrote many_to_many implementation, now provides helpers for adding
1049           and deleting objects without dealing with the link table
1050         - reworked InflateColumn implementation to lazily deflate where
1051           possible; now handles passing an inflated object to new()
1052         - changed join merging to not create a rel_2 alias when adding a join
1053           that already exists in a parent resultset
1054         - Storage::DBI::deployment_statements now calls ensure_connected
1055           if it isn't passed a type
1056         - fixed Componentized::ensure_class_loaded
1057         - InflateColumn::DateTime supports date as well as datetime
1058         - split Storage::DBI::MSSQL into MSSQL and Sybase::MSSQL
1059         - fixed wrong debugging hook call in Storage::DBI
1060         - set connect_info properly before setting any ->sql_maker things
1061
1062 0.06999_02 2006-06-09 23:58:33
1063         - Fixed up POD::Coverage tests, filled in some POD holes
1064         - Added a warning for incorrect component order in load_components
1065         - Fixed resultset bugs to do with related searches
1066         - added code and tests for Componentized::ensure_class_found and
1067           load_optional_class
1068         - NoBindVars + Sybase + MSSQL stuff
1069         - only rebless S::DBI if it is still S::DBI and not a subclass
1070         - Added `use' statement for DBD::Pg in Storage::DBI::Pg
1071         - stopped test relying on order of unordered search
1072         - bugfix for join-types in nested joins using the from attribute
1073         - obscure prefetch problem fixed
1074         - tightened up deep search_related
1075         - Fixed 'DBIx/Class/DB.pm did not return a true value' error
1076         - Revert change to test for deprecated find usage and swallow warnings
1077         - Slight wording change to new_related() POD
1078         - new specific test for connect_info coderefs
1079         - POD clarification and content bugfixing + a few code formatting fixes
1080         - POD::Coverage additions
1081         - fixed debugfh
1082         - Fix column_info stomping
1083
1084 0.06999_01 2006-05-28 17:19:30
1085         - add automatic naming of unique constraints
1086         - marked DB.pm as deprecated and noted it will be removed by 1.0
1087         - add ResultSetColumn
1088         - refactor ResultSet code to resolve attrs as late as possible
1089         - merge prefetch attrs into join attrs
1090         - add +select and +as attributes to ResultSet
1091         - added InflateColumn::DateTime component
1092         - refactor debugging to allow for profiling using Storage::Statistics
1093         - removed Data::UUID from deps, made other optionals required
1094         - modified SQLT parser to skip dupe table names
1095         - added remove_column(s) to ResultSource/ResultSourceProxy
1096         - added add_column alias to ResultSourceProxy
1097         - added source_name to ResultSource
1098         - load_classes now uses source_name and sets it if necessary
1099         - add update_or_create_related to Relationship::Base
1100         - add find_or_new to ResultSet/ResultSetProxy and find_or_new_related
1101           to Relationship::Base
1102         - add accessors for unique constraint names and coulums to
1103           ResultSource/ResultSourceProxy
1104         - rework ResultSet::find() to search unique constraints
1105         - CDBICompat: modify retrieve to fix column casing when ColumnCase is
1106           loaded
1107         - CDBICompat: override find_or_create to fix column casing when
1108           ColumnCase is loaded
1109         - reorganized and simplified tests
1110         - added Ordered
1111         - added the ability to set on_connect_do and the various sql_maker
1112           options as part of Storage::DBI's connect_info.
1113
1114 0.06003 2006-05-19 15:37:30
1115         - make find_or_create_related check defined() instead of truth
1116         - don't unnecessarily fetch rels for cascade_update
1117         - don't set_columns explicitly in update_or_create; instead use
1118           update($hashref) so InflateColumn works
1119         - fix for has_many prefetch with 0 related rows
1120         - make limit error if rows => 0
1121         - added memory cycle tests and a long-needed weaken call
1122
1123 0.06002 2006-04-20 00:42:41
1124         - fix set_from_related to accept undef
1125         - fix to Dumper-induced hash iteration bug
1126         - fix to copy() with non-composed resultsource
1127         - fix to ->search without args to clone rs but maintain cache
1128         - grab $self->dbh once per function in Storage::DBI
1129         - nuke ResultSource caching of ->resultset for consistency reasons
1130         - fix for -and conditions when updating or deleting on a ResultSet
1131
1132 0.06001
1133         - Added fix for quoting with single table
1134         - Substantial fixes and improvements to deploy
1135         - slice now uses search directly
1136         - fixes for update() on resultset
1137         - bugfix to Cursor to avoid error during DESTROY
1138         - transaction DBI operations now in debug trace output
1139
1140 0.06000 2006-03-25 18:03:46
1141         - Lots of documentation improvements
1142         - Minor tweak to related_resultset to prevent it storing a searched rs
1143         - Fixup to columns_info_for when database returns type(size)
1144         - Made do_txn respect void context (on the off-chance somebody cares)
1145         - Fix exception text for nonexistent key in ResultSet::find()
1146
1147 0.05999_04 2006-03-18 19:20:49
1148         - Fix for delete on full-table resultsets
1149         - Removed caching on count() and added _count for pager()
1150         - ->connection does nothing if ->storage defined and no args
1151           (and hence ->connect acts like ->clone under the same conditions)
1152         - Storage::DBI throws better exception if no connect info
1153         - columns_info_for made more robust / informative
1154         - ithreads compat added, fork compat improved
1155         - weaken result_source in all resultsets
1156         - Make pg seq extractor less sensitive.
1157
1158 0.05999_03 2006-03-14 01:58:10
1159         - has_many prefetch fixes
1160         - deploy now adds drop statements before creates
1161         - deploy outputs debugging statements if DBIX_CLASS_STORAGE_DBI_DEBUG
1162             is set
1163
1164 0.05999_02 2006-03-10 13:31:37
1165         - remove test dep on YAML
1166         - additional speed tweaks for C3
1167         - allow scalarefs passed to order_by to go straight through to SQL
1168         - renamed insert_or_update to update_or_insert (with compat alias)
1169         - hidden lots of packages from the PAUSE Indexer
1170
1171 0.05999_01 2006-03-09 18:31:44
1172         - renamed cols attribute to columns (cols still supported)
1173         - added has_column_loaded to Row
1174         - Storage::DBI connect_info supports coderef returning dbh as 1st arg
1175         - load_components() doesn't prepend base when comp. prefixed with +
1176         - $schema->deploy
1177         - HAVING support
1178         - prefetch for has_many
1179         - cache attr for resultsets
1180         - PK::Auto::* no longer required since Storage::DBI::* handle auto-inc
1181         - minor tweak to tests for join edge case
1182         - added cascade_copy relationship attribute
1183           (sponsored by Airspace Software, http://www.airspace.co.uk/)
1184         - clean up set_from_related
1185         - made copy() automatically null out auto-inc columns
1186         - added txn_do() method to Schema, which allows a coderef to be
1187           executed atomically
1188
1189 0.05007 2006-02-24 00:59:00
1190         - tweak to Componentised for Class::C3 0.11
1191         - fixes for auto-inc under MSSQL
1192
1193 0.05006 2006-02-17 15:32:40
1194         - storage fix for fork() and workaround for Apache::DBI
1195         - made update(\%hash) work on row as well as rs
1196         - another fix for count with scalar group_by
1197         - remove dependency on Module::Find in 40resultsetmanager.t (RT #17598)
1198
1199 0.05005 2006-02-13 21:24:51
1200         - remove build dependency on version.pm
1201
1202 0.05004 2006-02-13 20:59:00
1203         - allow specification of related columns via cols attr when primary
1204           keys of the related table are not fetched
1205         - fix count for group_by as scalar
1206         - add horrific fix to make Oracle's retarded limit syntax work
1207         - remove Carp require
1208         - changed UUIDColumns to use new UUIDMaker classes for uuid creation
1209         using whatever module may be available
1210
1211 0.05003 2006-02-08 17:50:20
1212         - add component_class accessors and use them for *_class
1213         - small fixes to Serialize and ResultSetManager
1214         - rollback on disconnect, and disconnect on DESTROY
1215
1216 0.05002 2006-02-06 12:12:03
1217         - Added recommends for Class::Inspector
1218         - Added skip_all to t/40resultsetmanager.t if no Class::Inspector
1219         available
1220
1221 0.05001 2006-02-05 15:28:10
1222         - debug output now prints NULL for undef params
1223         - multi-step prefetch along the same rel (e.g. for trees) now works
1224         - added multi-join (join => [ 'foo', 'foo' ]), aliases second to foo_2
1225         - hack PK::Auto::Pg for "table" names referencing a schema
1226         - find() with attributes works
1227         - added experimental Serialize and ResultSetManager components
1228         - added code attribute recording to DBIx::Class
1229         - fix to find() for complex resultsets
1230         - added of $storage->debugcb(sub { ... })
1231         - added $source->resultset_attributes accessor
1232         - added include_columns rs attr
1233
1234 0.05000 2006-02-01 16:48:30
1235         - assorted doc fixes
1236         - remove ObjectCache, not yet working in 0.05
1237         - let many_to_many rels have attrs
1238         - fix ID method in PK.pm to be saner for new internals
1239         - fix t/30dbicplain.t to use ::Schema instead of
1240           Catalyst::Model::DBIC::Plain
1241
1242 0.04999_06 2006-01-28 21:20:32
1243         - fix Storage/DBI (tried to load deprecated ::Exception component)
1244
1245 0.04999_05 2006-01-28 20:13:52
1246         - count will now work for grouped resultsets
1247         - added accessor => option to column_info to specify accessor name
1248         - added $schema->populate to load test data (similar to AR fixtures)
1249         - removed cdbi-t dependencies, only run tests if installed
1250         - Removed DBIx::Class::Exception
1251         - unified throw_exception stuff, using Carp::Clan
1252         - report query when sth generation fails.
1253         - multi-step prefetch!
1254         - inheritance fixes
1255         - test tweaks
1256
1257 0.04999_04 2006-01-24 21:48:21
1258         - more documentation improvements
1259         - add columns_info_for for vendor-specific column info (Zbigniew
1260         Lukasiak)
1261         - add SQL::Translator::Producer for DBIx::Class table classes (Jess
1262         Robinson)
1263         - add unique constraint declaration (Daniel Westermann-Clark)
1264         - add new update_or_create method (Daniel Westermann-Clark)
1265         - rename ResultSetInstance class to ResultSetProxy, ResultSourceInstance
1266           to ResultSourceProxy, and TableInstance to ResultSourceProxy::Table
1267         - minor fixes to UUIDColumns
1268         - add debugfh method and ENV magic for tracing SQL (Nigel Metheringham)
1269
1270 0.04999_03 2006-01-20 06:05:27
1271         - imported Jess Robinson's SQL::Translator::Parser::DBIx::Class
1272         - lots of internals cleanup to eliminate result_source_instance
1273         requirement
1274         - added register_column and register_relationship class APIs
1275         - made Storage::DBI use prepare_cached safely (thanks to Tim Bunce)
1276         - many documentation improvements (thanks guys!)
1277         - added ->connection, ->connect, ->register_source and ->clone schema
1278         methods
1279         - Use croak instead of die for user errors.
1280
1281 0.04999_02 2006-01-14 07:17:35
1282         - Schema is now self-contained; no requirement for co-operation
1283         - add_relationship, relationships, relationship_info, has_relationship
1284         - relationship handling on ResultSource
1285         - all table handling now in Table.pm / ResultSource.pm
1286         - added GROUP BY and DISTINCT support
1287         - hacked around SQL::Abstract::Limit some more in DBIC::SQL::Abstract
1288           (this may have fixed complex quoting)
1289         - moved inflation to inflate_result in Row.pm
1290         - added $rs->search_related
1291         - split compose_namespace out of compose_connection in Schema
1292         - ResultSet now handles find
1293         - various *_related methods are now ->search_related->*
1294         - added new_result to ResultSet
1295
1296 0.04999_01 2005-12-27 03:33:42
1297         - search and related methods moved to ResultSet
1298         - select and as added to ResultSet attrs
1299         - added DBIx::Class::Table and TableInstance for table-per-class
1300         - added DBIx::Class::ResultSetInstance which handles proxying
1301           search etc. as a superclass of DBIx::Class::DB
1302         - assorted test and code cleanup work
1303
1304 0.04001 2005-12-13 22:00:00
1305         - Fix so set_inflated_column calls set_column
1306         - Syntax errors in relationship classes are now reported
1307         - Better error detection in set_primary_key and columns methods
1308         - Documentation improvements
1309         - Better transaction support with txn_* methods
1310         - belongs_to now works when $cond is a string
1311         - PK::Auto::Pg updated, only tries primary keys instead of all cols
1312
1313 0.04 2005-11-26
1314         - Moved get_simple and set_simple into AccessorGroup
1315         - Made 'new' die if given invalid columns
1316         - Added has_column and column_info to Table.pm
1317         - Refactored away from direct use of _columns and _primaries
1318         - Switched from NEXT to Class::C3
1319
1320 0.03004
1321         - Added an || '' to the CDBICompat stringify to avoid null warnings
1322         - Updated name section for manual pods
1323 0.03003 2005-11-03 17:00:00
1324         - POD fixes.
1325         - Changed use to require in Relationship/Base to avoid import.
1326
1327 0.03002 2005-10-20 22:35:00
1328         - Minor bugfix to new (Row.pm)
1329         - Schema doesn't die if it can't load a class (Schema.pm)
1330         - New UUID columns plugin (UUIDColumns.pm)
1331         - Documentation improvements.
1332
1333 0.03001 2005-09-23 14:00:00
1334         - Fixes to relationship helpers
1335         - IMPORTANT: prefetch/schema combination bug fix
1336
1337 0.03    2005-09-19 19:35:00
1338         - Paging support
1339         - Join support on search
1340         - Prefetch support on search
1341
1342 0.02    2005-08-12 18:00:00
1343         - Test fixes.
1344         - Performance improvements.
1345         - Oracle primary key support.
1346         - MS-SQL primary key support.
1347         - SQL::Abstract::Limit integration for database-agnostic limiting.
1348
1349 0.01    2005-08-08 17:10:00
1350         - initial release
1351