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