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