update Changes
[dbsrgits/DBIx-Class.git] / Changes
1 Revision history for DBIx::Class
2
3         - Fixed t/60core.t in the absence of DateTime::Format::MySQL
4
5 0.07999_04 2007-06-01 14:04:00
6         - pulled in Replication storage from branch and marked EXPERIMENTAL
7         - fixup to ensure join always LEFT after first LEFT join depthwise
8         - converted the vendor tests to use schema objects intead of schema
9           classes, made cleaned more reliable with END blocks
10         - versioning support via DBIx::Class::Schema::Versioned
11         - find/next now return undef rather than () on fail from Bernhard Graf
12         - rewritten collapse_result to fix prefetch
13         - moved populate to resultset
14         - added support for creation of related rows via insert and populate
15         - transaction support more robust now in the face of varying AutoCommit
16           and manual txn_begin usage
17         - unbreak back-compat for Row/ResultSet->new_result
18         - Added Oracle/WhereJoins.pm for Oracle >= 8 to support
19           Oracle <= 9i, and provide Oracle with a better join method for
20           later versions.  (I use the term better loosely.)
21         - The SQL::T parser class now respects a relationship attribute of
22           is_foreign_key_constrain to allow explicit control over wether or
23           not a foreign constraint is needed
24         - resultset_class/result_class now (again) auto loads the specified
25           class; requires Class::Accessor::Grouped 0.05002+
26         - added get_inflated_columns to Row
27         - %colinfo accessor and inflate_column now work together
28         - More documentation updates
29         - Error messages from ->deploy made more informative
30         - connect_info will now always return the arguments it was
31           originally given
32         - A few small efficiency improvements for load_classes
33           and compose_namespace
34
35 0.07006 2007-04-17 23:18:00
36         - Lots of documentation updates
37         - deploy now takes an optional 'source_names' parameter (dec)
38         - Quoting for for columns_info_for
39         - RT#25683 fixed (multiple open sths on DBD::Sybase)
40         - CDBI compat infers has_many from has_a (Schwern)
41         - Fix ddl_filename transformation (Carl Vincent)
42
43 0.07999_02 2007-01-25 20:11:00
44         - add support for binding BYTEA and similar parameters (w/Pg impl)
45         - add support to Ordered for multiple ordering columns
46         - mark DB.pm and compose_connection as deprecated
47         - switch tests to compose_namespace
48         - ResltClass::HashRefInflator added
49         - Changed row and rs objects to not have direct handle to a source,
50           instead a (schema,source_name) tuple of type ResultSourceHandle
51
52 0.07005 2007-01-10 18:36:00
53         - fixup changes file
54         - remove erroneous .orig files - oops
55
56 0.07004 2007-01-09 21:52:00
57         - fix find_related-based queries to correctly grep the unique key
58         - fix InflateColumn to inflate/deflate all refs but scalar refs
59
60 0.07003 2006-11-16 11:52:00
61         - fix for rt.cpan.org #22740 (use $^X instead of hardcoded "perl")
62         - Tweaks to resultset to allow inflate_result to return an array
63         - Fix UTF8Columns to work under Perl <= 5.8.0
64         - Fix up new_result in ResultSet to avoid alias-related bugs
65         - Made new/update/find handle 'single' rel accessor correctly
66         - Fix NoBindVars to be safer and handle non-true bind values
67         - Don't blow up if columns_info_for returns useless results
68         - Documentation updates
69
70 0.07999_01 2006-10-05 21:00:00
71         - add connect_info option "disable_statement_caching"
72         - create insert_bulk using execute_array, populate uses it
73         - added DBIx::Class::Schema::load_namespaces, alternative to
74           load_classes
75         - added source_info method for source-level metadata (kinda like
76           column_info)
77         - Some of ::Storage::DBI's code/docs moved to ::Storage
78         - DBIx::Class::Schema::txn_do code moved to ::Storage
79         - Storage::DBI now uses exceptions instead of ->ping/->{Active} checks
80         - Storage exceptions are thrown via the schema class's throw_exception
81         - DBIx::Class::Schema::throw_exception's behavior can be modified via
82           ->exception_action
83         - columns_info_for is deprecated, and no longer runs automatically.
84           You can make it work like before via
85           __PACKAGE__->column_info_from_storage(1) for now
86         - Replaced DBIx::Class::AccessorGroup and Class::Data::Accessor with
87           Class::Accessor::Grouped. Only user noticible change is to
88           table_class on ResultSourceProxy::Table (i.e. table objects in
89           schemas) and, resultset_class and result_class in ResultSource.
90           These accessors no longer automatically require the classes when
91           set.
92
93 0.07002 2006-09-14 21:17:32
94         - fix quote tests for recent versions of SQLite
95         - added reference implementation of Manual::Example
96         - backported column_info_from_storage accessor from -current, but
97         - fixed inflate_datetime.t tests/stringify under older Test::More
98         - minor fixes for many-to-many relationship helpers
99         - cleared up Relationship docs, and fixed some typos
100         - use ref instead of eval to check limit syntax (to avoid issues with
101           Devel::StackTrace)
102         - update ResultSet::_cond_for_update_delete to handle more complicated
103           queries
104         - bugfix to Oracle columns_info_for
105         - remove_columns now deletes columns from _columns
106
107 0.07001 2006-08-18 19:55:00
108         - add directory argument to deploy()
109         - support default aliases in many_to_many accessors.
110         - support for relationship attributes in many_to_many accessors.
111         - stop search_rs being destructive to attrs
112         - better error reporting when loading components
113         - UTF8Columns changed to use "utf8" instead of "Encode"
114         - restore automatic aliasing in ResultSet::find() on nonunique queries
115         - allow aliases in ResultSet::find() queries (in cases of relationships
116           with prefetch)
117         - pass $attrs to find from update_or_create so a specific key can be
118           provided
119         - remove anonymous blesses to avoid major speed hit on Fedora Core 5's
120           Perl and possibly others; for more information see:
121           https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=196836
122         - fix a pathological prefetch case
123         - table case fix for Oracle in columns_info_for
124         - stopped search_rs deleting attributes from passed hash
125
126 0.07000 2006-07-23 02:30:00
127         - supress warnings for possibly non-unique queries, since
128           _is_unique_query doesn't infer properly in all cases
129         - skip empty queries to eliminate spurious warnings on ->deploy
130         - fixups to ORDER BY, tweaks to deepen some copies in ResultSet
131         - fixup for RowNum limit syntax with functions
132
133 0.06999_07 2006-07-12 20:58:05
134         - fix issue with from attr copying introduced in last release
135
136 0.06999_06 2006-07-12 17:16:55
137         - documentation for new storage options, fix S::A::L hanging on to $dbh
138         - substantial refactor of search_related code to fix alias numbering
139         - don't generate partial unique keys in ResultSet::find() when a table
140           has more than one unique constraint which share a column and only one
141           is satisfied
142         - cleanup UTF8Columns and make more efficient
143         - rename DBIX_CLASS_STORAGE_DBI_DEBUG to DBIC_TRACE (with compat)
144         - rename _parent_rs to _parent_source in ResultSet
145         - new FAQ.pod!
146
147 0.06999_05 2006-07-04 14:40:01
148         - fix issue with incorrect $rs->{attrs}{alias}
149         - fix subclassing issue with source_name
150         - tweak quotes test to output text on failure
151         - fix Schema->txn_do to not fail as a classmethod
152
153 0.06999_04 2006-06-29 20:18:47
154         - disable cdbi-t/02-Film.t warning tests under AS perl
155         - fixups to MySQL tests (aka "work round mysql being retarded")
156         - compat tweaks for Storage debug logging
157
158 0.06999_03 2006-06-26 21:04:44
159         - various documentation improvements
160         - fixes to pass test suite on Windows
161         - rewrote and cleaned up SQL::Translator tests
162         - changed relationship helpers to only call ensure_class_loaded when the
163           join condition is inferred
164         - rewrote many_to_many implementation, now provides helpers for adding
165           and deleting objects without dealing with the link table
166         - reworked InflateColumn implementation to lazily deflate where
167           possible; now handles passing an inflated object to new()
168         - changed join merging to not create a rel_2 alias when adding a join
169           that already exists in a parent resultset
170         - Storage::DBI::deployment_statements now calls ensure_connected
171           if it isn't passed a type
172         - fixed Componentized::ensure_class_loaded
173         - InflateColumn::DateTime supports date as well as datetime
174         - split Storage::DBI::MSSQL into MSSQL and Sybase::MSSQL
175         - fixed wrong debugging hook call in Storage::DBI
176         - set connect_info properly before setting any ->sql_maker things
177
178 0.06999_02 2006-06-09 23:58:33
179         - Fixed up POD::Coverage tests, filled in some POD holes
180         - Added a warning for incorrect component order in load_components
181         - Fixed resultset bugs to do with related searches
182         - added code and tests for Componentized::ensure_class_found and
183           load_optional_class
184         - NoBindVars + Sybase + MSSQL stuff
185         - only rebless S::DBI if it is still S::DBI and not a subclass
186         - Added `use' statement for DBD::Pg in Storage::DBI::Pg
187         - stopped test relying on order of unordered search
188         - bugfix for join-types in nested joins using the from attribute
189         - obscure prefetch problem fixed
190         - tightened up deep search_related
191         - Fixed 'DBIx/Class/DB.pm did not return a true value' error
192         - Revert change to test for deprecated find usage and swallow warnings
193         - Slight wording change to new_related() POD
194         - new specific test for connect_info coderefs
195         - POD clarification and content bugfixing + a few code formatting fixes
196         - POD::Coverage additions
197         - fixed debugfh
198         - Fix column_info stomping
199
200 0.06999_01 2006-05-28 17:19:30
201         - add automatic naming of unique constraints
202         - marked DB.pm as deprecated and noted it will be removed by 1.0
203         - add ResultSetColumn
204         - refactor ResultSet code to resolve attrs as late as possible
205         - merge prefetch attrs into join attrs
206         - add +select and +as attributes to ResultSet
207         - added InflateColumn::DateTime component
208         - refactor debugging to allow for profiling using Storage::Statistics
209         - removed Data::UUID from deps, made other optionals required
210         - modified SQLT parser to skip dupe table names
211         - added remove_column(s) to ResultSource/ResultSourceProxy
212         - added add_column alias to ResultSourceProxy
213         - added source_name to ResultSource
214         - load_classes now uses source_name and sets it if necessary
215         - add update_or_create_related to Relationship::Base
216         - add find_or_new to ResultSet/ResultSetProxy and find_or_new_related
217           to Relationship::Base
218         - add accessors for unique constraint names and coulums to
219           ResultSource/ResultSourceProxy
220         - rework ResultSet::find() to search unique constraints
221         - CDBICompat: modify retrieve to fix column casing when ColumnCase is
222           loaded
223         - CDBICompat: override find_or_create to fix column casing when
224           ColumnCase is loaded
225         - reorganized and simplified tests
226         - added Ordered
227         - added the ability to set on_connect_do and the various sql_maker
228           options as part of Storage::DBI's connect_info.
229
230 0.06003 2006-05-19 15:37:30
231         - make find_or_create_related check defined() instead of truth
232         - don't unnecessarily fetch rels for cascade_update
233         - don't set_columns explicitly in update_or_create; instead use
234           update($hashref) so InflateColumn works
235         - fix for has_many prefetch with 0 related rows
236         - make limit error if rows => 0
237         - added memory cycle tests and a long-needed weaken call
238
239 0.06002 2006-04-20 00:42:41
240         - fix set_from_related to accept undef
241         - fix to Dumper-induced hash iteration bug
242         - fix to copy() with non-composed resultsource
243         - fix to ->search without args to clone rs but maintain cache
244         - grab $self->dbh once per function in Storage::DBI
245         - nuke ResultSource caching of ->resultset for consistency reasons
246         - fix for -and conditions when updating or deleting on a ResultSet
247
248 0.06001
249         - Added fix for quoting with single table
250         - Substantial fixes and improvements to deploy
251         - slice now uses search directly
252         - fixes for update() on resultset
253         - bugfix to Cursor to avoid error during DESTROY
254         - transaction DBI operations now in debug trace output
255
256 0.06000 2006-03-25 18:03:46
257         - Lots of documentation improvements
258         - Minor tweak to related_resultset to prevent it storing a searched rs
259         - Fixup to columns_info_for when database returns type(size)
260         - Made do_txn respect void context (on the off-chance somebody cares)
261         - Fix exception text for nonexistent key in ResultSet::find()
262
263 0.05999_04 2006-03-18 19:20:49
264         - Fix for delete on full-table resultsets
265         - Removed caching on count() and added _count for pager()
266         - ->connection does nothing if ->storage defined and no args
267           (and hence ->connect acts like ->clone under the same conditions)
268         - Storage::DBI throws better exception if no connect info
269         - columns_info_for made more robust / informative
270         - ithreads compat added, fork compat improved
271         - weaken result_source in all resultsets
272         - Make pg seq extractor less sensitive.
273
274 0.05999_03 2006-03-14 01:58:10
275         - has_many prefetch fixes
276         - deploy now adds drop statements before creates
277         - deploy outputs debugging statements if DBIX_CLASS_STORAGE_DBI_DEBUG
278             is set
279
280 0.05999_02 2006-03-10 13:31:37
281         - remove test dep on YAML
282         - additional speed tweaks for C3
283         - allow scalarefs passed to order_by to go straight through to SQL
284         - renamed insert_or_update to update_or_insert (with compat alias)
285         - hidden lots of packages from the PAUSE Indexer
286
287 0.05999_01 2006-03-09 18:31:44
288         - renamed cols attribute to columns (cols still supported)
289         - added has_column_loaded to Row
290         - Storage::DBI connect_info supports coderef returning dbh as 1st arg
291         - load_components() doesn't prepend base when comp. prefixed with +
292         - $schema->deploy
293         - HAVING support
294         - prefetch for has_many
295         - cache attr for resultsets
296         - PK::Auto::* no longer required since Storage::DBI::* handle auto-inc
297         - minor tweak to tests for join edge case
298         - added cascade_copy relationship attribute
299           (sponsored by Airspace Software, http://www.airspace.co.uk/)
300         - clean up set_from_related
301         - made copy() automatically null out auto-inc columns
302         - added txn_do() method to Schema, which allows a coderef to be
303           executed atomically
304
305 0.05007 2006-02-24 00:59:00
306         - tweak to Componentised for Class::C3 0.11
307         - fixes for auto-inc under MSSQL
308
309 0.05006 2006-02-17 15:32:40
310         - storage fix for fork() and workaround for Apache::DBI
311         - made update(\%hash) work on row as well as rs
312         - another fix for count with scalar group_by
313         - remove dependency on Module::Find in 40resultsetmanager.t (RT #17598)
314
315 0.05005 2006-02-13 21:24:51
316         - remove build dependency on version.pm
317
318 0.05004 2006-02-13 20:59:00
319         - allow specification of related columns via cols attr when primary
320           keys of the related table are not fetched
321         - fix count for group_by as scalar
322         - add horrific fix to make Oracle's retarded limit syntax work
323         - remove Carp require
324         - changed UUIDColumns to use new UUIDMaker classes for uuid creation
325         using whatever module may be available
326
327 0.05003 2006-02-08 17:50:20
328         - add component_class accessors and use them for *_class
329         - small fixes to Serialize and ResultSetManager
330         - rollback on disconnect, and disconnect on DESTROY
331
332 0.05002 2006-02-06 12:12:03
333         - Added recommends for Class::Inspector
334         - Added skip_all to t/40resultsetmanager.t if no Class::Inspector
335         available
336
337 0.05001 2006-02-05 15:28:10
338         - debug output now prints NULL for undef params
339         - multi-step prefetch along the same rel (e.g. for trees) now works
340         - added multi-join (join => [ 'foo', 'foo' ]), aliases second to foo_2
341         - hack PK::Auto::Pg for "table" names referencing a schema
342         - find() with attributes works
343         - added experimental Serialize and ResultSetManager components
344         - added code attribute recording to DBIx::Class
345         - fix to find() for complex resultsets
346         - added of $storage->debugcb(sub { ... })
347         - added $source->resultset_attributes accessor
348         - added include_columns rs attr
349
350 0.05000 2006-02-01 16:48:30
351         - assorted doc fixes
352         - remove ObjectCache, not yet working in 0.05
353         - let many_to_many rels have attrs
354         - fix ID method in PK.pm to be saner for new internals
355         - fix t/30dbicplain.t to use ::Schema instead of
356           Catalyst::Model::DBIC::Plain
357
358 0.04999_06 2006-01-28 21:20:32
359         - fix Storage/DBI (tried to load deprecated ::Exception component)
360
361 0.04999_05 2006-01-28 20:13:52
362         - count will now work for grouped resultsets
363         - added accessor => option to column_info to specify accessor name
364         - added $schema->populate to load test data (similar to AR fixtures)
365         - removed cdbi-t dependencies, only run tests if installed
366         - Removed DBIx::Class::Exception
367         - unified throw_exception stuff, using Carp::Clan
368         - report query when sth generation fails.
369         - multi-step prefetch!
370         - inheritance fixes
371         - test tweaks
372
373 0.04999_04 2006-01-24 21:48:21
374         - more documentation improvements
375         - add columns_info_for for vendor-specific column info (Zbigniew
376         Lukasiak)
377         - add SQL::Translator::Producer for DBIx::Class table classes (Jess
378         Robinson)
379         - add unique constraint declaration (Daniel Westermann-Clark)
380         - add new update_or_create method (Daniel Westermann-Clark)
381         - rename ResultSetInstance class to ResultSetProxy, ResultSourceInstance
382           to ResultSourceProxy, and TableInstance to ResultSourceProxy::Table
383         - minor fixes to UUIDColumns
384         - add debugfh method and ENV magic for tracing SQL (Nigel Metheringham)
385
386 0.04999_03 2006-01-20 06:05:27
387         - imported Jess Robinson's SQL::Translator::Parser::DBIx::Class
388         - lots of internals cleanup to eliminate result_source_instance
389         requirement
390         - added register_column and register_relationship class APIs
391         - made Storage::DBI use prepare_cached safely (thanks to Tim Bunce)
392         - many documentation improvements (thanks guys!)
393         - added ->connection, ->connect, ->register_source and ->clone schema
394         methods
395         - Use croak instead of die for user errors.
396
397 0.04999_02 2006-01-14 07:17:35
398         - Schema is now self-contained; no requirement for co-operation
399         - add_relationship, relationships, relationship_info, has_relationship
400         - relationship handling on ResultSource
401         - all table handling now in Table.pm / ResultSource.pm
402         - added GROUP BY and DISTINCT support
403         - hacked around SQL::Abstract::Limit some more in DBIC::SQL::Abstract
404           (this may have fixed complex quoting)
405         - moved inflation to inflate_result in Row.pm
406         - added $rs->search_related
407         - split compose_namespace out of compose_connection in Schema
408         - ResultSet now handles find
409         - various *_related methods are now ->search_related->*
410         - added new_result to ResultSet
411
412 0.04999_01 2005-12-27 03:33:42
413         - search and related methods moved to ResultSet
414         - select and as added to ResultSet attrs
415         - added DBIx::Class::Table and TableInstance for table-per-class
416         - added DBIx::Class::ResultSetInstance which handles proxying
417           search etc. as a superclass of DBIx::Class::DB
418         - assorted test and code cleanup work
419
420 0.04001 2005-12-13 22:00:00
421         - Fix so set_inflated_column calls set_column
422         - Syntax errors in relationship classes are now reported
423         - Better error detection in set_primary_key and columns methods
424         - Documentation improvements
425         - Better transaction support with txn_* methods
426         - belongs_to now works when $cond is a string
427         - PK::Auto::Pg updated, only tries primary keys instead of all cols
428
429 0.04 2005-11-26
430         - Moved get_simple and set_simple into AccessorGroup
431         - Made 'new' die if given invalid columns
432         - Added has_column and column_info to Table.pm
433         - Refactored away from direct use of _columns and _primaries
434         - Switched from NEXT to Class::C3
435
436 0.03004
437         - Added an || '' to the CDBICompat stringify to avoid null warnings
438         - Updated name section for manual pods
439 0.03003 2005-11-03 17:00:00
440         - POD fixes.
441         - Changed use to require in Relationship/Base to avoid import.
442
443 0.03002 2005-10-20 22:35:00
444         - Minor bugfix to new (Row.pm)
445         - Schema doesn't die if it can't load a class (Schema.pm)
446         - New UUID columns plugin (UUIDColumns.pm)
447         - Documentation improvements.
448
449 0.03001 2005-09-23 14:00:00
450         - Fixes to relationship helpers
451         - IMPORTANT: prefetch/schema combination bug fix
452
453 0.03    2005-09-19 19:35:00
454         - Paging support
455         - Join support on search
456         - Prefetch support on search
457
458 0.02    2005-08-12 18:00:00
459         - Test fixes.
460         - Performance improvements.
461         - Oracle primary key support.
462         - MS-SQL primary key support.
463         - SQL::Abstract::Limit integration for database-agnostic limiting.
464
465 0.01    2005-08-08 17:10:00
466         - initial release
467