Releases: NHSDigital/prescriptions-for-patients
v1.0.262-beta
Commit message
Upgrade: [dependabot] - bump aiohttp from 3.10.8 to 3.10.9 (#214)
Bumps aiohttp from 3.10.8 to
3.10.9.
Release notes
Sourced from aiohttp's releases.
3.10.9
Bug fixes
Fixed proxy headers being used in the
ConnectionKey
hash when a proxy was not being used -- by :user:bdraco
.If default headers are used, they are also used for proxy headers. This could have led to creating connections that were not needed when one was already available.
Related issues and pull requests on GitHub: #9368.
Widened the type of the
trace_request_ctx
parameter of :meth:ClientSession.request() <aiohttp.ClientSession.request>
and friends -- by :user:layday
.Related issues and pull requests on GitHub: #9397.
Removals and backward incompatible breaking changes
Fixed failure to try next host after single-host connection timeout -- by :user:
brettdh
.The default client :class:
aiohttp.ClientTimeout
params has changed to include asock_connect
timeout of 30 seconds so that this correct behavior happens by default.Related issues and pull requests on GitHub: #7342.
Miscellaneous internal changes
Improved performance of resolving hosts with Python 3.12+ -- by :user:
bdraco
.Related issues and pull requests on GitHub: #9342.
... (truncated)
Changelog
Sourced from aiohttp's changelog.
3.10.9 (2024-10-04)
Bug fixes
Fixed proxy headers being used in the
ConnectionKey
hash when a proxy was not being used -- by :user:bdraco
.If default headers are used, they are also used for proxy headers. This could have led to creating connections that were not needed when one was already available.
Related issues and pull requests on GitHub: :issue:
9368
.Widened the type of the
trace_request_ctx
parameter of :meth:ClientSession.request() <aiohttp.ClientSession.request>
and friends -- by :user:layday
.Related issues and pull requests on GitHub: :issue:
9397
.Removals and backward incompatible breaking changes
Fixed failure to try next host after single-host connection timeout -- by :user:
brettdh
.The default client :class:
aiohttp.ClientTimeout
params has changed to include asock_connect
timeout of 30 seconds so that this correct behavior happens by default.Related issues and pull requests on GitHub: :issue:
7342
.Miscellaneous internal changes
Improved performance of resolving hosts with Python 3.12+ -- by :user:
bdraco
.Related issues and pull requests on GitHub: :issue:
9342
.
... (truncated)
Commits
b779432
Release 3.10.9 (#9415)08ada3e
[PR #9405/b96b01b backport][3.10] Only create the connection closed exception...978ed74
[PR #9406/24b0e6f backport][3.10] Add slots to timer helpers (#9411)e1320b7
[PR #9398/3f43bd1b backport][3.10] Widentrace_request_ctx
type (#9403)b5e2b0b
[PR #7368/8a8913b backport][3.10] Fixed failure to try next host after single...6198a56
[PR #9368/02d8dba9 backport][3.10] Avoid using the proxy headers in the Conne...456cf5e
[PR #9386/803d818d backport][3.10] Small speed up to starting client requests...8e395a1
[PR #9366/43deadb2 backport][3.10] Small speed up to update_headers (#9383)57ce46c
[PR #9372/0416d28 backport][3.10] Only prepare proxy headers for a request if...0a74b54
[PR #9367/b612127d backport][3.10] Speed up handling auth in urls (#9380)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits
that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after
your CI passes on it@dependabot cancel merge
will cancel a previously requested merge
and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all
of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] [email protected]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Info
See code diff
Release workflow run
It was initialized by eps-autoapprove-dependabot[bot]
v1.0.261-beta
Commit message
Upgrade: [dependabot] - bump aiohttp from 3.10.6 to 3.10.8 (#213)
Bumps aiohttp from 3.10.6 to
3.10.8.
Release notes
Sourced from aiohttp's releases.
3.10.8
Bug fixes
Fixed cancellation leaking upwards on timeout -- by :user:
bdraco
.Related issues and pull requests on GitHub: #9326.
3.10.7
Bug fixes
Fixed assembling the :class:
~yarl.URL
for web requests when the host contains a non-default port or IPv6 address -- by :user:bdraco
.Related issues and pull requests on GitHub: #9309.
Miscellaneous internal changes
Improved performance of determining if a URL is absolute -- by :user:
bdraco
.The property :attr:
~yarl.URL.absolute
is more performant than the methodURL.is_absolute()
and preferred when newer versions of yarl are used.Related issues and pull requests on GitHub: #9171.
Replaced code that can now be handled by
yarl
-- by :user:bdraco
.Related issues and pull requests on GitHub: #9301.
... (truncated)
Changelog
Sourced from aiohttp's changelog.
3.10.8 (2024-09-28)
Bug fixes
Fixed cancellation leaking upwards on timeout -- by :user:
bdraco
.Related issues and pull requests on GitHub: :issue:
9326
.
3.10.7 (2024-09-27)
Bug fixes
Fixed assembling the :class:
~yarl.URL
for web requests when the host contains a non-default port or IPv6 address -- by :user:bdraco
.Related issues and pull requests on GitHub: :issue:
9309
.Miscellaneous internal changes
Improved performance of determining if a URL is absolute -- by :user:
bdraco
.The property :attr:
~yarl.URL.absolute
is more performant than the methodURL.is_absolute()
and preferred when newer versions of yarl are used.Related issues and pull requests on GitHub: :issue:
9171
.Replaced code that can now be handled by
yarl
-- by :user:bdraco
.Related issues and pull requests on GitHub:
... (truncated)
Commits
8a7ce94
Release 3.10.8 (#9330)a308f74
[PR #9326/fe26ae2 backport][3.10] Fix TimerContext not uncancelling the curre...52e0b91
Fix custom cookies example (#9321) (#9324)609c6e3
Increment version to 3.10.8.dev0f9a9e85
Release 3.10.7 (#9320)8220ced
[PR #9309/e4028333 backport][3.10] Fix building the URL in BaseRequest when t...d32d580
[PR #9301/c240b52 backport][3.10] Replace code that can now be handled by yar...fd5ece6
Bump yarl to 1.13.0 (#9302) (#9304)d6d2bcc
[PR #9294/552dea53 backport][3.10] Backport type fix from #9226 (#9299)e6bcfbe
[PR #9171/0462ae6b backport][3.10] Switch to usingyarl.URL.absolute
over `...- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits
that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after
your CI passes on it@dependabot cancel merge
will cancel a previously requested merge
and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all
of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] [email protected]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Info
See code diff
Release workflow run
It was initialized by eps-autoapprove-dependabot[bot]
v1.0.260-beta
Commit message
Upgrade: [dependabot] - bump aiohttp from 3.10.5 to 3.10.6 (#212)
Bumps aiohttp from 3.10.5 to
3.10.6.
Release notes
Sourced from aiohttp's releases.
3.10.6
Bug fixes
Added :exc:
aiohttp.ClientConnectionResetError
. Client code that previously threw :exc:ConnectionResetError
will now throw this -- by :user:Dreamsorcerer
.Related issues and pull requests on GitHub: #9137.
Fixed an unclosed transport
ResourceWarning
on web handlers -- by :user:Dreamsorcerer
.Related issues and pull requests on GitHub: #8875.
Fixed resolve_host() 'Task was destroyed but is pending' errors -- by :user:
Dreamsorcerer
.Related issues and pull requests on GitHub: #8967.
Fixed handling of some file-like objects (e.g.
tarfile.extractfile()
) which raiseAttributeError
instead ofOSError
whenfileno
fails for streaming payload data -- by :user:ReallyReivax
.Related issues and pull requests on GitHub: #6732.
Fixed web router not matching pre-encoded URLs (requires yarl 1.9.6+) -- by :user:
Dreamsorcerer
.Fixed an error when trying to add a route for multiple methods with a path containing a regex pattern -- by :user:
Dreamsorcerer
.Related issues and pull requests on GitHub: #8998.
... (truncated)
Changelog
Sourced from aiohttp's changelog.
3.10.6 (2024-09-24)
Bug fixes
Added :exc:
aiohttp.ClientConnectionResetError
. Client code that previously threw :exc:ConnectionResetError
will now throw this -- by :user:Dreamsorcerer
.Related issues and pull requests on GitHub: :issue:
9137
.Fixed an unclosed transport
ResourceWarning
on web handlers -- by :user:Dreamsorcerer
.Related issues and pull requests on GitHub: :issue:
8875
.Fixed resolve_host() 'Task was destroyed but is pending' errors -- by :user:
Dreamsorcerer
.Related issues and pull requests on GitHub: :issue:
8967
.Fixed handling of some file-like objects (e.g.
tarfile.extractfile()
) which raiseAttributeError
instead ofOSError
whenfileno
fails for streaming payload data -- by :user:ReallyReivax
.Related issues and pull requests on GitHub: :issue:
6732
.Fixed web router not matching pre-encoded URLs (requires yarl 1.9.6+) -- by :user:
Dreamsorcerer
.Related issues and pull requests on GitHub: :issue:
8898
, :issue:9267
.Fixed an error when trying to add a route for multiple methods with a path containing a regex pattern -- by :user:
Dreamsorcerer
.
... (truncated)
Commits
2272c2b
Release v3.10.6 (#9288)81bb9cb
[PR #9284/a4f9eca4 backport][3.10] Bump aiohttp-theme (#9286)6ff4ac9
Bump uvloop (#9276) (#9278)3ba1587
[3.10] Bump typing-extensions to 4.12.2 (#9282)84c25b7
[PR #8748/2816002b backport][3.10] Add Python 3.13 classifier (#9280)91c3162
[3.10] Bump pydantic and deps for python 3.13 compat (#9279)361db7c
Release 3.10.6rc2be34869
Release 3.10.6rc1c5a3d81
[PR #9267/947b9c4 backport][3.10] Fix double unquoting in url dispatcher (#9269)3eb7282
Release 3.10.6rc0- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits
that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after
your CI passes on it@dependabot cancel merge
will cancel a previously requested merge
and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all
of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] [email protected]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Info
See code diff
Release workflow run
It was initialized by eps-autoapprove-dependabot[bot]
v1.0.259-beta
Commit message
New: [AEA-4353] - Integrating PfP CI (#210)
Summary
Updated azure pipeline to include a step in the run_tests workflow for
triggering the regression tests
Info
See code diff
Release workflow run
It was initialized by jonathanwelch1-nhs
v1.0.258-beta
Commit message
Fix: [AEA-4312] - Failed to fetch (CORS or Network Issue) (#209)
Summary
🎫 AEA-4312 Failed to
fetch (CORS or Network Issue)
- Routine Change
⚠️ Potential issues that might be caused by this change
Details
Observed Behaviour
- An error is returned 'Failed to fetch (CORS or Network Issue)'
- Authentication shows None Applied
Info
See code diff
Release workflow run
It was initialized by MatthewPopat-NHS
v1.0.257-beta
Commit message
Upgrade: [dependabot] - bump pytest from 8.3.2 to 8.3.3 (#208)
Bumps pytest from 8.3.2 to
8.3.3.
Release notes
Sourced from pytest's releases.
8.3.3
pytest 8.3.3 (2024-09-09)
Bug fixes
#12446: Avoid calling
@property
(and other instance descriptors) during fixture discovery -- byasottile
{.interpreted-text role="user"}#12659: Fixed the issue of not displaying assertion failure differences when using the parameter
--import-mode=importlib
in pytest>=8.1.#12667: Fixed a regression where type change in [ExceptionInfo.errisinstance]{.title-ref} caused [mypy]{.title-ref} to fail.
#12744: Fixed typing compatibility with Python 3.9 or less -- replaced [typing.Self]{.title-ref} with [typing_extensions.Self]{.title-ref} -- by
Avasam
{.interpreted-text role="user"}#12745: Fixed an issue with backslashes being incorrectly converted in nodeid paths on Windows, ensuring consistent path handling across environments.
#6682: Fixed bug where the verbosity levels where not being respected when printing the "msg" part of failed assertion (as in
assert condition, msg
).#9422: Fix bug where disabling the terminal plugin via
-p no:terminal
would cause crashes related to missing theverbose
option.-- by
GTowers1
{.interpreted-text role="user"}Improved documentation
- #12663: Clarify that the [pytest_deselected]{.title-ref} hook should be called from [pytest_collection_modifyitems]{.title-ref} hook implementations when items are deselected.
- #12678: Remove erroneous quotes from [tmp_path_retention_policy]{.title-ref} example in docs.
Miscellaneous internal changes
- #12769: Fix typos discovered by codespell and add codespell to pre-commit hooks.
Commits
d0f136f
build(deps): Bump pypa/gh-action-pypi-publish from 1.10.0 to 1.10.1 (#12790)972f307
Prepare release version 8.3.30dabdcf
Include co-authors in release announcement (#12795) (#12797)a9910a4
Do not discover properties when iterating fixtures (#12781) (#12788)0f10b6b
Fix issue with slashes being turned into backslashes on Windows (#12760) (#12...300d13d
Merge pull request #12785 from pytest-dev/patchback/backports/8.3.x/57cccf7f4...e5d32c7
Merge pull request #12784 from svenevs/fix/docs-example-parametrize-minor-typobc913d1
Streamline checks for verbose option (#12706) (#12778)01cfcc9
Fix typos and introduce codespell pre-commit hook (#12769) (#12774)4873394
doc: Remove past training (#12772) (#12773)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits
that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after
your CI passes on it@dependabot cancel merge
will cancel a previously requested merge
and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all
of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] [email protected]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Info
See code diff
Release workflow run
It was initialized by eps-autoapprove-dependabot[bot]
v1.0.256-beta
Commit message
Upgrade: [dependabot] - bump cryptography from 42.0.8 to 43.0.1 (#207)
Bumps cryptography from 42.0.8
to 43.0.1.
Changelog
Sourced from cryptography's changelog.
43.0.1 - 2024-09-03
* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.3.2.
.. _v43-0-0:
43.0.0 - 2024-07-20
- BACKWARDS INCOMPATIBLE: Support for OpenSSL less than 1.1.1e has been removed. Users on older version of OpenSSL will need to upgrade.
- BACKWARDS INCOMPATIBLE: Dropped support for LibreSSL < 3.8.
- Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.3.1.
- Updated the minimum supported Rust version (MSRV) to 1.65.0, from 1.63.0.
- :func:
~cryptography.hazmat.primitives.asymmetric.rsa.generate_private_key
now enforces a minimum RSA key size of 1024-bit. Note that 1024-bit is still considered insecure, users should generally use a key size of 2048-bits.- :func:
~cryptography.hazmat.primitives.serialization.pkcs7.serialize_certificates
now emits ASN.1 that more closely follows the recommendations in :rfc:2315
.- Added new :doc:
/hazmat/decrepit/index
module which contains outdated and insecure cryptographic primitives.:class:
~cryptography.hazmat.primitives.ciphers.algorithms.CAST5
,:class:
~cryptography.hazmat.primitives.ciphers.algorithms.SEED
,:class:
~cryptography.hazmat.primitives.ciphers.algorithms.IDEA
,
and:class:
~cryptography.hazmat.primitives.ciphers.algorithms.Blowfish
,
which were
deprecated in 37.0.0, have been added to this module. They will be
removed
from thecipher
module in 45.0.0.- Moved :class:
~cryptography.hazmat.primitives.ciphers.algorithms.TripleDES
and :class:~cryptography.hazmat.primitives.ciphers.algorithms.ARC4
into :doc:/hazmat/decrepit/index
and deprecated them in thecipher
module. They will be removed from thecipher
module in 48.0.0.- Added support for deterministic :class:
~cryptography.hazmat.primitives.asymmetric.ec.ECDSA
(:rfc:6979
)- Added support for client certificate verification to the :mod:
X.509 path validation <cryptography.x509.verification>
APIs in the form of :class:~cryptography.x509.verification.ClientVerifier
, :class:~cryptography.x509.verification.VerifiedClient
, andPolicyBuilder
:meth:
~cryptography.x509.verification.PolicyBuilder.build_client_verifier
.- Added Certificate
:attr:
~cryptography.x509.Certificate.public_key_algorithm_oid
and Certificate Signing Request:attr:
~cryptography.x509.CertificateSigningRequest.public_key_algorithm_oid
to determine the
:class:~cryptography.hazmat._oid.PublicKeyAlgorithmOID
Object Identifier of the public key found inside the certificate.- Added :attr:
~cryptography.x509.InvalidityDate.invalidity_date_utc
, a timezone-aware alternative to the naïvedatetime
attribute:attr:
~cryptography.x509.InvalidityDate.invalidity_date
.- Added support for parsing empty DN string in
... (truncated)
Commits
a773387
bump for 43.0.1 (#11533)0393fef
Backport setuptools version ban (#11526)6687bab
Bump openssl from 0.10.65 to 0.10.66 in /src/rust (#11320) (#11324)ebf14f2
bump for 43.0.0 and update changelog (#11311)42788a0
Fix exchange with keys that had Q automatically computed (#11309)2dbdfb8
don't assign unused name (#11310)ccc66e6
Bump openssl from 0.10.64 to 0.10.65 in /src/rust (#11308)4310c87
Bump sphinxcontrib-qthelp from 1.0.7 to 1.0.8 (#11307)f66a9c4
Bump sphinxcontrib-htmlhelp from 2.0.5 to 2.0.6 (#11306)a8fcf18
Bump openssl-sys from 0.9.102 to 0.9.103 in /src/rust (#11305)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits
that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after
your CI passes on it@dependabot cancel merge
will cancel a previously requested merge
and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all
of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
Security Alerts
page.
Signed-off-by: dependabot[bot] [email protected]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Info
See code diff
Release workflow run
It was initialized by eps-autoapprove-dependabot[bot]
v1.0.255-beta
Commit message
Upgrade: [dependabot] - bump pytest-nhsd-apim from 3.4.2 to 3.4.3 (#206)
Bumps pytest-nhsd-apim
from 3.4.2 to 3.4.3.
Commits
- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits
that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after
your CI passes on it@dependabot cancel merge
will cancel a previously requested merge
and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all
of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] [email protected]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Info
See code diff
Release workflow run
It was initialized by eps-autoapprove-dependabot[bot]
v1.0.254-beta
Commit message
Docs: [AEA-4375] - Improvements to the OAS item status descriptions (#205)
Summary
- Routine Change
Info
See code diff
Release workflow run
It was initialized by kris-szlapa
v1.0.253-beta
Commit message
Upgrade: [dependabot] - bump pytest-asyncio from 0.23.8 to 0.24.0 (#201)
Bumps pytest-asyncio
from 0.23.8 to 0.24.0.
Release notes
Sourced from pytest-asyncio's releases.
pytest-asyncio 0.24.0
0.24.0 (2024-08-22)
- BREAKING: Updated minimum supported pytest version to v8.2.0
- Adds an optional loop_scope keyword argument to pytest.mark.asyncio. This argument controls which event loop is used to run the marked async test. #706, #871
- Deprecates the optional scope keyword argument to pytest.mark.asyncio for API consistency with
pytest_asyncio.fixture
. Users are encouraged to use the loop_scope keyword argument, which does exactly the same.- Raises an error when passing scope or loop_scope as a positional argument to
@pytest.mark.asyncio
. #812- Fixes a bug that caused module-scoped async fixtures to fail when reused in other modules #862 #668
pytest-asyncio 0.24.0a1
0.24.0 (UNRELEASED)
- BREAKING: Updated minimum supported pytest version to v8.2.0
- Adds an optional loop_scope keyword argument to pytest.mark.asyncio. This argument controls which event loop is used to run the marked async test. #706, #871
- Deprecates the optional scope keyword argument to pytest.mark.asyncio for API consistency with
pytest_asyncio.fixture
. Users are encouraged to use the loop_scope keyword argument, which does exactly the same.- Raises an error when passing scope or loop_scope as a positional argument to
@pytest.mark.asyncio
. #812- Fixes a bug that caused module-scoped async fixtures to fail when reused in other modules #862 #668
pytest-asyncio 0.24.0a0
0.24.0 (UNRELEASED)
- Adds an optional loop_scope keyword argument to pytest.mark.asyncio. This argument controls which event loop is used to run the marked async test. #706, #871
- Deprecates the optional scope keyword argument to pytest.mark.asyncio for API consistency with
pytest_asyncio.fixture
. Users are encouraged to use the loop_scope keyword argument, which does exactly the same.- Raises an error when passing scope or loop_scope as a positional argument to
@pytest.mark.asyncio
. #812
Commits
fb5422f
docs: Set release date for v0.24 in changelog.6dc7f58
docs: Add migration guides for pytest-asyncio v0.21 and v0.23.1bfc181
Wire Sphinx builds into the RTD config via toxf03cf13
Build(deps): Bump hypothesis in /dependencies/default69540bf
Build(deps): Bump attrs from 24.1.0 to 24.2.0 in /dependencies/defaultb0ccfc5
Build(deps): Bump hypothesis in /dependencies/default574f1db
Build(deps): Bump babel from 2.15.0 to 2.16.0 in /dependencies/docsae30dac
Update .readthedocs.yaml to install pytest-asyncio972a704
Derive project version using importlibd587a52
[pre-commit.ci] pre-commit autoupdate- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits
that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after
your CI passes on it@dependabot cancel merge
will cancel a previously requested merge
and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all
of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] [email protected]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Info
See code diff
Release workflow run
It was initialized by eps-autoapprove-dependabot[bot]