Add empty possible value to Object::Enum values
[dbsrgits/DBIx-Class-InflateColumn-Object-Enum.git] / Changes
CommitLineData
86d6940e 1Revision history for DBIx-Class-InflateColumn-Object-Enum
2
2d15d771 30.05 Jan 27th 2014
4 - Updated dist build to distzilla
c5f3507b 5 - fixed https://rt.cpan.org/Ticket/Display.html?id=93432
d9b07e66 6 TODO: fix issue 74086
7 TODO: fix issue 80705
a0e9a0f3 80.04 Jan 27th 2009
9 - Removed self dependency
86d6940e 100.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
150.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
320.01 Oct 23rd 2008
33 - Register_column implemented
34 - Test database schema implemented
35 - Wrote base TAP tests