0.69
[catagits/Catalyst-Action-REST.git] / Changes
CommitLineData
5b7421ba 1Thu Mar 26 14:16:03 PDT 2009 (hdp) - Release 0.69
7b8c5be2 2 Fix RT#32342, deprecated config loses default map (hdp)
5b7421ba 3 Fix broken insertion of Catalyst::Request::REST for Action::REST (jshirley)
7b8c5be2 4
f4d8894f 5Wed Mar 25 22:33:38 PDT 2009 (hdp) - Release 0.68
6 Remove prompt for ancient and deprecated Data::Denter from Makefile.PL
7 Remove Data::Dump, which was entirely unused
8 Stop tests from dying with Catalyst 5.80
3d38a43f 9
b946af8e 10Wed Mar 25 21:59:59 PDT 2009 (hdp) - Release 0.67
11 (no changes from 0.67_01)
12
13Wed Mar 25 09:36:00 PDT 2009 (hdp) - Release 0.67_01
36f2f396 14 Fix RT#43840, improper app-level config handling
15 Fix RT#42859, 'wrong' Catalyst dependency
16 Fix RT#42025, stepping on custom request classes
bc48916f 17
2f7533ed 18Wed Aug 20 10:42:00 PST 2008 (jshirley) - Release 0.65
19 Fully revamped tests to work without any JSON support
20 Final removal of JSON::Syck
21 Special thanks to jgoulah for helping test this release
22
6023cdb2 23Wed Aug 13 08:55:00 PST 2008 (jshirley) - Release 0.64
24 New dist to fix issue with Module::Install
25
ebba5325 26Wed Jul 09 11:16:00 PST 2008 (jshirley) - Release 0.63
27 Changing from JSON::Syck to JSON/JSON::XS
28 Refactored tests to be more applicable to current state of affairs
29
df26b361 30Wed Jul 02 07:53:00 PST 2008 (jshirley) - Release 0.62
31 Reshipping with current Module::Install included due to error reports
32 about failed installs
33
832e768d 34
35Mon Jun 30 12:28:00 PST 2008 (jshirley) - Release 0.61
d6fb033c 36 Support official application/json and carp about text/x-json
832e768d 37 Accepted patch from Luke Saunders for processing all accepted content types
d6fb033c 38
9f16ba15 39Thu Jan 3 17:23:58 PST 2008 (adam) - Release 0.60
40 Updated my contact information.
41 Prepped for release.
42
43Thu Jan 3 19:42:16 EST 2008
d4611771 44 Fixed RT#30498 - REST controller references Catalyst without
45 loading it first.
46 Fixed RT#32042 - Import of Params::Validate :all plays badly
47 with subclasses that have their own validate()
48 Fixed RT#30456 - Debug messages print even with debugging disabled
49
bc343d3a 50Thu Jan 3 08:54:09 PST 2008
51 Fixed an issue where YAML::Syck versions 0.92 require $c->request->body to
d4611771 52 be stringified
bc343d3a 53
9f16ba15 54Fri Dec 21 15:23:46 EDT 2007
bc343d3a 55 Updated the configuration specifiers to operate more in line with the way
56 Catalyst expects. Most notably component based configuration through
57 "Controller::RestClass" now works. "serialize" at the top level simply
58 is suggested defaults that all REST classes inherit.
59
367b3ff4 60Wed Jul 04 11:17:20 EDT 2007
61 Fixed 'default' serializer to set a valid Content-Type: header. Fixes
62 RT ticket 27949. Note that behavior has changed -- the default
63 serializer must now be specified as a content-type, not as a plugin
64 name. (dmo@roaringpenguin.com)
65
28463ece 66Thu May 24 14:01:06 PDT 2007 (adam) - Release 0.41
367b3ff4 67 Moved a bogus $self->class to $c->component($self->class)
28463ece 68
9a76221e 69Fri Mar 9 14:13:29 PST 2007 (adam) - Release 0.40
367b3ff4 70 Refactored the Content-Type negotiation to live in Catalyst::Request::REST. (drolsky)
71 Added some useful debugging. (drolsky)
72 Added a View serializer/deserializer, which simply calls the correct
73 Catalyst view. ('text/html' => [ 'View', 'TT' ]) (claco, adam)
9a76221e 74
2224bad1 75Wed Dec 6 00:45:02 PST 2006 (adam) - Release 0.31
76 Fixed a bug where we would report a blank content-type negotiation.
77 Added Data::Dump as a dependency.
78
a621925a 79Tue Dec 5 13:02:08 PST 2006 (adam)
80 Made the YAML::HTML view automatically append content-type=text/html on
81 the resulting URLs.
82
8f00a41b 83Sun Dec 3 12:24:16 PST 2006 (adam) - Release 0.30
84 Updated the Makefile to support optional installation of the different
85 Serialization formats.
86 Renamed some of the test cases, since the execution order doesn't
87 matter.
e601adda 88 Fixed things so that not having a Serialization module returns 415.
89 Fixed things so that failure to Deserialize sends the proper status.
90 Refactored the Plugin loading to Catalyst::Action::SerializeBase.
91 Updated the Documentation.
92 Added a whole raft of serializers. (JSON, all the Data::Serializer
93 supported ones, and XML::Simple)
94 Added test cases.
95
d34c067a 96Thu Nov 30 23:51:04 PST 2006 (adam)
97 Refactored the Catalyst::Action::REST dispatch, so that the default
98 method is called before any _METHOD handlers. In addition, moved
99 the 405 Not Implemented handler to be foo_not_implemented, instead
100 of the default sub. (daisuke++ pointed out the inconsistency and
101 provided a patch, and I added the foo_not_implemented support)
102
5e87ec47 103 Added in automated OPTIONS handler, which constructs the allow
d34c067a 104 header for you, just like the 405 handler. Can be overridden
105 with a normal _METHOD sub.
106
107 Refactored Test::Rest, so that it uses closures to create the
5e87ec47 108 very similar $test->method() subs.
d34c067a 109
110 Added tests for Catalyst::Action::REST.
111
33e5de96 112Thu Nov 30 17:14:51 PST 2006 (adam) - Release 0.2
113 Added documentation patch from Daisuke Maki (daisuke@endeworks.jp)
114 Added dependency patch from Daisuke Maki (daisuke@endeworks.jp)
115
116Sun Nov 19 16:24:20 PST 2006 (adam) - Release 0.1
398c5a1b 117 Added status_accepted (Code 202)
118 Added a first pass at documentation.
119
7ad87df9 120Mon Oct 16 14:48:54 PDT 2006 (adam)
121 Added in Test Suite
122 Created Catalyst::Action::Serialize and Catalyst::Action::Deserialize
123 Added Data::Serializer actions
5511d1ff 124 Added status_created helper method
cc186a5b 125
126Wed Oct 18 17:29:07 PDT 2006 (adam)
127 Added more status_ helpers
128
bdc54939 129Thu Oct 19 16:04:33 PDT 2006 (adam)
130 Converted error helpers to return an object instead of plain-text. It's
131 a more consistent model than a text/plain error message.
edab9038 132 Added logging to 4xx status handlers
bdc54939 133