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

root/tags/cherrypy-2.1.0-rc2/CHANGELOG.txt

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

Preparing for 2.1-rc2 release

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

Hosted by WebFaction

Log in as guest/cpguest to create tickets