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