add use_moose=1 to loader opts for create=static, release
[catagits/Catalyst-Model-DBIC-Schema.git] / Changes
1 Revision history for Perl extension Catalyst::Model::DBIC::Schema
2
3 0.42  Sat Jul 24 23:14:27 UTC 2010
4         - add use_moose=1 to loader options by default for create=static
5
6 0.41  Wed Apr 28 08:42:13 EDT 2010
7         - allow configuring ResultSets using the SchemaProxy trait
8
9 0.40  Wed Feb  3 23:12:16 EST 2010
10         - fix Replicated trait deps
11
12 0.39  Mon Feb  1 10:08:51 EST 2010
13         - better 'on_connect_do' parsing in Helper
14
15 0.38  Fri Jan 15 06:41:24 EST 2010
16         - re-add the 'storage' proxy method
17
18 0.37  Thu Jan 14 10:20:43 EST 2010
19         - support single replicant hashref from config
20
21 0.36  Thu Jan 14 09:21:10 EST 2010
22         - upgrading a schema to use_namespaces=1 will also turn on
23           components=InflateColumn::DateTime (the default.)
24
25 0.35  Sun Dec 27 04:50:53 EST 2009
26         - forgot to edit Changes on last upload
27
28 0.34  Sun Dec 27 03:49:34 EST 2009
29         - move schema proxying into SchemaProxy trait which is off by default
30
31 0.33  Sat Dec 26 08:04:49 EST 2009
32         - fix test failure in 05testapp.t when env var not set (RT#53101)
33
34 0.32  Wed Dec 23 01:22:06 EST 2009
35         - Move documentation on setting up authentication into its own section
36           for clarity.
37         - Other misc documentation enhancements to make the docs more clear
38           about the important things to know.
39         - Convert Authentication Plugin configuration example to new style.
40         - Support Coderefs in loader options for helper
41           (patch from Ozum Eldogan ozum@ozum.net)
42
43 0.31  Sun Oct 18 18:50:00 BST 2009
44         - update for copyright info
45
46 0.30  Sun Oct 18 01:35:36 EDT 2009
47         - change no sources error to a warning (with a way to turn it off)
48         - write connect_info to Model without a create= option as well
49
50 0.29  Mon Sep  7 15:31:29 EDT 2009
51         - support for coderef connect_info's
52
53 0.28  Thu Aug 27 08:14:05 EDT 2009
54         - autobox issues in dep chain, bump CX::Component::Traits dep
55         (caelum)
56
57 0.27  Wed Aug 26 09:09:44 EDT 2009
58         - remove autobox usage due to reports of strange errors (caelum)
59         - make schema a delegate for model, config too (caelum)
60
61 0.26  Wed Jul 29 16:16:09 PDT 2009
62         - fix loading connect_info from schema-defined connection
63           (bluefeet, RT 48084)
64         - detect wrong case for "dbi:" DSN part in DBIC helper (caelum)
65         - Fix missing dep on Catalyst::Helper that made tests fail
66           (wintrmute, RT 47449)
67
68 0.25  Fri Jun 19 08:35:38 PDT 2009
69         - fix dep on Tie::IxHash that made tests fail
70         - add more attributes to ::Replicated trait
71         - fixed infinte loop in helper if SQLite connect_info has only
72           a DSN (dandv, RT #47101)
73
74 0.24  Tue Jun 16 06:18:58 PDT 2009
75         - Add tests for issues with Class::C3 which are caused to
76           applications which use new Catalyst but old DBIC, and have
77           use Class::C3 in the MyApp class (t0m)
78         - die on empty schema
79         - create=dynamic deprecation warning
80         - helper passes loader opts to dynamic schemas
81         - conversion to Moose
82         - cursor caching support (via
83           Catalyst::TraitFor::Model::DBIC::Schema::Caching)
84         - ::Storage::Replicated support (via ::Replicated trait)
85         - switch to hashref connect_info for DBIC 8100
86         - better helper option parsing, with support for more options
87         - more tests
88
89 0.23  Sun Mar  8 20:30:02 GMT 2009
90         - Kill a couple of warnings (one due to MRO::Compat)
91
92 0.22  Tue Mar  3 15:54:19 UTC 2009
93         - Fix oddly formatted error message.
94         - Doc patch to clarify generated classes
95         - Switch to use_namespaces and InflateColumn::DateTime for create=static
96           by default, with backcompat
97         - Switch to MRO::Compat from NEXT
98         - Add support for extra Schema::Loader options such as db_schema and
99           components
100
101 0.21  Fri Aug 22 00:26:05 UTC 2008
102         - doc fix (RT #31848)
103         - connection_info can be just the DSN instead of an arrayref
104
105 0.20  Wed May 23, 2007
106         - Fix for rt.cpan.org #22426
107         - Switch to Module::Install
108         - Assorted small pod and cleanliness fixes
109         - Some requirements bumped to the latest maint
110           releases of the same major feature release
111
112 0.18  Tue Aug  8 04:34:42 UTC 2006
113         - Version bump for public release, no functional change
114
115 0.17_01 Thu Jul 27 01:06:13 UTC 2006
116         - Updated for DBIC 0.07
117
118 0.16  Thu Jul  6 13:28:45 UTC 2006
119         - Bugfix for create=static and connect_info coderef snippets
120         - Be more verbose when connection_info is not set.
121
122 0.15  Tue Jun  6 01:33:57 UTC 2006
123         - Fixed a serious bug in create=static usage
124         - Re-arranged output generation so that the more likely
125           failure to generate Schemas via create= will cause the
126           helper to abort before generating the Model class itself
127
128 0.14  Mon Jun  5 23:34:35 UTC 2006
129         - Helpers merged, helper syntax changed
130         - Everything updated for Schema::Loader 0.03001 support, including
131           what amounts to using Loader in one-shot mode to generate
132           a manual Schema with matching Model.
133         - fixed stupid typo in docs
134
135 0.13  Wed Apr 26 2006
136         - noted support via mailing lists
137
138 0.12  Tue Apr 25 2006
139         - SYNOPSIS improved substantially to help newbies get started
140
141 0.11  Sun Mar 26 17:22:31 UTC 2006
142         - Removed on_connect_do config setting (it was only out
143           in public for 4 days...).
144         - Support for on_connect_do and sql_maker options as part
145           of connect_info
146
147 0.10  Wed Mar 22 07:06:02 UTC 2006
148         - Added on_connect_do config setting
149         - Added convenience method for ->schema->storage from paulm
150
151 0.08  Tue Feb 28 00:04:16 UTC 2006
152         - Bumped D::C::Schema::Loader recommendation to 0.02003
153           (should have been done last release)
154         - Removed the ->require stuff added in 0.07, it doesn't
155           do what it is supposed to do.  For now, users can layer
156           at the Schema::Loader level rather than at Model.
157
158 0.07  Sun Feb 19 21:50:18 UTC 2006
159         - bugfix for ::SchemaLoader::Foo password argument, and
160           switch to connect_info argument of new Schema::Loader
161         - Added ->require for source classes, so that you can
162           layer in lib/MyApp/Model/Foo/Bar.pm on top of the
163           generated MyApp::Model::Foo::Bar.
164
165 0.06  Sat Feb 18 19:05:17 UTC 2006
166         - Fix simple pod-related bug introduced in last rev
167         - Added optional test that uses the helpers
168
169 0.05  Fri Feb 17 20:52:21 UTC 2006
170         - Stop showing the template pod in pod tools and cpan,
171           per Gavin's email.
172         - Bump DBIx::Class pre-req to 0.05006, to prevent likely but
173           subtle issues under mod_perl engines.
174
175 0.04  Mon Feb 13 04:22:49 UTC 2006
176         - First public release