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