Download Install Tutorial Docs FAQ Tools WikiLicense Team IRC Planet Involvement Shop Book

root/branches/cherrypy-2.1/CHANGELOG.txt

Revision 744 (checked in by rdelon, 5 years ago)

Preparing for 2.1.0 release

Line 
1 2005-10-21:
2     * CherryPy-2.1.0 released
3     * Changed the default value for sessionFilter.locking from "implicit" to "explicit" (remi)
4
5 2005-10-06:
6     * CherryPy-2.1.0-rc2 released
7     * Bug in sessionfilter fixed
8
9 2005-09-15:
10     * CherryPy-2.1.0-rc1 released
11
12 2005-09-14:
13     * The new HTTP error mechanism has been completely rewritten (see tutorial
14     10)
15    
16 2005-09-10:
17     * New session implementation. See the CherryPy book for docs (remi)
18     * New server.maxRequestBodySize and maxRequestHeaderSize options.
19     *   See the CherryPy book for docs (remi)
20
21 2005-09-04:
22     * Generalized mechanism for handling HTTP errors
23     * raising a HTTPStatusError will automatically send an appropriate error page
24     * All errors in production mode will cause CP to respond with a http error
25
26 2005-08-17:
27     * The session filter has been simplified, the mechanism for creating multiple sessions has been removed. However .. (mikerobi)
28     * The session filter can placed inside a _cpFilterList to provide an alternative to the default session.            (mikerobi)
29    
30 2005-08-09:
31     * The config section [global] is now distinct from, and the parent of, [/]. (fumanchu)
32     * cherrypy.request.path is now parsed and set before onStartResource filter methods are called. (fumanchu)
33     * Absolute Request-URI's are now acceptable, and are converted to relative paths. (fumanchu)
34     * A Request-URI of "*" now maps to the [global] config section, and to cherrypy.root._global. (fumanchu)
35
36 2005-07-12:
37     * CherryPy-2.1.0-beta released. Check http://www.cherrypy.org/wiki/WhatsNewIn21 for instructions on how to upgrade from 2.0. (remi)
38
39 2005-07-09:
40     * Request entities that are not form params now get stuck in cherrypy.request.body (as a temp file object). (fumanchu)
41     * cherrypy.config.update can be called with an the keyword override=False to prevent values from being overwritten.
42 2005-07-06:
43     * Added code-coverage tools. (fumanchu)
44
45 2005-06-25:
46     * BACKWARD INCOMPATIBILITY: Removed cpg module, renamed _cpserver to server, _cpconfig to config, cperror to _cperror. See http://www.cherrypy.org/wiki/PackageLayout21 (fumanchu)
47
48 2005-06-21:
49     * New generic HTTPRedirect exception for 3xx responses. (fumanchu)
50
51 2005-06-17:
52     * Handle all HTTP methods. (fumanchu)
53
54 2005-06-16:
55     * First check-in of the documentation project (lawouach)
56
57 2005-06-11:
58     * getSpecialFunction renamed getSpecialAttribute (mikerobi)
59
60 2005-06-10:
61     * New test suite (no forks, no exec). (fumanchu)
62     * New lib/profiler module. (fumanchu)
63     * New session filter (mikerobi)
64     * New config.getAll function (mikerobi)
65
66 2005-06-09:
67     * New sessionauthenticatefilter. This replace CSAuthenticate implementation (based on aspect). (Remi)
68     * New nsgmlsfilter. Provides XHTML validation (you need NSGMLS installed). (Remi)
69
70 2005-06-02:
71     * New WSGI server. (Peter)
72
73 2005-06-01:
74     * Core (_cphttptools) was completely rewritten to use iterators throughout. (fumanchu)
75     * HTTP server has been decoupled from _cpserver. (fumanchu)
76     * New WSGI interface to the builtin http server; WSGI is now the default. (fumanchu)
77     * Moved session handling into a filter. (fumanchu)
78     * New testCore.py for testing basic request and error handling. (fumanchu)
79     * autoreload disabled if cpg.server.start is called with initOnly=True. (fumanchu)
80     * BACKWARD INCOMPATIBILITY: filters changed, see http://www.cherrypy.org/wiki/Filters21. (fumanchu)
81
82 2005-05-20:
83     * BACKWARD INCOMPATIBILITY: New config system, see http://www.cherrypy.org/wiki/ConfigSystem21 (Remi)
84     * Fixed small bug in httptools.redirect (Remi)
85     * Allow methods to return recursive generators (Remi)
86     * Methods can now return file objects which are red in 64kb chunks. (Mike)
87
88 2005-04-25:
89     * CherryPy-2.0-final released
90     * Added tests about static content and httptools.redirect (Remi)
91     * Handle %20 (and others) in static content - ticket #104 (Remi)
92     * If y is a static dir make y/a?b try and serve a file named a?b (Dan)
93     * Pass threadIndex to onStartThreadList functions - ticket #91 (Remi)
94     * Renamed "configDict" into "configMap" for consistency - ticket  #82 (Remi)
95     * Dots in requests path are now replaced by underscores  - ticket #87 (Remi)
96     * Improved WSGI support and added example (seems to work OK) (Peter, Remi)
97     * Added DecodingFilter (Remi)
98     * Added form module (port from CP1 Form.cpy) (Remi)
99     * Improved the way static files are being served (Remi)
100
101 2004-12-29:
102     * CherryPY-2.0-beta released
103     * xmlrpcfilter added (Remco)
104     * cpg.response.body is now always an iterable type - ticket #59 (Carlos)
105     * Allowed default session functions to be accessed by other modules - ticket #56 (Remi)
106     * Added cpg.threadData - ticket #53 (Remi)
107     * Added request.requestLine - ticket #52 (Remi)
108     * logFile config option is now honored - ticket #51 (Remi)
109     * Added cpg.request.remoteAddr and cpg.request.remoteHost - ticket #34 (Eurleif)
110     * Improved baseurlfilter to handle x-forwarded-host - ticket #49 (Kender)
111     * Made object mapping algorithm iterative instead of recursive - ticket #48 (Jesir Vargas)
112     * Improved testing framework (Remco)
113     * Check that response is a string *after* filters have been applied (ticket #28) (Remi)
114     * Removed all XML-RPC references from the core: it is now a filter (ticket #30) (Remi)
115     * Removed "response encoding" from the core: it is now in a filter (ticket #31) (Remi)
116     * Implemented filters and a couple of sample filters (Remi)
117     * Fixed "cleanUpOldSessions" bug (ticket #12) (Remi)
118     * "file" storage type for sessions now works fine (Remi)
119     * Ticket #6: If a response is unicode, it gets encoded automatically. Encoding is specified in the config file unser [server].encoding (the default is UTF-8). (Remi)
120     * Added more unittest (Remi)
121     * Fixed file upload bug (Remi)
122
123 2004-10-13:
124     * First alpha release of CherryPy-2 (Remi)
125
Note: See TracBrowser for help on using the browser.

Hosted by WebFaction

Log in as guest/cpguest to create tickets