fix reported reversion
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Delta.pod
1 =head1 NAME
2
3 Catalyst::Delta - Overview of changes between versions of Catalyst
4
5 =head1 DESCRIPTION
6
7 This is an overview of the user-visible changes to Catalyst between major Catalyst releases.
8
9 =head2 VERSION 5.90053
10
11 We are now clarifying the behavior of log, plugins and configuration during
12 the setup phase.  Since Plugins might require a log during setup, setup_log
13 must run BEFORE setup_plugins.   This has the unfortunate side effect that
14 anyone using the popular ConfigLoader plugin will not be able to supply
15 configuration to custom logs since the configuration is not yet finalized
16 when setup_log is run (when using ConfigLoader, which is a plugin and is
17 not loaded until later.)
18
19 As a workaround, you can supply custom log configuration directly into
20 the configuration:
21
22     package MyApp;
23     use Catalyst;
24
25     __PACKAGE__->config(
26       my_custom_log_info => { %custom_args },
27     );
28
29     __PACKAGE__->setup;
30
31 If you wish to configure the custom logger differently based on ENV, you can
32 try:
33
34     package MyApp;
35
36     use Catalyst;
37     use Catalyst::Utils;
38
39     __PACKAGE__->config(
40       Catalyst::Utils::merge_hashes(
41         +{ my_custom_log_info => { %base_custom_args } },
42         +{ do __PACKAGE__->path_to( $ENV{WHICH_CONF}."_conf.pl") },
43       ),
44     );
45
46     __PACKAGE__->setup;
47
48 Or create a standalone Configuration class that does the right thing.
49
50 Basically if you want to configure a logger via Catalyst global configuration
51 you can't use ConfigLoader because it will always be loaded too late to be of
52 any use.  Patches and workaround options welcomed!
53
54 =head2 VERSION 5.9XXXX 'cataplack'
55
56 The Catalyst::Engine sub-classes have all been removed and deprecated,
57 to be replaced with Plack handlers.
58
59 Plack is an implementation of the L<PSGI> specification, which is
60 a standard interface between web servers and application frameworks.
61
62 This should be no different for developers, and you should not have to
63 migrate your applications unless you are using a custom engine already.
64
65 This change benefits Catalyst significantly by reducing the amount of
66 code inside the framework, and means that the framework gets upstream
67 bug fixes in L<Plack>, and automatically gains support for any web server
68 which a L<PSGI> compliant handler is written for.
69
70 It also allows you more flexibility with your application, and allows
71 the use of cross web framework 'middleware'.
72
73 Developers are recommended to read L<Catalyst::Upgrading> for notes about
74 upgrading, especially if you are using an unusual deployment method.
75
76 Documentation for how to take advantage of L<PSGI> can be found in
77 L<Catalyst::PSGI>, and information about deploying your application
78 has been moved to L<Catalyst::Manual::Deployment>.
79
80 =head3 Updated modules:
81
82 A number of modules have been updated to pass their tests or not
83 produce deprecation warnings with the latest version of Catalyst.
84 It is recommended that you upgrade any of these that you are using
85 after installing this version of Catalyst.
86
87 These extensions are:
88
89 =over
90
91 =item L<Catalyst::Engine::HTTP::Prefork>
92
93 This is now deprecated, see L<Catalyst::Upgrading>.
94
95 =item L<Test::WWW::Mechanize::Catalyst>
96
97 Has been updated to not produce deprecation warnings, upgrade recommended.
98
99 =item Catalyst::ActionRole::ACL
100
101 Has been updated to fix failing tests (although older versions still
102 function perfectly with this version of Catalyst).
103
104 =item Catalyst::Plugin::Session::Store::DBIC
105
106 Has been updated to fix failing tests (although older versions still
107 function perfectly with this version of Catalyst).
108
109 =item Catalyst::Plugin::Authentication
110
111 Has been updated to fix failing tests (although older versions still
112 function perfectly with this version of Catalyst).
113
114 =back
115
116 =head1 PREVIOUS VERSIONS
117
118 =head2 VERSION 5.8XXXX 'catamoose'
119
120 =head3 Deprecations
121
122 Please see L<Catalyst::Upgrading> for a full description of how changes in the
123 framework may affect your application.
124
125 Below is a brief list of features which have been deprecated in this release:
126
127 =over
128
129 =item ::[MVC]:: style naming scheme has been deprecated and will warn
130
131 =item NEXT is deprecated for all applications and components, use MRO::Compat
132
133 =item Dispatcher methods which are an implementation detail made private, public versions now warn.
134
135 =item MyApp->plugin method is deprecated, use L<Catalyst::Model::Adaptor> instead.
136
137 =item __PACKAGE__->mk_accessors() is supported for backward compatibility only, use Moose attributes instead in new code.
138
139 =item Use of Catalyst::Base now warns
140
141 =back
142
143 =head3 New features
144
145 =head3 Dispatcher
146
147 =over
148
149 =item Fix forwarding to Catalyst::Action objects.
150
151 =item Add the dispatch_type method
152
153 =back
154
155 =head3 Restarter
156
157 The development server restarter has been improved to be compatible with
158 immutable Moose classes, and also to optionally use 
159 L<B::Hooks::OP::Check::StashChange> to handle more complex application layouts
160 correctly.
161
162 =head3 $c->uri_for_action method.
163
164 Give a private path to the Catalyst action you want to create a URI for.
165
166 =head3 Logging
167
168 Log levels have been made additive.
169
170 =head3 L<Catalyst::Test>
171
172 =over
173
174 =item Change to use L<Sub::Exporter>.
175
176 =item Support mocking multiple virtual hosts
177
178 =item New methods like action_ok and action_redirect to write more compact tests
179
180 =back
181
182 =head3 Catalyst::Response
183
184 =over
185
186 =item *
187
188 New print method which prints @data to the output stream, separated by $,.  
189 This lets you pass the response object to functions that want to write to an 
190 L<IO::Handle>.
191
192 =item *
193
194 Added code method as an alias for C<< $res->status >>
195
196 =back
197
198 =head3 Consequences of the Moose back end
199
200 =over
201
202 =item *
203
204 Components are fully compatible with Moose, and all Moose features, such as
205 method modifiers, attributes, roles, BUILD and BUILDARGS methods are fully
206 supported and may be used in components and applications.
207
208 =item *
209
210 Many reusable extensions which would previously have been plugins or base 
211 classes are better implemented as Moose roles.
212
213 =item *
214
215 L<MooseX::MethodAttributes::Role::AttrContainer::Inheritable> is used to contain action
216 attributes. This means that attributes are represented in the MOP, and
217 decouples action creation from attributes.
218
219 =item *
220
221 There is a reasonable API in Catalyst::Controller for working with
222 and registering actions, allowing a controller sub-class to replace
223 subroutine attributes for action declarations with an alternate
224 syntax.
225
226 =item *
227
228 Refactored capturing of $app from L<Catalyst::Controller> into
229 L<Catalyst::Component::ApplicationAttribute> for easier reuse in other
230 components.
231
232 =item *
233
234 Your application class is forced to become immutable at the end of compilation.
235
236 =back
237
238 =head3 Bug fixes
239
240 =over
241
242 =item *
243
244 Don't ignore SIGCHLD while handling requests with the development server, so that
245 system() and other ways of creating child processes work as expected.
246
247 =item *
248
249 Fixes for FastCGI when used with IIS 6.0
250
251 =item *
252
253 Fix a bug in uri_for which could cause it to generate paths with multiple 
254 slashes in them.
255
256 =item *
257
258 Fix a bug in Catalyst::Stats, stopping garbage being inserted into
259 the stats if a user calls begin => but no end
260
261 =back
262