15
0
forked from pool/python-Routes

Accepting request 399996 from home:tbechtold:branches:devel:languages:python

- update to 2.3.1:
  * Backwards compatability fix - connect should work with mandatory
    routename and optional path. Patch by Davanum Srinivas (PR #65).
  * Fix sub_domain equivalence check. Patch by Nikita Uvarov
  * Add support for protocol-relative URLs generation (i.e. starting with double
    slash ``//``). PR #60. Patch by Sviatoslav Sydorenko.
  * Add support for the ``middleware`` extra requirement, making possible to
    depend on ``webob`` optionally. PR #59. Patch by Sviatoslav Sydorenko.
  * Fix matching of an empty string route, which led to exception in earlier
    versions. PR #58. Patch by Sviatoslav Sydorenko.
  * Add support for the ``requirements`` option when using
    mapper.resource to create routes. PR #57. Patch by Sean Dague.
  * Concatenation fix when using submappers with path prefixes. Multiple
    submappers combined the path prefix inside the controller argument in
    non-obvious ways. The controller argument will now be properly carried
    through when using submappers. PR #28.

OBS-URL: https://build.opensuse.org/request/show/399996
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Routes?expand=0&rev=18
This commit is contained in:
2016-06-06 11:12:51 +00:00
committed by Git OBS Bridge
parent 70a99fd0a9
commit 58e89017e9
4 changed files with 25 additions and 5 deletions

View File

@@ -1,3 +1,23 @@
-------------------------------------------------------------------
Fri Jun 3 15:51:22 UTC 2016 - tbechtold@suse.com
- update to 2.3.1:
* Backwards compatability fix - connect should work with mandatory
routename and optional path. Patch by Davanum Srinivas (PR #65).
* Fix sub_domain equivalence check. Patch by Nikita Uvarov
* Add support for protocol-relative URLs generation (i.e. starting with double
slash ``//``). PR #60. Patch by Sviatoslav Sydorenko.
* Add support for the ``middleware`` extra requirement, making possible to
depend on ``webob`` optionally. PR #59. Patch by Sviatoslav Sydorenko.
* Fix matching of an empty string route, which led to exception in earlier
versions. PR #58. Patch by Sviatoslav Sydorenko.
* Add support for the ``requirements`` option when using
mapper.resource to create routes. PR #57. Patch by Sean Dague.
* Concatenation fix when using submappers with path prefixes. Multiple
submappers combined the path prefix inside the controller argument in
non-obvious ways. The controller argument will now be properly carried
through when using submappers. PR #28.
-------------------------------------------------------------------
Fri Aug 7 08:03:53 UTC 2015 - hpj@urpla.net