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