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