Have `render()` die on exception, not return an exception object.
[catagits/Catalyst-View-TT.git] / Changes
1 Revision history for Perl extension Catalyst::View::TT.
2
3 0.32
4         - The "render()" method now dies on exception, rather than returning
5           the exception object.
6
7 0.31    2009-10-29 19:26:00
8         - Moved the test actions to their own controller file to silence
9           warning about actions in the app class being deprecated.
10
11 0.30    2009-09-12 23:47:00
12         - Doc fixes:
13           + Expand ::V:: to ::View:: (RT #45792)
14           + Expand ::C:: to ::Controller:: and use $c->view('TT')
15             where appropriate (bricas)
16           + Add note about use CGI in a template making Catalyst hang
17             (Gunnar Strand)
18         - "use warnings" in Catalyst::View::TT and output from the TT helper
19         - Expand TTSite documentation (RT #33838)
20         - Added a test for direct rendering of a template from a view object,
21           without a request.
22         - Added support for running render with a undef context.
23
24 0.29    2009-02-20 14:43:00
25         - Remove extra unwanted .gitignore from manifest
26
27 0.28    2009-02-17 20:37:00
28         - Change from NEXT to MRO::Compat (t0m)
29         - fix pod generated by the helper (RT #33983)
30         - remove stray newline from generated lib/config/col template (RT #35340)
31
32 0.27    2008-04-30 12:30:00
33         - Add copy_config support to PROVIDERS
34         - Document providers and support unary plus for fully qualified class
35           names as in the example in TT pod.
36
37 0.26    2008-01-11 20:12:00
38         - Fix pod coverage
39         - Change from =item to =head2
40         - Update docs to reflect action change
41
42 0.25    2007-01-15 16:06
43         - The little typo that cold
44
45 0.24    2006-11-15 16:34
46         - Default to .tt extension
47         - pod cleanups for generated file
48         - Move to Module::Install
49         - Use Data::Dump for debug
50
51 0.23    Sun Mar 23 20:45:00 2006
52         - Added render suport. (Ash Berlin)
53
54 0.22    Fri Jan 16 18:25:00 2006
55         - stringify $c->action for automatic template match instead of $c->req->action.
56               * NOTE * This will change the match to the private name of the matched action!
57           if you use template_suffix you have to move your templates around!
58
59 0.21    Fri Dec 16 18:25:00 2005
60         - Added Template::Provider support (Jess Robinson)
61         - Fixed dynamic include bugs and added tests. (Zbigniew Lukasiak)
62
63 0.20    Mon Dec 12 03:35:00 2005
64         - Fall back to action (default/index returns blank on match)
65         - Added tests. (Daniel Westermann-Clark)
66         - Fixed TTSite helper to use correct app name.
67         - Added support for dynamic includes.
68
69 0.19    Tue Nov 15 09:52:00 2005
70         - unbreak config.
71
72 0.18    Mon Nov 14 20:43:00 2005
73         - Fixed more typos
74
75 0.17    Mon Nov 14 20:43:00 2005
76         - Fixed some typos
77
78 0.16    Mon Nov 14 20:43:00 2005
79         - Updated TTSite for Catalyst 5.5
80
81 0.15    Mon Nov 14 14:43:00 2005
82         - Updated for Catalyst 5.5
83         - Fix docs
84         - Added TEMPLATE_SUFFIX config variable 
85
86 0.14    Fri Oct 21 10:20:00 2005
87         - Turn timer off by default, even for debug.
88         - removed superflous 'templates' inside 'root'
89         - made it possible to forward to the message action by
90           passing the message in the stash. (example)
91         - Updated docs to show correct config syntax.
92
93 0.13    Fri Oct 07 13:30:00 2005
94         - Fixed constructor
95         - Big update by Andy Wardley
96         - Much improved docs
97
98 0.12    Wed Jul 06 15:24:00 2005
99         - Fixed, don't set Content-Type on failure
100         - Fixed helper to use [%author%]
101         - Fixed helper templates
102         - Rewrote docs
103
104 0.11    Fri Apr 15 16:00:00 2005
105         - Fixed broken helper.
106
107 0.10    Fri Apr 15 16:00:00 2005
108         - Added POD tests and made them pass.
109         - updated for Catalyst 5
110         - New TT Helpers.
111
112 0.09    Wed Mar 29 13:47:00 2005
113         - Don't override user-set charset/content-type
114         - Cleaned up the content-type we set.
115         - Updated README to current POD to current POD
116
117 0.08    Wed Mar 29 12:22:00 2005
118         - changed order of stash so stash can override c/base/name
119         - fixed some typos
120         - extended the documentation (Andrew Ford)
121
122 0.07    Sat Mar 04 23:00:00 2005
123         - fixed the bugs produced by draven and the_jester ;)
124
125 0.06    Fri Mar 04 20:00:00 2005
126         - new helper api
127
128 0.05    Mon Feb 28 10:00:00 2005
129         - added helper
130
131 0.04    Sun Feb 27 22:00:00 2005
132         - better debug messages (Marcus Ramberg)
133
134 0.03    Thu Feb 17 22:00:00 2005
135         - don't try to render something without a template
136
137 0.02    Tue Feb 01 02:00:00 2005
138         - using $c->req->match instead of $c->req->action
139
140 0.01    Fri Jan 28 22:00:00 2005
141         - first release