2018-09-03 14:22:30 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-cherrypy: updated to 18.0.0
v18.0.0
* Drop support for Python 2.7. CherryPy 17 will
remain an LTS release for bug and security fixes.
* Drop support for Python 3.4.
v17.4.0
* When setting Response Body, reject Unicode
values, making behavior on Python 2 same as on Python 3.
* Other inconsequential refactorings.
|
2018-08-20 14:59:08 by Adam Ciarcinski | Files touched by this commit (1) |
Log message:
py-cherrypy: fix DEPENDS
|
2018-08-19 10:51:45 by Adam Ciarcinski | Files touched by this commit (3) |  |
Log message:
py-cherrypy: updated to 17.3.0
v17.3.0
* Rely on zc.lockfile for session concurrency support.
v17.2.0
* Prevent orphaned Event object in cached 304 response.
v17.1.0
* Add support for accepting uploaded files with non-ascii filenames per RFC 5987.
|
2018-08-07 12:14:45 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-cherrypy: updated to 17.0.0
v17.0.0
CherryPy now allows namespace packages for its dependencies. Environments that \
cannot handle namespace packgaes like py2exe will need to add such support or \
pin to older CherryPy versions.
|
2018-07-13 09:08:48 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-cherrypy: updated to 16.0.3:
v16.0.3
* Pinned the tempora dependency against
version 1.13 to avoid pulling in namespace packages.
|
2018-06-19 13:39:03 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-cherrypy: updated to 16.0.2
v16.0.2:
* :issue:1716: Fixed handling of url-encoded parameters in
digest authentication handling, correcting regression in v14.2.0.
v16.0.1
* :issue:1719: Digest-auth tool will now return a status
code of 401 for when a scheme other than 'digest' is
indicated.
|
2018-06-18 12:54:17 by Adam Ciarcinski | Files touched by this commit (3) |  |
Log message:
py-cherrypy: updated to 16.0.0
v16.0.0:
* :issue:1688: Removed basic_auth and digest_auth tools and
the httpauth module, which have been officially deprecated earlier
in v14.0.0.
* Removed deprecated properties::
- cherrypy._cpreqbody.Entity.type deprecated in favor of
:py:attr:cherrypy._cpreqbody.Entity.content_type
- cherrypy._cprequest.Request.body_params deprecated in favor of
py:attr:cherrypy._cprequest.RequestBody.params
* :issue:1377: In _cp_native server, set req.status using bytes.
* :issue:1697: Fixed error on Python 3.7 with AutoReloader when
__file__ is None.
* :issue:1713: Fix warning emitted during test run.
* :issue:1370: Fail with HTTP 400 for invalid headers.
|
2018-05-23 11:33:16 by Adam Ciarcinski | Files touched by this commit (4) |  |
Log message:
py-cherrypy: updated to 15.0.0
v15.0.0
* :issue:1708: Removed components from webtest that were
removed in the refactoring of cheroot.test.webtest for
cheroot 6.1.0.
|
2018-04-25 14:24:40 by Adam Ciarcinski | Files touched by this commit (3) |  |
Log message:
py-cherrypy: updatede to 14.2.0
v14.2.0
* :issue:1680 via :pr:1683: HTTP Basic Auth supports :rfc:7617 UTF-8
charset decoding where possible. Uses latin1 as a fallback.
v14.1.0
* :cr-pr:37: Add support for peercreds lookup over UNIX domain socket.
This enables app to automatically identify "who's on the other
end of the wire".
This is how you enable it::
server.peercreds: True
server.peercreds_resolve: True
The first option will put remote numeric data to WSGI env vars:
app's PID, user's id and group.
Second option will resolve that into user and group names.
To prevent expensive syscalls, data is cached on per connection
basis.
|
2018-03-23 11:22:28 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-cherrypy: updated to 14.0.1
v14.0.1:
Improve windows pywin32 dependency declaration via conditional extras.
|