add bug fix todos to Changes
[dbsrgits/DBIx-Class-InflateColumn-Object-Enum.git] / Changes
1 Revision history for DBIx-Class-InflateColumn-Object-Enum
2
3 0.05 Jan 27th 2014
4         - Updated dist build to distzilla
5         TODO: fix issue 74086
6         TODO: fix issue 80705
7 0.04    Jan 27th 2009
8         - Removed self dependency 
9 0.03    Nov 11th 2008
10         - Modified error verbage as per request from mst
11         - Changed ChangeLog sorting from latest -> oldest
12         - Migrated from internal svn repo to dbic-class svn repo
13
14 0.02    Oct 25th 2008
15         - Expanded testing database and tap tests to test for varchar 
16           nullable and non-nullable and database native enum nullable 
17           and non-nullable 
18         - Fixed a implmentation for Object::Enum->new so that columns value
19           on inflation is set correctly. This could have been considered
20           a nasty bug. Discovered through new tests.
21         - Added sanity check for inflation value set for invalid values so 
22           that we don't get Object::Enum's die for invalid value as I don't
23           like that behavior. Maybe a column_info to control check would be 
24           more reasonable?
25         - Changed allowable values usages from values column_info property
26           to extra->list property to make this modules usage fall more 
27           inline with how SQL::Translator handles native enum database
28           types. As per suggestion from Bernhard Graf.
29         - Added to code to enable smarter default_value handling
30
31 0.01    Oct 23rd 2008
32         - Register_column implemented
33         - Test database schema implemented
34         - Wrote base TAP tests