14
0
forked from pool/python-falcon

Accepting request 531497 from home:apersaud:branches:devel:languages:python

update to latest version

OBS-URL: https://build.opensuse.org/request/show/531497
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-falcon?expand=0&rev=20
This commit is contained in:
Todd R
2017-10-05 14:41:51 +00:00
committed by Git OBS Bridge
parent e8025eead3
commit 92cb1c96bd
5 changed files with 54 additions and 16 deletions

View File

@@ -1,3 +1,46 @@
-------------------------------------------------------------------
Tue Oct 3 05:44:49 UTC 2017 - arun@gmx.de
- specfile:
* require jsonschema
* require msgpack-python
- updated patch
- update to version 1.3.0:
* Changes to Supported Platforms
+ CPython 3.6 is now fully supported.
+ Falcon appears to work well on PyPy3.5, but we are waiting until
that platform is out of beta before officially supporting it.
+ Support for both CPython 2.6 and Jython 2.7 is now deprecated
and will be discontinued in Falcon 2.0.
* New & Improved
+ We added built-in resource representation serialization and
deserialization, including input validation based on JSON
Schema.
+ URI template field converters are now supported. We expect to
expand this feature over time.
+ A new method, get_param_as_datetime(), was added to the Request
class.
+ A number of attributes were added to the Request class to make
proxy information easier to consume. These include the
forwarded, forwarded_uri, forwarded_scheme, forwarded_host, and
forwarded_prefix attributes. The prefix attribute was also added
as part of this work.
+ A referer attribute was added to the Request class.
+ We implemented __repr__() for Request, Response, and HTTPError
to aid in debugging.
+ A number of Internet media type constants were defined to make
it easier to check and set content type headers.
+ Several new 5xx error classes were implemented.
* Fixed
+ If even a single cookie in the request to the server is
malformed, none of the cookies will be parsed
(all-or-nothing). Change the parser to simply skip bad cookies
(best-effort).
+ API instances are not pickleable. Modify the default router to
fix this.
-------------------------------------------------------------------
Sat Sep 2 09:56:45 UTC 2017 - sebix+novell.com@sebix.at