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

root/tags/cherrypy-2.1.1/CHANGELOG.txt

Revision 919 (checked in by rdelon, 3 years ago)

Backporting security patch to 2.1.0. Preparing for 2.1.1 release

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

Hosted by WebFaction

Log in as guest/cpguest to create tickets