14
0

- update to 0.16.0:

* Fixed regression with `stream` parameter deprecation, requests.session() and cookie handling.
  * Replaced adhoc URL parsing with `urllib.parse`.
  * Added ``match`` parameter to ``add_callback`` method
  * Added `responses.matchers.fragment_identifier_matcher`. This matcher allows you
    to match request URL fragment identifier.
  * Improved test coverage.
  * Fixed failing test in python 2.7 when `python-future` is also installed.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-responses?expand=0&rev=35
This commit is contained in:
2021-11-29 11:56:12 +00:00
committed by Git OBS Bridge
parent d8696275cc
commit eae844a863
4 changed files with 16 additions and 4 deletions

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Nov 29 11:54:48 UTC 2021 - Dirk Müller <dmueller@suse.com>
- update to 0.16.0:
* Fixed regression with `stream` parameter deprecation, requests.session() and cookie handling.
* Replaced adhoc URL parsing with `urllib.parse`.
* Added ``match`` parameter to ``add_callback`` method
* Added `responses.matchers.fragment_identifier_matcher`. This matcher allows you
to match request URL fragment identifier.
* Improved test coverage.
* Fixed failing test in python 2.7 when `python-future` is also installed.
-------------------------------------------------------------------
Sat Oct 30 20:38:16 UTC 2021 - Dirk Müller <dmueller@suse.com>