applied patch from github
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Delta.pod
CommitLineData
8c57b129 1=head1 NAME
6c18e892 2
8c57b129 3Catalyst::Delta - Overview of changes between versions of Catalyst
4
5=head1 DESCRIPTION
6
46fff667 7This is an overview of the user-visible changes to Catalyst between major
8Catalyst releases.
9
10=head2 VERSION 5.90060+
11
fb29a8be 12=head3 Support passing Body filehandles directly to your Plack server.
0fb94688 13
46fff667 14We changed the way we return body content (from response) to whatever
15Plack handler you are using (Starman, FastCGI, etc.) We no longer
16always use the streaming interface for the cases when the body is a
17simple scalar, object or filehandle like. In those cases we now just
18pass the simple response on to the plack handler. This might lead to
19some minor differences in how streaming is handled. For example, you
0fb94688 20might notice that streaming starts properly supportubg chunked encoding when
46fff667 21on a server that supports that, or that previously missing headers
22(possible content-length) might appear suddenly correct. Also, if you
23are using middleware like L<Plack::Middleware::XSendfile> and are using
24a filehandle that sets a readable path, your server might now correctly
25handle the file (rather than as before where Catalyst would stream it
26very likely very slowly).
27
28In other words, some things might be meaninglessly different and some
29things that were broken codewise but worked because of Catalyst being
30incorrect might suddenly be really broken. The behavior is now more
31correct in that Catalyst plays better with features that Plack offers
32but if you are making heavy use of the streaming interface there could
33be some differences so you should test carefully (this is probably not
34the vast majority of people). In particular if you are developing
35using one server but deploying using a different one, differences in
36what those server do with streaming should be noted.
37
0fb94688 38Please see note below about changes to filehandle support and existing
39Plack middleware to aid in back compatibility.
40
41=head3 Distinguish between body null versus undef.
42
46fff667 43We also now more carefully distingush the different between a body set
44to '' and a body that is undef. This might lead to situations where
45again you'll get a content-length were you didn't get one before or
46where a supporting server will start chunking output. If this is an
47issue you can apply the middleware L<Plack::Middleware::BufferedStreaming>
48or report specific problems to the dev team.
b31499bc 49
0fb94688 50=head3 More Catalyst Middleware
51
52We have started migrating code in Catalyst to equivilent Plack
53Middleware when such exists and is correct to do so. For example we now use
54L<Plack::Middleware::ContentLength> to determine content length of a response
55when none is provided. This replaces similar code inlined with L<Catalyst>
56The main advantages to doing this is 1) more similar Catalyst core that is
57focused on the Catalyst special sauce, 2) Middleware is more broadly shared
58so we benefit from better collaboration with developers outside Catalyst, 3)
59In the future you'll be able to change or trim the middleware stack to get
60additional performance when you don't need all the checks and constraints.
61
62=head3 Deprecation of Filehandle like objects that do read but not getline
8e098614 63
64We also deprecated setting the response body to an object that does 'read'
65but not 'getline'. If you are using a custom IO-Handle like object for
66response you should verify that 'getline' is supported in your interface.
67You will get a first use warning for this error in your logs. Unless we
68here this case is a major issue for people, we will be removing support
0fb94688 69in a near future release of Catalyst. When the code encounters this it
70will issue a warning. You also may run into this issue with L<MogileFS::Client>
71which does read but not getline. For now we will just warn when encountering
72such an object and fallback to the previous behavior (where L<Catalyst::Engine>
73itself unrolls the filehandle and performs blocking streams). However
74this backcompat will be removed in an upcoming release so you should either
75rewrite your custom filehandle objects to support getline or start using the
76middleware that adapts read for getline L<Plack::Middleware::AdaptFilehandleRead>.
77
8a3dcb98 78=head3 Response->headers become readonly after finalizing
79
80Once the response headers are finalized, trying to change them is not allowed
81(in the past you could change them and this would lead to unexpected results).
82
0fb94688 83=head3 Offically deprecation of L<Catalyst::Engine::PSGI>
8e098614 84
85L<Catalyst::Engine::PSGI> is also officially no longer supported. We will
86no long run test cases against this and can remove backcompat code for it
87as deemed necessary for the evolution of the platform. You should simple
88discontinue use of this engine, as L<Catalyst> has been PSGI at the core
89for several years.
aa20e9f5 90
0fb94688 91=head2 Officially deprecate finding the PSGI $env anyplace other than Request
92
93A few early releases of Cataplack had the PSGI $env in L<Catalyst::Engine>.
94Code has been maintained here for backcompat reasons. This is no longer
95supported and will be removed in upcoming release, so you should update
96your code and / or upgrade to a newer version of L<Catalyst>
97
8a3dcb98 98=head2 Deprecate setting Response->body after using write/write_fh
99
100Setting $c->res->body to a filehandle after using $c->res->write or
101$c->res->write_fh is no longer considered allowed, since we can't send
102the filehandle to the underlying Plack handler. For now we will continue
3157d22a 103to support setting body to a simple value since this is possible, but at
104some future release a choice to use streaming indicates that you will do
105so for the rest of the request.
8a3dcb98 106
5bb2a5b3 107=head2 VERSION 5.90053
108
109We are now clarifying the behavior of log, plugins and configuration during
110the setup phase. Since Plugins might require a log during setup, setup_log
111must run BEFORE setup_plugins. This has the unfortunate side effect that
112anyone using the popular ConfigLoader plugin will not be able to supply
113configuration to custom logs since the configuration is not yet finalized
114when setup_log is run (when using ConfigLoader, which is a plugin and is
115not loaded until later.)
116
117As a workaround, you can supply custom log configuration directly into
118the configuration:
119
120 package MyApp;
121 use Catalyst;
122
123 __PACKAGE__->config(
124 my_custom_log_info => { %custom_args },
125 );
126
127 __PACKAGE__->setup;
128
129If you wish to configure the custom logger differently based on ENV, you can
130try:
131
132 package MyApp;
133
134 use Catalyst;
135 use Catalyst::Utils;
136
137 __PACKAGE__->config(
138 Catalyst::Utils::merge_hashes(
139 +{ my_custom_log_info => { %base_custom_args } },
140 +{ do __PACKAGE__->path_to( $ENV{WHICH_CONF}."_conf.pl") },
141 ),
142 );
143
144 __PACKAGE__->setup;
145
146Or create a standalone Configuration class that does the right thing.
147
148Basically if you want to configure a logger via Catalyst global configuration
149you can't use ConfigLoader because it will always be loaded too late to be of
150any use. Patches and workaround options welcomed!
151
9b3b1b9c 152=head2 VERSION 5.9XXXX 'cataplack'
c20710a1 153
154The Catalyst::Engine sub-classes have all been removed and deprecated,
155to be replaced with Plack handlers.
156
157Plack is an implementation of the L<PSGI> specification, which is
158a standard interface between web servers and application frameworks.
159
160This should be no different for developers, and you should not have to
161migrate your applications unless you are using a custom engine already.
162
163This change benefits Catalyst significantly by reducing the amount of
164code inside the framework, and means that the framework gets upstream
165bug fixes in L<Plack>, and automatically gains support for any web server
166which a L<PSGI> compliant handler is written for.
167
168It also allows you more flexibility with your application, and allows
169the use of cross web framework 'middleware'.
170
171Developers are recommended to read L<Catalyst::Upgrading> for notes about
172upgrading, especially if you are using an unusual deployment method.
173
174Documentation for how to take advantage of L<PSGI> can be found in
175L<Catalyst::PSGI>, and information about deploying your application
176has been moved to L<Catalyst::Manual::Deployment>.
177
178=head3 Updated modules:
179
180A number of modules have been updated to pass their tests or not
181produce deprecation warnings with the latest version of Catalyst.
182It is recommended that you upgrade any of these that you are using
183after installing this version of Catalyst.
184
185These extensions are:
186
187=over
188
189=item L<Catalyst::Engine::HTTP::Prefork>
190
191This is now deprecated, see L<Catalyst::Upgrading>.
192
193=item L<Test::WWW::Mechanize::Catalyst>
194
195Has been updated to not produce deprecation warnings, upgrade recommended.
196
197=item Catalyst::ActionRole::ACL
198
199Has been updated to fix failing tests (although older versions still
200function perfectly with this version of Catalyst).
201
202=item Catalyst::Plugin::Session::Store::DBIC
203
204Has been updated to fix failing tests (although older versions still
205function perfectly with this version of Catalyst).
206
14eb7697 207=item Catalyst::Plugin::Authentication
208
209Has been updated to fix failing tests (although older versions still
210function perfectly with this version of Catalyst).
211
c20710a1 212=back
1fae8c61 213
214=head1 PREVIOUS VERSIONS
215
9b3b1b9c 216=head2 VERSION 5.8XXXX 'catamoose'
1fae8c61 217
218=head3 Deprecations
b31499bc 219
e88235ff 220Please see L<Catalyst::Upgrading> for a full description of how changes in the
221framework may affect your application.
222
223Below is a brief list of features which have been deprecated in this release:
224
796a8358 225=over
b31499bc 226
796a8358 227=item ::[MVC]:: style naming scheme has been deprecated and will warn
b31499bc 228
e88235ff 229=item NEXT is deprecated for all applications and components, use MRO::Compat
b31499bc 230
e88235ff 231=item Dispatcher methods which are an implementation detail made private, public versions now warn.
b31499bc 232
e88235ff 233=item MyApp->plugin method is deprecated, use L<Catalyst::Model::Adaptor> instead.
796a8358 234
0a3b8de0 235=item __PACKAGE__->mk_accessors() is supported for backward compatibility only, use Moose attributes instead in new code.
236
7df44a71 237=item Use of Catalyst::Base now warns
238
796a8358 239=back
240
1fae8c61 241=head3 New features
0a3b8de0 242
243=head3 Dispatcher
b31499bc 244
7df44a71 245=over
246
247=item Fix forwarding to Catalyst::Action objects.
248
249=item Add the dispatch_type method
250
251=back
b31499bc 252
0a3b8de0 253=head3 Restarter
b31499bc 254
6171ddd5 255The development server restarter has been improved to be compatible with
256immutable Moose classes, and also to optionally use
257L<B::Hooks::OP::Check::StashChange> to handle more complex application layouts
258correctly.
b31499bc 259
7df44a71 260=head3 $c->uri_for_action method.
b31499bc 261
7df44a71 262Give a private path to the Catalyst action you want to create a URI for.
6c18e892 263
0a3b8de0 264=head3 Logging
b31499bc 265
7df44a71 266Log levels have been made additive.
b31499bc 267
0a3b8de0 268=head3 L<Catalyst::Test>
269
270=over
271
272=item Change to use L<Sub::Exporter>.
273
0a3b8de0 274=item Support mocking multiple virtual hosts
275
276=item New methods like action_ok and action_redirect to write more compact tests
277
278=back
279
7df44a71 280=head3 Catalyst::Response
0a3b8de0 281
7df44a71 282=over
283
284=item *
285
286New print method which prints @data to the output stream, separated by $,.
287This lets you pass the response object to functions that want to write to an
288L<IO::Handle>.
289
290=item *
291
292Added code method as an alias for C<< $res->status >>
0a3b8de0 293
d5a6de01 294=back
295
1fae8c61 296=head3 Consequences of the Moose back end
b31499bc 297
796a8358 298=over
299
300=item *
301
7df44a71 302Components are fully compatible with Moose, and all Moose features, such as
303method modifiers, attributes, roles, BUILD and BUILDARGS methods are fully
304supported and may be used in components and applications.
305
306=item *
307
308Many reusable extensions which would previously have been plugins or base
309classes are better implemented as Moose roles.
310
311=item *
312
a0c37f08 313L<MooseX::MethodAttributes::Role::AttrContainer::Inheritable> is used to contain action
7df44a71 314attributes. This means that attributes are represented in the MOP, and
315decouples action creation from attributes.
796a8358 316
317=item *
318
0a3b8de0 319There is a reasonable API in Catalyst::Controller for working with
796a8358 320and registering actions, allowing a controller sub-class to replace
25f61108 321subroutine attributes for action declarations with an alternate
0a3b8de0 322syntax.
796a8358 323
324=item *
325
0a3b8de0 326Refactored capturing of $app from L<Catalyst::Controller> into
327L<Catalyst::Component::ApplicationAttribute> for easier reuse in other
7df44a71 328components.
329
330=item *
331
332Your application class is forced to become immutable at the end of compilation.
333
334=back
335
1fae8c61 336=head3 Bug fixes
7df44a71 337
338=over
339
340=item *
341
25f61108 342Don't ignore SIGCHLD while handling requests with the development server, so that
7df44a71 343system() and other ways of creating child processes work as expected.
344
345=item *
346
347Fixes for FastCGI when used with IIS 6.0
348
349=item *
350
351Fix a bug in uri_for which could cause it to generate paths with multiple
352slashes in them.
796a8358 353
354=item *
355
7df44a71 356Fix a bug in Catalyst::Stats, stopping garbage being inserted into
357the stats if a user calls begin => but no end
796a8358 358
359=back
360