Received: by mail.netbsd.org (Postfix, from userid 605) id 1B7C584E9A; Mon, 8 May 2023 07:16:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 48E3084E8C for ; Mon, 8 May 2023 07:16:20 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id zrTRofhXt0EY for ; Mon, 8 May 2023 07:16:19 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3E72C84D6F for ; Mon, 8 May 2023 07:16:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F0329FA87; Mon, 8 May 2023 07:15:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1683530156127590" MIME-Version: 1.0 Date: Mon, 8 May 2023 07:15:56 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/net/py-responses To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230508071556.F0329FA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1683530156127590 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon May 8 07:15:56 UTC 2023 Modified Files: pkgsrc/net/py-responses: Makefile PLIST distinfo Log Message: py-responses: updated to 0.23.1 0.23.1 ------ * Remove `tomli` import. 0.23.0 ------ * Add Python 3.11 support * Fix type annotations of `CallList`. * `request` object is attached to any custom exception provided as `Response` `body` argument. * Fixed mocked responses leaking between tests when `assert_all_requests_are_fired` and a request was not fired. * [BETA] Default recorder format was changed to YAML. Added `responses.RequestsMock._parse_response_file` and `responses._recorder.Recorder.dump_to_file` methods that allow users to override default parser to eg toml, json 0.22.0 ------ * Update `requests` dependency to the version of 2.22.0 or higher. * [BETA] Added possibility to record responses to TOML files via `@_recorder.record(file_path="out.toml")` decorator. * [BETA] Added possibility to replay responses (populate registry) from TOML files via `responses._add_from_file(file_path="out.toml")` method. * Fix type for the `mock`'s patcher object. * Fix type annotation for `CallList` * Add `passthrough` argument to `BaseResponse` object. * Fix `registries` leak. * `OriginalResponseShim` is removed. * Add support for the `loose` version of `json_params_matcher` via named argument `strict_match`. * Add lists support as JSON objects in `json_params_matcher`. * Added project links to pypi listing. * `delete`, `get`, `head`, `options`, `patch`, `post`, `put` shortcuts are now implemented using `functools.partialmethod`. * Fix `MaxRetryError` exception. Replace exception by `RetryError` according to `requests` implementation. * Adjust error message when `Retry` is exhausted. 0.21.0 ------ * Add `threading.Lock()` to allow `responses` working with `threading` module. * Add `urllib3` `Retry` mechanism. * Removed internal `_cookies_from_headers` function * Now `add`, `upsert`, `replace` methods return registered response. `remove` method returns list of removed responses. * Added null value support in `urlencoded_params_matcher` via `allow_blank` keyword argument * Added strict version of decorator. Now you can apply `@responses.activate(assert_all_requests_are_fired=True)` to your function to validate that all requests were executed in the wrapped function. 0.20.0 ------ * Deprecate `responses.assert_all_requests_are_fired`, `responses.passthru_prefixes`, `responses.target` since they are not actual properties of the class instance. Use `responses.mock.assert_all_requests_are_fired`, `responses.mock.passthru_prefixes`, `responses.mock.target` instead. * Fixed the issue when `reset()` method was called in not stopped mock. 0.19.0 ------ * Added a registry that provides more strict ordering based on the invocation index. See `responses.registries.OrderedRegistry`. * Added shortcuts for each request method: delete, get, head, options, patch, post, put. For example, to add response for POST request you can use `responses.post()` instead of `responses.add(responses.POST)`. * Prevent `responses.activate` decorator to leak, if wrapped function called from within another wrapped function. Also, allow calling of above mentioned chain. * Expose `get_registry()` method of `RequestsMock` object. Replaces internal `_get_registry()`. * `query_param_matcher` can now accept dictionaries with `int` and `float` values. * Add support for the `loose` version of `query_param_matcher` via named argument `strict_match`. * Added support for `async/await` functions. * `response_callback` is no longer executed on exceptions raised by failed `Response`s * Change logic of `_get_url_and_path` to comply with RFC 3986. Now URL match occurs by matching schema, authority and path, where path is terminated by the first question mark ("?") or number sign ("#") character, or by the end of the URI. * An error is now raised when both `content_type` and `headers[content-type]` are provided as parameters. * When a request isn't matched the passthru prefixes are now included in error messages. 0.18.0 ------ * Dropped support of Python 2.7, 3.5, 3.6 * Fixed issue with type annotation for `responses.activate` decorator. * Removed internal `_is_string` and `_ensure_str` functions * Removed internal `_quote` from `test_responses.py` * Removed internal `_matches` attribute of `RequestsMock` object. * Generated decorator wrapper now uses stdlib features instead of strings and exec * Fix issue when Deprecation Warning was raised with default arguments in `responses.add_callback` due to `match_querystring`. To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 pkgsrc/net/py-responses/Makefile cvs rdiff -u -r1.6 -r1.7 pkgsrc/net/py-responses/PLIST cvs rdiff -u -r1.27 -r1.28 pkgsrc/net/py-responses/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1683530156127590 Content-Disposition: inline Content-Length: 3909 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/py-responses/Makefile diff -u pkgsrc/net/py-responses/Makefile:1.29 pkgsrc/net/py-responses/Makefile:1.30 --- pkgsrc/net/py-responses/Makefile:1.29 Fri Apr 29 23:17:52 2022 +++ pkgsrc/net/py-responses/Makefile Mon May 8 07:15:56 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.29 2022/04/29 23:17:52 wiz Exp $ +# $NetBSD: Makefile,v 1.30 2023/05/08 07:15:56 adam Exp $ -DISTNAME= responses-0.17.0 +DISTNAME= responses-0.23.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= net python MASTER_SITES= ${MASTER_SITE_PYPI:=r/responses/} Index: pkgsrc/net/py-responses/PLIST diff -u pkgsrc/net/py-responses/PLIST:1.6 pkgsrc/net/py-responses/PLIST:1.7 --- pkgsrc/net/py-responses/PLIST:1.6 Mon Jan 24 18:24:47 2022 +++ pkgsrc/net/py-responses/PLIST Mon May 8 07:15:56 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.6 2022/01/24 18:24:47 adam Exp $ +@comment $NetBSD: PLIST,v 1.7 2023/05/08 07:15:56 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -7,19 +7,32 @@ ${PYSITELIB}/${EGG_INFODIR}/requires.txt ${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/responses/__init__.py ${PYSITELIB}/responses/__init__.pyc -${PYSITELIB}/responses/__init__.pyi ${PYSITELIB}/responses/__init__.pyo +${PYSITELIB}/responses/_recorder.py +${PYSITELIB}/responses/_recorder.pyc +${PYSITELIB}/responses/_recorder.pyo ${PYSITELIB}/responses/matchers.py ${PYSITELIB}/responses/matchers.pyc -${PYSITELIB}/responses/matchers.pyi ${PYSITELIB}/responses/matchers.pyo +${PYSITELIB}/responses/py.typed ${PYSITELIB}/responses/registries.py ${PYSITELIB}/responses/registries.pyc -${PYSITELIB}/responses/registries.pyi ${PYSITELIB}/responses/registries.pyo -${PYSITELIB}/responses/test_matchers.py -${PYSITELIB}/responses/test_matchers.pyc -${PYSITELIB}/responses/test_matchers.pyo -${PYSITELIB}/responses/test_responses.py -${PYSITELIB}/responses/test_responses.pyc -${PYSITELIB}/responses/test_responses.pyo +${PYSITELIB}/responses/tests/__init__.py +${PYSITELIB}/responses/tests/__init__.pyc +${PYSITELIB}/responses/tests/__init__.pyo +${PYSITELIB}/responses/tests/test_matchers.py +${PYSITELIB}/responses/tests/test_matchers.pyc +${PYSITELIB}/responses/tests/test_matchers.pyo +${PYSITELIB}/responses/tests/test_multithreading.py +${PYSITELIB}/responses/tests/test_multithreading.pyc +${PYSITELIB}/responses/tests/test_multithreading.pyo +${PYSITELIB}/responses/tests/test_recorder.py +${PYSITELIB}/responses/tests/test_recorder.pyc +${PYSITELIB}/responses/tests/test_recorder.pyo +${PYSITELIB}/responses/tests/test_registries.py +${PYSITELIB}/responses/tests/test_registries.pyc +${PYSITELIB}/responses/tests/test_registries.pyo +${PYSITELIB}/responses/tests/test_responses.py +${PYSITELIB}/responses/tests/test_responses.pyc +${PYSITELIB}/responses/tests/test_responses.pyo Index: pkgsrc/net/py-responses/distinfo diff -u pkgsrc/net/py-responses/distinfo:1.27 pkgsrc/net/py-responses/distinfo:1.28 --- pkgsrc/net/py-responses/distinfo:1.27 Mon Jan 24 18:24:47 2022 +++ pkgsrc/net/py-responses/distinfo Mon May 8 07:15:56 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.27 2022/01/24 18:24:47 adam Exp $ +$NetBSD: distinfo,v 1.28 2023/05/08 07:15:56 adam Exp $ -BLAKE2s (responses-0.17.0.tar.gz) = be0a238571e02b596f8539d07301a7826bf19a0d91b8aad36d0bb1a875bad70c -SHA512 (responses-0.17.0.tar.gz) = 238c7b4926857c13a4192bbb38eb0dbd65d110ae86c19c59c1504bdfc912fefebdc3e59c7646ce4f0228a1a080201b11d336bae56fc190665f816c6251de579c -Size (responses-0.17.0.tar.gz) = 45064 bytes +BLAKE2s (responses-0.23.1.tar.gz) = cd2a53b485f21ea67bba2cee5420f14878fe89c118a7ce841c9ad48b9c785168 +SHA512 (responses-0.23.1.tar.gz) = 2c05ac5c4ccca351940d3821b0830cee366cd7c9637f1e4c1e6b40c72ed2168a1036de634f03bfaaa2f7270e3825f6d9e8d31fc7a16f321f1de1cc64255454a1 +Size (responses-0.23.1.tar.gz) = 72966 bytes --_----------=_1683530156127590--