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

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

Revision 655 (checked in by mikerobi, 3 years ago)

updated the changelog (http error rewrite)

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

Hosted by WebFaction

Log in as guest/cpguest to create tickets