Refactored the Content-Type negotiation to live in Catalyst::Request::REST.(drolsky)
[catagits/Catalyst-Action-REST.git] / Changelog
CommitLineData
9a76221e 1Fri Mar 9 14:13:29 PST 2007 (adam) - Release 0.40
2 Refactored the Content-Type negotiation to live in Catalyst::Request::REST.
3 (drolsky)
4 Added some useful debugging. (drolsky)
5 Added a View serializer/deserializer, which simply calls the correct
6 Catalyst view. ('text/html' => [ 'View', 'TT' ]) (claco, adam)
7
2224bad1 8Wed Dec 6 00:45:02 PST 2006 (adam) - Release 0.31
9 Fixed a bug where we would report a blank content-type negotiation.
10 Added Data::Dump as a dependency.
11
a621925a 12Tue Dec 5 13:02:08 PST 2006 (adam)
13 Made the YAML::HTML view automatically append content-type=text/html on
14 the resulting URLs.
15
8f00a41b 16Sun Dec 3 12:24:16 PST 2006 (adam) - Release 0.30
17 Updated the Makefile to support optional installation of the different
18 Serialization formats.
19 Renamed some of the test cases, since the execution order doesn't
20 matter.
e601adda 21 Fixed things so that not having a Serialization module returns 415.
22 Fixed things so that failure to Deserialize sends the proper status.
23 Refactored the Plugin loading to Catalyst::Action::SerializeBase.
24 Updated the Documentation.
25 Added a whole raft of serializers. (JSON, all the Data::Serializer
26 supported ones, and XML::Simple)
27 Added test cases.
28
d34c067a 29Thu Nov 30 23:51:04 PST 2006 (adam)
30 Refactored the Catalyst::Action::REST dispatch, so that the default
31 method is called before any _METHOD handlers. In addition, moved
32 the 405 Not Implemented handler to be foo_not_implemented, instead
33 of the default sub. (daisuke++ pointed out the inconsistency and
34 provided a patch, and I added the foo_not_implemented support)
35
5e87ec47 36 Added in automated OPTIONS handler, which constructs the allow
d34c067a 37 header for you, just like the 405 handler. Can be overridden
38 with a normal _METHOD sub.
39
40 Refactored Test::Rest, so that it uses closures to create the
5e87ec47 41 very similar $test->method() subs.
d34c067a 42
43 Added tests for Catalyst::Action::REST.
44
33e5de96 45Thu Nov 30 17:14:51 PST 2006 (adam) - Release 0.2
46 Added documentation patch from Daisuke Maki (daisuke@endeworks.jp)
47 Added dependency patch from Daisuke Maki (daisuke@endeworks.jp)
48
49Sun Nov 19 16:24:20 PST 2006 (adam) - Release 0.1
398c5a1b 50 Added status_accepted (Code 202)
51 Added a first pass at documentation.
52
7ad87df9 53Mon Oct 16 14:48:54 PDT 2006 (adam)
54 Added in Test Suite
55 Created Catalyst::Action::Serialize and Catalyst::Action::Deserialize
56 Added Data::Serializer actions
5511d1ff 57 Added status_created helper method
cc186a5b 58
59Wed Oct 18 17:29:07 PDT 2006 (adam)
60 Added more status_ helpers
61
bdc54939 62Thu Oct 19 16:04:33 PDT 2006 (adam)
63 Converted error helpers to return an object instead of plain-text. It's
64 a more consistent model than a text/plain error message.
edab9038 65 Added logging to 4xx status handlers
bdc54939 66