fix select attr docs
[dbsrgits/DBIx-Class.git] / Changes
CommitLineData
3b44ccc6 1Revision history for DBIx::Class
2
151fc9ad 30.04999_03 2006-01-20 06:05:27
8bfc3d48 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!)
151fc9ad 9 - added ->connection, ->connect, ->register_source and ->clone schema methods
aa562407 10 - Use croak instead of die for user errors.
8bfc3d48 11
9ce9ec10 120.04999_02 2006-01-14 07:17:35
13 - Schema is now self-contained; no requirement for co-operation
14 - add_relationship, relationships, relationship_info, has_relationship
15 - relationship handling on ResultSource
16 - all table handling now in Table.pm / ResultSource.pm
475978db 17 - added GROUP BY and DISTINCT support
18 - hacked around SQL::Abstract::Limit some more in DBIC::SQL::Abstract
19 (this may have fixed complex quoting)
20 - moved inflation to inflate_result in Row.pm
21 - added $rs->search_related
22 - split compose_namespace out of compose_connection in Schema
fea3d045 23 - ResultSet now handles find
24 - various *_related methods are now ->search_related->*
25 - added new_result to ResultSet
475978db 26
82b1cd1f 270.04999_01 2005-12-27 03:33:42
28 - search and related methods moved to ResultSet
29 - select and as added to ResultSet attrs
30 - added DBIx::Class::Table and TableInstance for table-per-class
31 - added DBIx::Class::ResultSetInstance which handles proxying
32 search etc. as a superclass of DBIx::Class::DB
33 - assorted test and code cleanup work
34
de5d1955 350.04001 2005-12-13 22:00:00
47bd0267 36 - Fix so set_inflated_column calls set_column
de5d1955 37 - Syntax errors in relationship classes are now reported
c2074366 38 - Better error detection in set_primary_key and columns methods
39 - Documentation improvements
40 - Better transaction support with txn_* methods
41 - belongs_to now works when $cond is a string
42 - PK::Auto::Pg updated, only tries primary keys instead of all cols
47bd0267 43
440.04 2005-11-26
484c9dda 45 - Moved get_simple and set_simple into AccessorGroup
46 - Made 'new' die if given invalid columns
103647d5 47 - Added has_column and column_info to Table.pm
48 - Refactored away from direct use of _columns and _primaries
47bd0267 49 - Switched from NEXT to Class::C3
484c9dda 50
2441e56f 510.03004
52 - Added an || '' to the CDBICompat stringify to avoid null warnings
3b44ccc6 53 - Updated name section for manual pods
54
550.03003 2005-11-03 17:00:00
56 - POD fixes.
57 - Changed use to require in Relationship/Base to avoid import.
58
590.03002 2005-10-20 22:35:00
60 - Minor bugfix to new (Row.pm)
61 - Schema doesn't die if it can't load a class (Schema.pm)
62 - New UUID columns plugin (UUIDColumns.pm)
63 - Documentation improvements.
64
650.03001 2005-09-23 14:00:00
66 - Fixes to relationship helpers
67 - IMPORTANT: prefetch/schema combination bug fix
68
690.03 2005-09-19 19:35:00
70 - Paging support
71 - Join support on search
72 - Prefetch support on search
73
740.02 2005-08-12 18:00:00
75 - Test fixes.
76 - Performance improvements.
77 - Oracle primary key support.
78 - MS-SQL primary key support.
79 - SQL::Abstract::Limit integration for database-agnostic limiting.
80
810.01 2005-08-08 17:10:00
82 - initial release