Updated Changes for _03
[dbsrgits/DBIx-Class.git] / Changes
CommitLineData
3b44ccc6 1Revision history for DBIx::Class
2
8bfc3d48 30.04999_03
4 - Imported Jess Robinson's SQL::Translator::Parser::DBIx::Class
5 - Lots of internals cleanup to eliminate result_source_instance requirement
6 - added register_column and register_relationship class APIs
7 - made Storage::DBI use prepare_cached safely (thanks to Tim Bunce)
8 - many documentation improvements (thanks guys!)
9
9ce9ec10 100.04999_02 2006-01-14 07:17:35
11 - Schema is now self-contained; no requirement for co-operation
12 - add_relationship, relationships, relationship_info, has_relationship
13 - relationship handling on ResultSource
14 - all table handling now in Table.pm / ResultSource.pm
475978db 15 - added GROUP BY and DISTINCT support
16 - hacked around SQL::Abstract::Limit some more in DBIC::SQL::Abstract
17 (this may have fixed complex quoting)
18 - moved inflation to inflate_result in Row.pm
19 - added $rs->search_related
20 - split compose_namespace out of compose_connection in Schema
fea3d045 21 - ResultSet now handles find
22 - various *_related methods are now ->search_related->*
23 - added new_result to ResultSet
475978db 24
82b1cd1f 250.04999_01 2005-12-27 03:33:42
26 - search and related methods moved to ResultSet
27 - select and as added to ResultSet attrs
28 - added DBIx::Class::Table and TableInstance for table-per-class
29 - added DBIx::Class::ResultSetInstance which handles proxying
30 search etc. as a superclass of DBIx::Class::DB
31 - assorted test and code cleanup work
32
de5d1955 330.04001 2005-12-13 22:00:00
47bd0267 34 - Fix so set_inflated_column calls set_column
de5d1955 35 - Syntax errors in relationship classes are now reported
c2074366 36 - Better error detection in set_primary_key and columns methods
37 - Documentation improvements
38 - Better transaction support with txn_* methods
39 - belongs_to now works when $cond is a string
40 - PK::Auto::Pg updated, only tries primary keys instead of all cols
47bd0267 41
420.04 2005-11-26
484c9dda 43 - Moved get_simple and set_simple into AccessorGroup
44 - Made 'new' die if given invalid columns
103647d5 45 - Added has_column and column_info to Table.pm
46 - Refactored away from direct use of _columns and _primaries
47bd0267 47 - Switched from NEXT to Class::C3
484c9dda 48
2441e56f 490.03004
50 - Added an || '' to the CDBICompat stringify to avoid null warnings
3b44ccc6 51 - Updated name section for manual pods
52
530.03003 2005-11-03 17:00:00
54 - POD fixes.
55 - Changed use to require in Relationship/Base to avoid import.
56
570.03002 2005-10-20 22:35:00
58 - Minor bugfix to new (Row.pm)
59 - Schema doesn't die if it can't load a class (Schema.pm)
60 - New UUID columns plugin (UUIDColumns.pm)
61 - Documentation improvements.
62
630.03001 2005-09-23 14:00:00
64 - Fixes to relationship helpers
65 - IMPORTANT: prefetch/schema combination bug fix
66
670.03 2005-09-19 19:35:00
68 - Paging support
69 - Join support on search
70 - Prefetch support on search
71
720.02 2005-08-12 18:00:00
73 - Test fixes.
74 - Performance improvements.
75 - Oracle primary key support.
76 - MS-SQL primary key support.
77 - SQL::Abstract::Limit integration for database-agnostic limiting.
78
790.01 2005-08-08 17:10:00
80 - initial release