14
0
forked from pool/python-web.py

Accepting request 733745 from home:stroeder:branches:devel:languages:python

Updated to 0.40

OBS-URL: https://build.opensuse.org/request/show/733745
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-web.py?expand=0&rev=11
This commit is contained in:
Michael Ströder
2019-09-27 19:30:37 +00:00
committed by Git OBS Bridge
parent 490b05b006
commit ef04111b9a
4 changed files with 37 additions and 12 deletions

View File

@@ -1,3 +1,28 @@
-------------------------------------------------------------------
Fri Sep 27 19:16:21 UTC 2019 - Michael Ströder <michael@stroeder.com>
- Updated to 0.40
* Fixed lots of Python-3 compatibility issues.
* Drop support for Python 2.3 and 2.4.
* Allow to get data from PATCH request (fixes #259, tx @kufd)
* Only store new session data if the data is non-default (fixes #161, tx @shish)
* Supports `SameSite` cookie attribute (fixes #61 #99 #337)
* Cookie expire time is now set to same as session `timeout` (fixes #409 #410)
* Supports url for SQLite database like `sqlite:///mydb.sqlite`,
`sqlite:////absolute/path/mydb.sqlite` (fixes #209, tx @iamFIREcracker)
* Allow HTML5 form input elements in `web.form.Input()` (fixes #440, tx @jimgregory)
* Return body for `NoMethod` error handler (fixes #240, tx @waldhol)
* Fixed unicode in request url (fixes #461, tx @schneidersoft)
* Fixed inline comment in Templator which leads to unexpected behavior (fixes #432, tx @lucylqe)
* Fixed missing exception (ValueError) for socket.inet_pton to be compatible
with twisted patched `socket.inet_pton` (fixes #464, tx @tclh123)
* Fixed incorrect order of arguments for sending email with boto (fixes #204, tx @asldevi)
* Fixed notfound message is not utf-8 charset (fixes #500, tx @by-z)
* Fixed error in creating pooled PostgresDB with pgdb driver (fixes #255, tx @PriceChild)
* Fixed: IP address which contains space should not pass validation (fixes #140, tx @chuangbo)
* Fixed incorrect returned row ids with `multiple_insert()` (fixes #263 #447)
* Fixed not correctly render the `id` attribute after changed (fixes #339, tx @jimgregory)
-------------------------------------------------------------------
Mon Mar 18 11:05:06 UTC 2019 - Michael Ströder <michael@stroeder.com>