Add empty possible value to Object::Enum values
[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         - fixed https://rt.cpan.org/Ticket/Display.html?id=93432
6         TODO: fix issue 74086
7         TODO: fix issue 80705
8 0.04    Jan 27th 2009
9         - Removed self dependency 
10 0.03    Nov 11th 2008
11         - Modified error verbage as per request from mst
12         - Changed ChangeLog sorting from latest -> oldest
13         - Migrated from internal svn repo to dbic-class svn repo
14
15 0.02    Oct 25th 2008
16         - Expanded testing database and tap tests to test for varchar 
17           nullable and non-nullable and database native enum nullable 
18           and non-nullable 
19         - Fixed a implmentation for Object::Enum->new so that columns value
20           on inflation is set correctly. This could have been considered
21           a nasty bug. Discovered through new tests.
22         - Added sanity check for inflation value set for invalid values so 
23           that we don't get Object::Enum's die for invalid value as I don't
24           like that behavior. Maybe a column_info to control check would be 
25           more reasonable?
26         - Changed allowable values usages from values column_info property
27           to extra->list property to make this modules usage fall more 
28           inline with how SQL::Translator handles native enum database
29           types. As per suggestion from Bernhard Graf.
30         - Added to code to enable smarter default_value handling
31
32 0.01    Oct 23rd 2008
33         - Register_column implemented
34         - Test database schema implemented
35         - Wrote base TAP tests