e55e08fac80e83a424b03311acd7fca69b21fa24
[catagits/Catalyst-Manual.git] / Changes
1 Revision history for Catalyst-Manual
2
3 5.8901 7 Aug 2011 - TRIAL RELEASE
4     - Added Catalyst::Manual::Deployment containing the documentation
5       which used to be in Catalyst::Engine::*, updated for the
6       new PSGI engine.
7
8 5.8008 2 Aug 2011
9     - Tutorial chaper 3
10       - Remove note about hacking tests to require MyApp so that MyApp->path_to
11         works. Application components should compile independently, and
12         therefore explain this and show configuring components from the
13         app class.
14
15     - Tutorial appendix
16       - Fix confusing mix of singular and plural table names in the MySQL
17         section to be plural, as per the rest of the tutorial.
18
19     - Cookbook
20       - Remove suggestion to generate RSS feeds using Template Toolkit.
21         This is a horrible idea, and it's very very easy to generate an
22         invalid feed.
23
24 5.8007 29 Feb 2011
25     - Tutorial
26       - Switch to use of DBIx::Class::PassphraseColumn for hashed & salted
27         passwords. It's much more flexible than the previously used
28         DBIx::Class::EncodedColumn.
29
30 5.8006 29 Feb 2011
31     - Fix metadata to refer to the new git repository
32     - Cookbook
33       - Small fixes and typos
34     - Tutorial
35       - Various typo fixes.
36       - RT #57989: typo
37       - RT #61486: correct instructions for MySQL
38       - RT #62095: prevent XSS
39       - RT #62095: persistent message on /login
40       - RT #63057: typo
41       - RT #64087: typos
42       - RT #64126: Use precise name of licence
43       - RT #64126: typos
44       - RT #67820: fix relationship decleration
45       - Do not recommend FastMmap
46     - DevelopmentProcess
47       - RT #62610: typo
48
49 5.8005 27 Oct 2010
50     - Tutorial:
51         - Add DATABASE CONFIG SWITCHING USING MULTIPLE CONFIG FILES section
52         - Critical bugfix on index page.
53 5.8004 17 Feb 2010
54     - Tutorial:
55         - Add foreign key support for SQLite
56             (huge thanks to Caelum for that and other good edits!)
57         - Add "Quick Start" to Intro (Chapter 1)
58         - Switch to use of "-r" to auto-restart the dev svr
59         - Update for latest available Debian package versions
60         - Switch to individual files for example code vs. tarballs
61         - Switch to 'done_testing' and shorter 'prove' args for testing chapter
62         - Misc typo fixes
63     - Other:
64         - Minor Cookbook edits
65
66 5.8003 28 Dec 2009
67     - Variety of typo fixes
68     - Fix incorrectness re :Global and :Local
69     - Update DevelopmentProcess.pod
70
71 5.8002 15 Nov 2009
72     - Update tutorial to match latest prepacked versions in Debian 5
73     - Add FormHandler branch (with thanks to gshank!)
74     - Misc cleanup/freshing up of tutorial.
75     - Fix indenting issue (with thanks to Kiffin Gish)
76     - Integrate tome fix branch (with thanks to tome!)
77     - Add a "negative" test to confirm that test02 does not have an admin create link
78     - Integrate sqlite3 clarification and link by wolfman2000 from tutorial_role_updates branch
79     - Fix Pod typos in ::Internals (RT#51488)
80     - Fix Pod typos in the Cookbook (RT#51466)
81     - Fix a Test::Pod failure and make Debian happier.
82     - Typo fixes from garu
83     - Misc minor and/or typo fixes
84
85 5.8001 06 Oct 2009
86     - Tutorial
87         - Fix RT #46760
88         - Fix RT #46618
89         - Fix cat-install script URL
90         - Fix typos
91         - Replace reference to deprecated CatalystX::ListFramework::Builder
92           with Catalyst::Plugin::AutoCRUD
93     - Other
94         - Lots of updates thanks to t0m
95         - Update development process / core team docs
96         - Cookbook fixes WRT authorization
97         - Better description of application setup process
98         - Fix some links
99         - Normalise spacing
100
101 5.8000 27 May 2009
102     - Tutorial:
103         - Update for Catalyst 5.80
104         - Update to "depluralize" the database names (big thanks to Kiffin Gish!)
105         - Switch back to including numbers in chapter names (for proper sorting)
106         - Add section to Ch 4: "Moving Complicated View Code to the Model"
107         - Add section to Ch 3: "RenderView's 'dump_info' Feature"
108         - Misc fixes and updates (thanks to Anne Wainwright)
109     - Other:
110         - Add some 5.8 and Moose-specific material to the new CatalystAndMoose.pod
111             (thanks to t0m and Sebastian Willert)
112
113 5.7021  8 May 2009
114     - Tutorial:
115         - Switch to SimpleDB for auth
116         - Switch to use of DBIx::Class::EncodedColumn for hashed & salted passwords
117         - Re-write PostgreSQL section in appendix
118         - Remove "create=dynamic" and only cover "create=static" for DBIC helper
119     - Other:
120         - Rewrite / clean up a big chunk of Catalyst::Manual::Intro (Ian Wells)
121         - There is no Catalyst::Config, fix reference to it. (t0m)
122         - Misc minor adjustments
123
124 5.7020  12 Mar 2009
125     - Tutorial:
126         - Fix errors in FormFu chapter
127
128 5.7019  11 Mar 2009
129     - Tutorial:
130         - Change from the use of "part" to refer to each .pod file for the
131             tutorial in favor of the more intuitive word "chapter."  "Part"
132             was just to ambiguous (e.g., does "prior part" refer to the prior
133             .pod file or the prior section in the current .pod file).
134         - Move use of "load_namespaces" for DBIC from BasicCRUD to
135             MoreCatalystBasics
136         - Update the "Table of Contents" in Tutorial.pod to match the current
137             sections
138         - Fix a few typos
139
140 5.7018  8 Mar 2009
141     - Tutorial:
142         - Add a new section to BasicCRUD covering more advanced features of
143             DBIC ("EXPLORING THE POWER OF DBIC")
144         - Convert from Ubuntu to Debian 5 live CD as the recommended way to do
145             the tutorial (all code and examples updated and tested to match)
146         - Removed Catalyst::Plugin::Authorization::ACL from Authorization.pod
147             in favor of a "chained and model-based" approach
148         - More conversion to Chained dispatch
149         - Suggestions and fixes with thanks to mintywalker@gmail.com
150         - DBIC-related updates in MoreCatalystBasics
151         - Fix misplaced "=over 4" in previous release
152         - Reword warning about not using GET for delete based on input from kd
153         - Lots of other small adjustments
154
155 5.7017  28 Feb 2009
156     - Tutorial:
157         - Main change = adding Chained dispatch starting in BasicCRUD (Part 4)
158         - Change FormFu tutorial to not use deprecated methods (Del Merritt)
159         - MoreCatalystBasics - Additional clarification about TTSite
160           (Del Merritt)
161         - Tutorial::Authorization - Corrects the ACL for "/books/delete"
162                                   - Additional comments
163           (Del Merritt)
164         - Tutorial::AdvancedCRUD::FormFu - suggest how the intrepid user
165           might now proceed, having completed the Tutorial. (Del Merritt)
166         - Fix typo in Authorization section (RT #42091)
167         - Fix typo in BasicCRUD (RT #42034)
168         - Resolve outstanding typo and suggestions in MoreCatalystBasics (RT #41491)
169         - Fix DBIC create for MySQL in Appendix (Jarom)
170     - Other:
171         - Misc minor updates
172         - Add some "getting started" links to the Catalyst::Manual page
173
174 5.7016  28 Dec 2008
175     - Tutorial:
176         - Updates to make Parts 8 & 9 run correctly
177         - Adjust URLs for final config tarballs
178         - Add note about changes across different C::Devel on how plugins enabled
179         - Misc minor updates
180
181 5.7015  15 Dec 2008
182     - Tutorial:
183         - Remove TTSite from Tutorial (thanks to dhoss for the help)
184         - Update Tutorial for Ubuntu 8.10 (therefore update to
185           Cat v5.7014, C::Devel v1.07, DBIC v0.08010, etc.)
186         - Reorganize MoreCatalystBasics.pod so user is able to run
187           the app the first time much earlier and build on it from
188           there (running the app each time along the way)
189         - Update URL for latest copy in SVN to match new location of repo
190     - Other:
191         - Misc typo fix
192         - Change use of Class::C3 to MRO::Compat, as rafl tells me
193             this is best practice, and gives you native next::method in
194             5.10. (t0m)
195
196 5.7014   04 Nov 2008
197     - Remove a reference to a FOREACH loop that did not exist (RT #39046)
198     - Changed some Template Toolkit links to perldoc links (RT #38354)
199     - Fix Template Toolkit website link (RT #37574)
200     - Fix part numbering (RT #37963)
201     - Improvements to the ACCEPT_CONTEXT docs in Manual::Intro
202     - Happy Election Day, America!
203
204 5.7013   09 Jul 2008
205     - revert to use Catalyst qw/@plugins/ style
206
207 5.7012   29 May 2008
208     - Expurgation of all use of default :Private and index :Private in favour
209       of default :Path and index :Path :Args(0)
210     - Expurgation of all yaml as configuration format
211     - Major updates to tutorial, thanks hkclark and gerda
212
213 5.7011   16 May 2008
214     - added warnings and poiinters to newer examples in HTML::Widget,
215       and Authentication parts of the tutorial.
216     - pod fix (RT #32636)
217
218 5.701004 09 Apr 2008
219     - rename placeholder back to Manual.pm, this will probably trigger
220       a ppm bug but that's ppm's problem
221
222 5.701003 08 Oct 2007
223     - Patch to Cookbook from bits.
224
225 5.701002 25 Aug 2007
226
227 5.701001 17 Aug 2007
228     - Changes to mocation of lib/Catalyst/Manual.pod to
229       lib/Catalyst/ManualPlaceholder.pm to keep cpan indexer happy.
230
231 5.700704 08 Aug 2007
232     - Updated mailing list addresses to scsys.co.uk domains
233
234 5.700703
235     - Cookbook: Updated development server deployment instructions, and
236       included a better description of the POE engine.
237
238 5.700702 26 April 2007
239     - Switch to Module::Install
240
241 5.700701 19 April 2007
242     - Removal of WritingPlugins. ExtendingCatalyst is now the main resource
243       for extensions to the framework and the application.
244
245 5.700501 10 November 2006
246     - Matches Catalyst-Runtime 5.7005
247
248 5.700401 07 November 2006
249     - First release to CPAN; matches Catalyst-Runtime 5.7004.
250
251 5.700301 20 October 2006
252     - Splitting manual into its own distro