fixed minor docs error
[dbsrgits/DBIx-Class.git] / Changes
CommitLineData
3b44ccc6 1Revision history for DBIx::Class
2
73281318 3 - DBIx::Class::AccessorGroup made empty subclass of
4 Class::Accessor::Grouped
ec8c7e7f 5 - fixed an ugly bug regarding $dbh->{AutoCommit} and transactions
73281318 6 - ensure_class_loaded handles non-classnames better.
9a0891be 7 - non-destructive hashref handling for connect_info options
2bd9c7c0 8 - count no longer returns negative values after slice
9 (report and test from JOHANL)
114780ee 10 - rebless before building datetime_parser
11 (patch from mattlaw / Matt Lawrence)
12
ab2cf1fb 130.08003 2007-07-14 18:01:00
14 - improved populate bulk_insert mode
a8c98174 15 - fixed up multi_create to be more intelligent about PK<->PK rels
6cc5b382 16 - fix many-many rels to not use set_columns
dfccde48 17 - Unmarked deploy as experimental since it isn't anymore
18 - Removed Cwd dep since it's not required and causes problems
19 with debian packaging
b4474f31 20 - Patch to fix ? in data for NoBindVars (from Tom Hukins)
77d518d1 21 - Restored mk_classaccessor method for compatibility
3f6cc7e4 22 - Fixed group_by problem with oracle limit syntax
23 - Fixed attr merging problem
24 - Fixed $rs->get_column w/prefetch problem
77d518d1 25
6fa7228e 260.08002 2007-06-20 06:10:00
9c6d6d93 27 - add scope guard to Row::insert to ensure rollback gets called
28 - more heuristics in Row::insert to try and get insert order right
29 - eliminate vestigial code in PK::Auto
2ab60eb9 30 - more expressive DBI errors
31 - soften errors during deploy
291bf95f 32 - ensure_connected before txn_begin to catch stomping on transaction
33 depth
b2f408f3 34 - new method "rethrow" for our exception objects
35
a2800991 360.08001 2007-06-17 21:21:02
37 - Cleaned up on_connect handling for versioned
38 - removed DateTime use line from multi_create test
39 - hid DBIx::ContextualFetch::st override in CDBICompat
40
737416a4 410.08000 2007-06-17 18:06:12
942cd0c1 42 - Fixed DBIC_TRACE debug filehandles to set ->autoflush(1)
43 - Fixed circular dbh<->storage in HandleError with weakref
44
a0bd8a8c 450.07999_06 2007-06-13 04:45:00
3fda409f 46 - tweaked Row.pm to make last_insert_id take multiple column names
a0bd8a8c 47 - Fixed DBIC::Storage::DBI::Cursor::DESTROY bug that was
48 messing up exception handling
49 - added exception objects to eliminate stacktrace/Carp::Clan
50 output redundancy
51 - setting $ENV{DBIC_TRACE} defaults stacktrace on.
4d4c7bbe 52 - added stacktrace option to Schema, makes throw_exception
53 use "confess"
54 - make database handles use throw_exception by default
55 - make database handles supplied by a coderef use our
56 standard HandleError/RaiseError/PrintError
57 - add "unsafe" connect_info option to suppress our setting
58 of HandleError/RaiseError/PrintError
59 - removed several redundant evals whose sole purpose was to
60 provide extra debugging info
4d993a62 61 - fixed page-within-page bug (reported by nilsonsfj)
4d4c7bbe 62 - fixed rare bug when database is disconnected inbetween
63 "$dbh->prepare_cached" and "$sth->execute"
4d993a62 64
ff132c6f 650.07999_05 2007-06-07 23:00:00
2c2a01a5 66 - Made source_name rw in ResultSource
40dce2a5 67 - Fixed up SQL::Translator test/runtime dependencies
e3d0ecce 68 - Fixed t/60core.t in the absence of DateTime::Format::MySQL
8b621a87 69 - Test cleanup and doc note (ribasushi)
e3d0ecce 70
1c1896e8 710.07999_04 2007-06-01 14:04:00
f5d3a5de 72 - pulled in Replication storage from branch and marked EXPERIMENTAL
24010dd8 73 - fixup to ensure join always LEFT after first LEFT join depthwise
f217eaab 74 - converted the vendor tests to use schema objects intead of schema
75 classes, made cleaned more reliable with END blocks
42416a0b 76 - versioning support via DBIx::Class::Schema::Versioned
f217eaab 77 - find/next now return undef rather than () on fail from Bernhard Graf
f80f8e2f 78 - rewritten collapse_result to fix prefetch
79 - moved populate to resultset
80 - added support for creation of related rows via insert and populate
f217eaab 81 - transaction support more robust now in the face of varying AutoCommit
82 and manual txn_begin usage
83 - unbreak back-compat for Row/ResultSet->new_result
03cc17a5 84 - Added Oracle/WhereJoins.pm for Oracle >= 8 to support
85 Oracle <= 9i, and provide Oracle with a better join method for
86 later versions. (I use the term better loosely.)
3d618782 87 - The SQL::T parser class now respects a relationship attribute of
03cc17a5 88 is_foreign_key_constrain to allow explicit control over wether or
89 not a foreign constraint is needed
fac560c2 90 - resultset_class/result_class now (again) auto loads the specified
1d4e109a 91 class; requires Class::Accessor::Grouped 0.05002+
ba4a6453 92 - added get_inflated_columns to Row
43556c5d 93 - %colinfo accessor and inflate_column now work together
42d96e77 94 - More documentation updates
95 - Error messages from ->deploy made more informative
96 - connect_info will now always return the arguments it was
97 originally given
98 - A few small efficiency improvements for load_classes
99 and compose_namespace
100
13f897a0 1010.07006 2007-04-17 23:18:00
b740ac42 102 - Lots of documentation updates
103 - deploy now takes an optional 'source_names' parameter (dec)
104 - Quoting for for columns_info_for
105 - RT#25683 fixed (multiple open sths on DBD::Sybase)
106 - CDBI compat infers has_many from has_a (Schwern)
e73fced0 107 - Fix ddl_filename transformation (Carl Vincent)
8b50216e 108
e9188247 1090.07999_02 2007-01-25 20:11:00
110 - add support for binding BYTEA and similar parameters (w/Pg impl)
111 - add support to Ordered for multiple ordering columns
112 - mark DB.pm and compose_connection as deprecated
113 - switch tests to compose_namespace
737416a4 114 - ResultClass::HashRefInflator added
e9188247 115 - Changed row and rs objects to not have direct handle to a source,
116 instead a (schema,source_name) tuple of type ResultSourceHandle
c216324a 117
f00482a5 1180.07005 2007-01-10 18:36:00
119 - fixup changes file
120 - remove erroneous .orig files - oops
121
d5efeb56 1220.07004 2007-01-09 21:52:00
d180c0f3 123 - fix find_related-based queries to correctly grep the unique key
97c76264 124 - fix InflateColumn to inflate/deflate all refs but scalar refs
d180c0f3 125
e1f1616e 1260.07003 2006-11-16 11:52:00
8de06d81 127 - fix for rt.cpan.org #22740 (use $^X instead of hardcoded "perl")
25dbe178 128 - Tweaks to resultset to allow inflate_result to return an array
382b1d53 129 - Fix UTF8Columns to work under Perl <= 5.8.0
c6a0dde1 130 - Fix up new_result in ResultSet to avoid alias-related bugs
a4c8f60d 131 - Made new/update/find handle 'single' rel accessor correctly
132 - Fix NoBindVars to be safer and handle non-true bind values
e1f1616e 133 - Don't blow up if columns_info_for returns useless results
134 - Documentation updates
382b1d53 135
e9188247 1360.07999_01 2006-10-05 21:00:00
137 - add connect_info option "disable_statement_caching"
138 - create insert_bulk using execute_array, populate uses it
139 - added DBIx::Class::Schema::load_namespaces, alternative to
140 load_classes
141 - added source_info method for source-level metadata (kinda like
142 column_info)
143 - Some of ::Storage::DBI's code/docs moved to ::Storage
144 - DBIx::Class::Schema::txn_do code moved to ::Storage
145 - Storage::DBI now uses exceptions instead of ->ping/->{Active} checks
146 - Storage exceptions are thrown via the schema class's throw_exception
147 - DBIx::Class::Schema::throw_exception's behavior can be modified via
148 ->exception_action
149 - columns_info_for is deprecated, and no longer runs automatically.
150 You can make it work like before via
151 __PACKAGE__->column_info_from_storage(1) for now
152 - Replaced DBIx::Class::AccessorGroup and Class::Data::Accessor with
5d583aba 153 Class::Accessor::Grouped. Only user noticible change is to
154 table_class on ResultSourceProxy::Table (i.e. table objects in
155 schemas) and, resultset_class and result_class in ResultSource.
e9188247 156 These accessors no longer automatically require the classes when
157 set.
158
2292193a 1590.07002 2006-09-14 21:17:32
160 - fix quote tests for recent versions of SQLite
161 - added reference implementation of Manual::Example
162 - backported column_info_from_storage accessor from -current, but
6d2d6160 163 - fixed inflate_datetime.t tests/stringify under older Test::More
2292193a 164 - minor fixes for many-to-many relationship helpers
36f79eed 165 - cleared up Relationship docs, and fixed some typos
e4cc8257 166 - use ref instead of eval to check limit syntax (to avoid issues with
167 Devel::StackTrace)
2292193a 168 - update ResultSet::_cond_for_update_delete to handle more complicated
169 queries
170 - bugfix to Oracle columns_info_for
a918d901 171 - remove_columns now deletes columns from _columns
172
f096a498 1730.07001 2006-08-18 19:55:00
9dba3059 174 - add directory argument to deploy()
175 - support default aliases in many_to_many accessors.
176 - support for relationship attributes in many_to_many accessors.
177 - stop search_rs being destructive to attrs
178 - better error reporting when loading components
179 - UTF8Columns changed to use "utf8" instead of "Encode"
ab8481f5 180 - restore automatic aliasing in ResultSet::find() on nonunique queries
181 - allow aliases in ResultSet::find() queries (in cases of relationships
182 with prefetch)
89034887 183 - pass $attrs to find from update_or_create so a specific key can be
184 provided
04786a4c 185 - remove anonymous blesses to avoid major speed hit on Fedora Core 5's
186 Perl and possibly others; for more information see:
187 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=196836
282cccff 188 - fix a pathological prefetch case
189 - table case fix for Oracle in columns_info_for
cb3e35d2 190 - stopped search_rs deleting attributes from passed hash
282cccff 191
cebfddb3 1920.07000 2006-07-23 02:30:00
28d25740 193 - supress warnings for possibly non-unique queries, since
194 _is_unique_query doesn't infer properly in all cases
b489f68a 195 - skip empty queries to eliminate spurious warnings on ->deploy
d09c569a 196 - fixups to ORDER BY, tweaks to deepen some copies in ResultSet
eac29141 197 - fixup for RowNum limit syntax with functions
d09c569a 198
99eff28a 1990.06999_07 2006-07-12 20:58:05
200 - fix issue with from attr copying introduced in last release
201
26cfd055 2020.06999_06 2006-07-12 17:16:55
203 - documentation for new storage options, fix S::A::L hanging on to $dbh
204 - substantial refactor of search_related code to fix alias numbering
dcfb635f 205 - don't generate partial unique keys in ResultSet::find() when a table
206 has more than one unique constraint which share a column and only one
207 is satisfied
404939a4 208 - cleanup UTF8Columns and make more efficient
26cfd055 209 - rename DBIX_CLASS_STORAGE_DBI_DEBUG to DBIC_TRACE (with compat)
f9fbd9bb 210 - rename _parent_rs to _parent_source in ResultSet
0793f927 211 - new FAQ.pod!
f9fbd9bb 212
2b19c829 2130.06999_05 2006-07-04 14:40:01
88de38fa 214 - fix issue with incorrect $rs->{attrs}{alias}
c1466191 215 - fix subclassing issue with source_name
296ef183 216 - tweak quotes test to output text on failure
f32eb113 217 - fix Schema->txn_do to not fail as a classmethod
218
39b590c1 2190.06999_04 2006-06-29 20:18:47
d651c864 220 - disable cdbi-t/02-Film.t warning tests under AS perl
ca306ecb 221 - fixups to MySQL tests (aka "work round mysql being retarded")
222 - compat tweaks for Storage debug logging
223
ef26a392 2240.06999_03 2006-06-26 21:04:44
225 - various documentation improvements
226 - fixes to pass test suite on Windows
227 - rewrote and cleaned up SQL::Translator tests
228 - changed relationship helpers to only call ensure_class_loaded when the
5d583aba 229 join condition is inferred
ef26a392 230 - rewrote many_to_many implementation, now provides helpers for adding
231 and deleting objects without dealing with the link table
6ccc50ab 232 - reworked InflateColumn implementation to lazily deflate where
ef26a392 233 possible; now handles passing an inflated object to new()
234 - changed join merging to not create a rel_2 alias when adding a join
42312aa5 235 that already exists in a parent resultset
ef26a392 236 - Storage::DBI::deployment_statements now calls ensure_connected
5d583aba 237 if it isn't passed a type
ef26a392 238 - fixed Componentized::ensure_class_loaded
5d0a2955 239 - InflateColumn::DateTime supports date as well as datetime
ef26a392 240 - split Storage::DBI::MSSQL into MSSQL and Sybase::MSSQL
5d583aba 241 - fixed wrong debugging hook call in Storage::DBI
242 - set connect_info properly before setting any ->sql_maker things
42312aa5 243
713ca2e2 2440.06999_02 2006-06-09 23:58:33
9b83fccd 245 - Fixed up POD::Coverage tests, filled in some POD holes
175cff3e 246 - Added a warning for incorrect component order in load_components
bd93520f 247 - Fixed resultset bugs to do with related searches
248 - added code and tests for Componentized::ensure_class_found and
249 load_optional_class
250 - NoBindVars + Sybase + MSSQL stuff
251 - only rebless S::DBI if it is still S::DBI and not a subclass
252 - Added `use' statement for DBD::Pg in Storage::DBI::Pg
253 - stopped test relying on order of unordered search
254 - bugfix for join-types in nested joins using the from attribute
255 - obscure prefetch problem fixed
256 - tightened up deep search_related
257 - Fixed 'DBIx/Class/DB.pm did not return a true value' error
258 - Revert change to test for deprecated find usage and swallow warnings
259 - Slight wording change to new_related() POD
260 - new specific test for connect_info coderefs
261 - POD clarification and content bugfixing + a few code formatting fixes
262 - POD::Coverage additions
263 - fixed debugfh
264 - Fix column_info stomping
9b83fccd 265
0de39991 2660.06999_01 2006-05-28 17:19:30
368a5228 267 - add automatic naming of unique constraints
1c81f831 268 - marked DB.pm as deprecated and noted it will be removed by 1.0
a8db04ca 269 - add ResultSetColumn
ef26a392 270 - refactor ResultSet code to resolve attrs as late as possible
a8db04ca 271 - merge prefetch attrs into join attrs
cec13963 272 - add +select and +as attributes to ResultSet
e7cafd06 273 - added InflateColumn::DateTime component
4c248161 274 - refactor debugging to allow for profiling using Storage::Statistics
6aaa8ea2 275 - removed Data::UUID from deps, made other optionals required
38e48163 276 - modified SQLT parser to skip dupe table names
002a359a 277 - added remove_column(s) to ResultSource/ResultSourceProxy
278 - added add_column alias to ResultSourceProxy
bab77431 279 - added source_name to ResultSource
1bc0b925 280 - load_classes now uses source_name and sets it if necessary
281 - add update_or_create_related to Relationship::Base
282 - add find_or_new to ResultSet/ResultSetProxy and find_or_new_related
283 to Relationship::Base
284 - add accessors for unique constraint names and coulums to
285 ResultSource/ResultSourceProxy
286 - rework ResultSet::find() to search unique constraints
9387c904 287 - CDBICompat: modify retrieve to fix column casing when ColumnCase is
288 loaded
289 - CDBICompat: override find_or_create to fix column casing when
290 ColumnCase is loaded
62eb8fe8 291 - reorganized and simplified tests
292 - added Ordered
8046a6d1 293 - added the ability to set on_connect_do and the various sql_maker
294 options as part of Storage::DBI's connect_info.
002a359a 295
0de39991 2960.06003 2006-05-19 15:37:30
9c2c91ea 297 - make find_or_create_related check defined() instead of truth
8417f5ee 298 - don't unnecessarily fetch rels for cascade_update
d3c946a0 299 - don't set_columns explicitly in update_or_create; instead use
300 update($hashref) so InflateColumn works
0823196c 301 - fix for has_many prefetch with 0 related rows
302 - make limit error if rows => 0
a917fb06 303 - added memory cycle tests and a long-needed weaken call
304
a2f6c15f 3050.06002 2006-04-20 00:42:41
2c037e6b 306 - fix set_from_related to accept undef
bd054cb4 307 - fix to Dumper-induced hash iteration bug
83419ec6 308 - fix to copy() with non-composed resultsource
765f5b7b 309 - fix to ->search without args to clone rs but maintain cache
a32e8402 310 - grab $self->dbh once per function in Storage::DBI
428c2b82 311 - nuke ResultSource caching of ->resultset for consistency reasons
16b4fd26 312 - fix for -and conditions when updating or deleting on a ResultSet
313
d56d8619 3140.06001
6346a152 315 - Added fix for quoting with single table
182fee36 316 - Substantial fixes and improvements to deploy
317 - slice now uses search directly
318 - fixes for update() on resultset
319 - bugfix to Cursor to avoid error during DESTROY
986e4fca 320 - transaction DBI operations now in debug trace output
6346a152 321
41741748 3220.06000 2006-03-25 18:03:46
eaefb953 323 - Lots of documentation improvements
324 - Minor tweak to related_resultset to prevent it storing a searched rs
8fcf21b3 325 - Fixup to columns_info_for when database returns type(size)
eeb34228 326 - Made do_txn respect void context (on the off-chance somebody cares)
5bd6785c 327 - Fix exception text for nonexistent key in ResultSet::find()
8fcf21b3 328
41741748 3290.05999_04 2006-03-18 19:20:49
7ed3d6dc 330 - Fix for delete on full-table resultsets
936332ea 331 - Removed caching on count() and added _count for pager()
3ec067db 332 - ->connection does nothing if ->storage defined and no args
333 (and hence ->connect acts like ->clone under the same conditions)
334 - Storage::DBI throws better exception if no connect info
335 - columns_info_for made more robust / informative
1346e22d 336 - ithreads compat added, fork compat improved
bcd26419 337 - weaken result_source in all resultsets
bd93520f 338 - Make pg seq extractor less sensitive.
3b44ccc6 339
c42d8358 3400.05999_03 2006-03-14 01:58:10
341 - has_many prefetch fixes
85dea9a9 342 - deploy now adds drop statements before creates
f109ee4a 343 - deploy outputs debugging statements if DBIX_CLASS_STORAGE_DBI_DEBUG
344 is set
85dea9a9 345
f109ee4a 3460.05999_02 2006-03-10 13:31:37
e9100ff7 347 - remove test dep on YAML
348 - additional speed tweaks for C3
e535069e 349 - allow scalarefs passed to order_by to go straight through to SQL
9b465d00 350 - renamed insert_or_update to update_or_insert (with compat alias)
f43b2744 351 - hidden lots of packages from the PAUSE Indexer
561bd5f6 352
3530.05999_01 2006-03-09 18:31:44
5e8b1b2a 354 - renamed cols attribute to columns (cols still supported)
355 - added has_column_loaded to Row
90ec6cad 356 - Storage::DBI connect_info supports coderef returning dbh as 1st arg
aa972396 357 - load_components() doesn't prepend base when comp. prefixed with +
074a366d 358 - $schema->deploy
359 - HAVING support
360 - prefetch for has_many
eaefb953 361 - cache attr for resultsets
074a366d 362 - PK::Auto::* no longer required since Storage::DBI::* handle auto-inc
0e35aa05 363 - minor tweak to tests for join edge case
364 - added cascade_copy relationship attribute
365 (sponsored by Airspace Software, http://www.airspace.co.uk/)
366 - clean up set_from_related
367 - made copy() automatically null out auto-inc columns
62cb84ec 368 - added txn_do() method to Schema, which allows a coderef to be
369 executed atomically
70ecd5a1 370
975c65b5 3710.05007 2006-02-24 00:59:00
971c0085 372 - tweak to Componentised for Class::C3 0.11
373 - fixes for auto-inc under MSSQL
374
f8d97a01 3750.05006 2006-02-17 15:32:40
376 - storage fix for fork() and workaround for Apache::DBI
fc27a867 377 - made update(\%hash) work on row as well as rs
d3231653 378 - another fix for count with scalar group_by
379 - remove dependency on Module::Find in 40resultsetmanager.t (RT #17598)
4834d8ac 380
d0bb3812 3810.05005 2006-02-13 21:24:51
382 - remove build dependency on version.pm
383
dec2517f 3840.05004 2006-02-13 20:59:00
002a359a 385 - allow specification of related columns via cols attr when primary
f3b05bad 386 keys of the related table are not fetched
387 - fix count for group_by as scalar
f66596f9 388 - add horrific fix to make Oracle's retarded limit syntax work
3b24f6ea 389 - remove Carp require
60283c2e 390 - changed UUIDColumns to use new UUIDMaker classes for uuid creation
391 using whatever module may be available
f66596f9 392
85b4a1c5 3930.05003 2006-02-08 17:50:20
394 - add component_class accessors and use them for *_class
395 - small fixes to Serialize and ResultSetManager
85b4a1c5 396 - rollback on disconnect, and disconnect on DESTROY
85b4a1c5 397
cc6504dc 3980.05002 2006-02-06 12:12:03
399 - Added recommends for Class::Inspector
fac560c2 400 - Added skip_all to t/40resultsetmanager.t if no Class::Inspector
401 available
cc6504dc 402
4030.05001 2006-02-05 15:28:10
6ee299bf 404 - debug output now prints NULL for undef params
887ce227 405 - multi-step prefetch along the same rel (e.g. for trees) now works
489709af 406 - added multi-join (join => [ 'foo', 'foo' ]), aliases second to foo_2
5ec6bc2e 407 - hack PK::Auto::Pg for "table" names referencing a schema
408 - find() with attributes works
5ac6a044 409 - added experimental Serialize and ResultSetManager components
19345968 410 - added code attribute recording to DBIx::Class
5ac6a044 411 - fix to find() for complex resultsets
412 - added of $storage->debugcb(sub { ... })
413 - added $source->resultset_attributes accessor
414 - added include_columns rs attr
415
fc69fea6 4160.05000 2006-02-01 16:48:30
417 - assorted doc fixes
602afcfa 418 - remove ObjectCache, not yet working in 0.05
419 - let many_to_many rels have attrs
420 - fix ID method in PK.pm to be saner for new internals
132f3b89 421 - fix t/30dbicplain.t to use ::Schema instead of
422 Catalyst::Model::DBIC::Plain
cd67f809 423
7a1fe534 4240.04999_06 2006-01-28 21:20:32
de5e2fe9 425 - fix Storage/DBI (tried to load deprecated ::Exception component)
426
4270.04999_05 2006-01-28 20:13:52
00018e9d 428 - count will now work for grouped resultsets
429 - added accessor => option to column_info to specify accessor name
a37a4697 430 - added $schema->populate to load test data (similar to AR fixtures)
5e8b1b2a 431 - removed cdbi-t dependencies, only run tests if installed
432 - Removed DBIx::Class::Exception
433 - unified throw_exception stuff, using Carp::Clan
434 - report query when sth generation fails.
a14d1055 435 - multi-step prefetch!
436 - inheritance fixes
437 - test tweaks
438
09aeebca 4390.04999_04 2006-01-24 21:48:21
440 - more documentation improvements
fac560c2 441 - add columns_info_for for vendor-specific column info (Zbigniew
442 Lukasiak)
443 - add SQL::Translator::Producer for DBIx::Class table classes (Jess
444 Robinson)
09aeebca 445 - add unique constraint declaration (Daniel Westermann-Clark)
446 - add new update_or_create method (Daniel Westermann-Clark)
e46a66f2 447 - rename ResultSetInstance class to ResultSetProxy, ResultSourceInstance
448 to ResultSourceProxy, and TableInstance to ResultSourceProxy::Table
09aeebca 449 - minor fixes to UUIDColumns
6565b410 450 - add debugfh method and ENV magic for tracing SQL (Nigel Metheringham)
09aeebca 451
151fc9ad 4520.04999_03 2006-01-20 06:05:27
09aeebca 453 - imported Jess Robinson's SQL::Translator::Parser::DBIx::Class
fac560c2 454 - lots of internals cleanup to eliminate result_source_instance
455 requirement
8bfc3d48 456 - added register_column and register_relationship class APIs
457 - made Storage::DBI use prepare_cached safely (thanks to Tim Bunce)
458 - many documentation improvements (thanks guys!)
fac560c2 459 - added ->connection, ->connect, ->register_source and ->clone schema
460 methods
5e8b1b2a 461 - Use croak instead of die for user errors.
8bfc3d48 462
9ce9ec10 4630.04999_02 2006-01-14 07:17:35
464 - Schema is now self-contained; no requirement for co-operation
465 - add_relationship, relationships, relationship_info, has_relationship
466 - relationship handling on ResultSource
467 - all table handling now in Table.pm / ResultSource.pm
475978db 468 - added GROUP BY and DISTINCT support
469 - hacked around SQL::Abstract::Limit some more in DBIC::SQL::Abstract
470 (this may have fixed complex quoting)
471 - moved inflation to inflate_result in Row.pm
472 - added $rs->search_related
473 - split compose_namespace out of compose_connection in Schema
fea3d045 474 - ResultSet now handles find
475 - various *_related methods are now ->search_related->*
476 - added new_result to ResultSet
475978db 477
82b1cd1f 4780.04999_01 2005-12-27 03:33:42
479 - search and related methods moved to ResultSet
480 - select and as added to ResultSet attrs
481 - added DBIx::Class::Table and TableInstance for table-per-class
482 - added DBIx::Class::ResultSetInstance which handles proxying
483 search etc. as a superclass of DBIx::Class::DB
484 - assorted test and code cleanup work
485
de5d1955 4860.04001 2005-12-13 22:00:00
47bd0267 487 - Fix so set_inflated_column calls set_column
de5d1955 488 - Syntax errors in relationship classes are now reported
c2074366 489 - Better error detection in set_primary_key and columns methods
490 - Documentation improvements
491 - Better transaction support with txn_* methods
492 - belongs_to now works when $cond is a string
493 - PK::Auto::Pg updated, only tries primary keys instead of all cols
47bd0267 494
4950.04 2005-11-26
484c9dda 496 - Moved get_simple and set_simple into AccessorGroup
497 - Made 'new' die if given invalid columns
103647d5 498 - Added has_column and column_info to Table.pm
499 - Refactored away from direct use of _columns and _primaries
47bd0267 500 - Switched from NEXT to Class::C3
484c9dda 501
2441e56f 5020.03004
503 - Added an || '' to the CDBICompat stringify to avoid null warnings
5e8b1b2a 504 - Updated name section for manual pods
3b44ccc6 5050.03003 2005-11-03 17:00:00
506 - POD fixes.
507 - Changed use to require in Relationship/Base to avoid import.
508
5090.03002 2005-10-20 22:35:00
510 - Minor bugfix to new (Row.pm)
511 - Schema doesn't die if it can't load a class (Schema.pm)
512 - New UUID columns plugin (UUIDColumns.pm)
513 - Documentation improvements.
514
5150.03001 2005-09-23 14:00:00
516 - Fixes to relationship helpers
517 - IMPORTANT: prefetch/schema combination bug fix
518
5190.03 2005-09-19 19:35:00
520 - Paging support
521 - Join support on search
522 - Prefetch support on search
523
5240.02 2005-08-12 18:00:00
525 - Test fixes.
526 - Performance improvements.
527 - Oracle primary key support.
528 - MS-SQL primary key support.
529 - SQL::Abstract::Limit integration for database-agnostic limiting.
530
5310.01 2005-08-08 17:10:00
532 - initial release
fac560c2 533