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