cc8a86b8112c82a5bd6a40f156f950a7271250f0
[catagits/Catalyst-View-TT.git] / Changes
1 Revision history for Perl extension Catalyst::View::TT.
2
3         - declare missing prereq on Data::Dump
4
5 0.43 - 2015-08-13
6         - remove mention of deprecated Catalyst::Plugin::Email in
7           documentation
8
9 0.42   2014-12-29
10         - Fixes to test cases to be compatible with Catalyst v5.90080
11         - Added a Unicode test designed to check new Catalyst function
12         - Docs for above
13
14 0.41   2013-02-28
15         - New local attribute to let you override the default content type when
16           no content type has been set for the response.
17
18 0.40   2013-01-15 20:52:14
19         - Fix hash randomisation breakage in tests (RT#82703)
20
21 0.39   2012-04-11 07:40:00
22         - Fix warning from tests. RT#75104
23         - Fix ExtUtils::MakeMaker version requirement (due to last release
24           being made with faulty Module::Install). RT#76488
25
26 0.38   2012-02-15 20:42:00
27         - Change documentation to reflect use of Moose.
28         - Change documentation to highlight how to configure
29           UTF-8 in templates.
30         - Change documentation to recommend putting calls to MyApp->path_to
31           into the app class itself, ergo avoiding recursive dependencies
32           and making the view compile standalone.
33         - Change code generated by Catalyst::Helper::View::TT
34           to use Moose.
35
36 0.37   2011-07-17 09:20:00
37         - Allow setting of TT class rather than forcing 'Template'
38
39 0.36   2010-10-19 15:00:00
40         - Fixed subclassing when using expose_methods
41
42 0.35   2010-08-26 01:38:00
43         - Add expose_methods functionality
44         - add template name to exceptions
45         - update render_die message to be more concise.
46         - Doc fixes (RT#57159)
47         - Silence warnings about Template::Provider::Encoding (RT #56310)
48
49 0.34   2010-04-07 04:14:50
50         - Fix the process method to have the previous behaviour of reporting
51           an error to Catalyst if a Template::Exception object is returned by
52           the render method (i.e. when render_die is unset or set to 0).
53         - Fix the warning issued about missing the render_die config option to
54           log using the standard Catalyst logging system (rather than Carping
55           directly), and to only issue the warning at debug level / when
56           in debug mode. The severity of this warning will be increased in
57           a later release.
58
59 0.33   2010-03-10 20:08:00
60         - The "render()" method now throws a warning on exception before
61           returning the exception. To silence the warning, pass 'render_die =>
62           0' to the constructor. Better yet, pass 'render_die => 1' to make it
63           die instead of returning the excption. This will be the default in a
64           future release when unspecified. The Helper will generate new views
65           with render_die => 1.
66
67 0.32    2010-02-16 05:55:00
68         - Various documentation improvements.
69         - Fix repository metadata.
70
71 0.31    2009-10-29 19:26:00
72         - Moved the test actions to their own controller file to silence
73           warning about actions in the app class being deprecated.
74
75 0.30    2009-09-12 23:47:00
76         - Doc fixes:
77           + Expand ::V:: to ::View:: (RT #45792)
78           + Expand ::C:: to ::Controller:: and use $c->view('TT')
79             where appropriate (bricas)
80           + Add note about use CGI in a template making Catalyst hang
81             (Gunnar Strand)
82         - "use warnings" in Catalyst::View::TT and output from the TT helper
83         - Expand TTSite documentation (RT #33838)
84         - Added a test for direct rendering of a template from a view object,
85           without a request.
86         - Added support for running render with a undef context.
87
88 0.29    2009-02-20 14:43:00
89         - Remove extra unwanted .gitignore from manifest
90
91 0.28    2009-02-17 20:37:00
92         - Change from NEXT to MRO::Compat (t0m)
93         - fix pod generated by the helper (RT #33983)
94         - remove stray newline from generated lib/config/col template (RT #35340)
95
96 0.27    2008-04-30 12:30:00
97         - Add copy_config support to PROVIDERS
98         - Document providers and support unary plus for fully qualified class
99           names as in the example in TT pod.
100
101 0.26    2008-01-11 20:12:00
102         - Fix pod coverage
103         - Change from =item to =head2
104         - Update docs to reflect action change
105
106 0.25    2007-01-15 16:06
107         - The little typo that cold
108
109 0.24    2006-11-15 16:34
110         - Default to .tt extension
111         - pod cleanups for generated file
112         - Move to Module::Install
113         - Use Data::Dump for debug
114
115 0.23    Sun Mar 23 20:45:00 2006
116         - Added render suport. (Ash Berlin)
117
118 0.22    Fri Jan 16 18:25:00 2006
119         - stringify $c->action for automatic template match instead of $c->req->action.
120               * NOTE * This will change the match to the private name of the matched action!
121           if you use template_suffix you have to move your templates around!
122
123 0.21    Fri Dec 16 18:25:00 2005
124         - Added Template::Provider support (Jess Robinson)
125         - Fixed dynamic include bugs and added tests. (Zbigniew Lukasiak)
126
127 0.20    Mon Dec 12 03:35:00 2005
128         - Fall back to action (default/index returns blank on match)
129         - Added tests. (Daniel Westermann-Clark)
130         - Fixed TTSite helper to use correct app name.
131         - Added support for dynamic includes.
132
133 0.19    Tue Nov 15 09:52:00 2005
134         - unbreak config.
135
136 0.18    Mon Nov 14 20:43:00 2005
137         - Fixed more typos
138
139 0.17    Mon Nov 14 20:43:00 2005
140         - Fixed some typos
141
142 0.16    Mon Nov 14 20:43:00 2005
143         - Updated TTSite for Catalyst 5.5
144
145 0.15    Mon Nov 14 14:43:00 2005
146         - Updated for Catalyst 5.5
147         - Fix docs
148         - Added TEMPLATE_SUFFIX config variable 
149
150 0.14    Fri Oct 21 10:20:00 2005
151         - Turn timer off by default, even for debug.
152         - removed superflous 'templates' inside 'root'
153         - made it possible to forward to the message action by
154           passing the message in the stash. (example)
155         - Updated docs to show correct config syntax.
156
157 0.13    Fri Oct 07 13:30:00 2005
158         - Fixed constructor
159         - Big update by Andy Wardley
160         - Much improved docs
161
162 0.12    Wed Jul 06 15:24:00 2005
163         - Fixed, don't set Content-Type on failure
164         - Fixed helper to use [%author%]
165         - Fixed helper templates
166         - Rewrote docs
167
168 0.11    Fri Apr 15 16:00:00 2005
169         - Fixed broken helper.
170
171 0.10    Fri Apr 15 16:00:00 2005
172         - Added POD tests and made them pass.
173         - updated for Catalyst 5
174         - New TT Helpers.
175
176 0.09    Wed Mar 29 13:47:00 2005
177         - Don't override user-set charset/content-type
178         - Cleaned up the content-type we set.
179         - Updated README to current POD to current POD
180
181 0.08    Wed Mar 29 12:22:00 2005
182         - changed order of stash so stash can override c/base/name
183         - fixed some typos
184         - extended the documentation (Andrew Ford)
185
186 0.07    Sat Mar 04 23:00:00 2005
187         - fixed the bugs produced by draven and the_jester ;)
188
189 0.06    Fri Mar 04 20:00:00 2005
190         - new helper api
191
192 0.05    Mon Feb 28 10:00:00 2005
193         - added helper
194
195 0.04    Sun Feb 27 22:00:00 2005
196         - better debug messages (Marcus Ramberg)
197
198 0.03    Thu Feb 17 22:00:00 2005
199         - don't try to render something without a template
200
201 0.02    Tue Feb 01 02:00:00 2005
202         - using $c->req->match instead of $c->req->action
203
204 0.01    Fri Jan 28 22:00:00 2005
205         - first release