chore(deps): update pip_requirements#31
Open
red-hat-konflux[bot] wants to merge 4 commits intomainfrom
Open
Conversation
Signed-off-by: Oren Cohen <ocohen@redhat.com>
Signed-off-by: Platform Engineering Bot <platform-engineering@redhat.com>
Pull Request Test Coverage Report for Build 11985564718Details
💛 - Coveralls |
Author
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==6.0.1->==6.0.2==5.3.3->==5.5.0==2024.2.2->==2024.8.30==2.29.0->==2.36.0==3.7->==3.10==29.0.0->==31.0.0==3.21.2->==3.23.1==8.6.1->==8.7.1==0.6.0->==0.6.1==0.4.0->==0.4.1==2.31.0->==2.32.3==4.11.0->==4.12.2==2.2.1->==2.2.3Release Notes
yaml/pyyaml (PyYAML)
v6.0.2Compare Source
What's Changed
Full Changelog: yaml/pyyaml@6.0.1...6.0.2
tkem/cachetools (cachetools)
v5.5.0Compare Source
===================
TTLCache.expire()returns iterable of expired(key, value)pairs.
TLRUCache.expire()returns iterable of expired(key, value)pairs.
Documentation improvements.
Update CI environment.
v5.4.0Compare Source
===================
Add the
keys.typedmethodkeydecorator.Deprecate
MRUCacheclass.Deprecate
@func.mru_cachedecorator.Update CI environment.
certifi/python-certifi (certifi)
v2024.8.30Compare Source
v2024.7.4Compare Source
v2024.6.2Compare Source
googleapis/google-auth-library-python (google-auth)
v2.36.0Compare Source
Features
Bug Fixes
v2.35.0Compare Source
Features
AuthorizedSessionapi (#1577) (2910b6b)Bug Fixes
v2.34.0Compare Source
Features
Bug Fixes
v2.33.0Compare Source
Features
StaticCredentialsusing access tokens (#1559) (dc17dfc)Bug Fixes
Documentation
v2.32.0Compare Source
Features
v2.31.0Compare Source
Features
Bug Fixes
v2.30.0Compare Source
Features
Bug Fixes
kjd/idna (idna)
v3.10Compare Source
v3.9Compare Source
v3.8Compare Source
What's Changed
Thanks to Hugo van Kemenade for contributions to this release.
Full Changelog: kjd/idna@v3.7...v3.8
kubernetes-client/python (kubernetes)
v31.0.0Compare Source
Kubernetes API Version: v1.31.0
v30.1.0Compare Source
Kubernetes API Version: v1.30.1
New Feature:
marshmallow-code/marshmallow (marshmallow)
v3.23.1Compare Source
v3.23.0Compare Source
v3.22.0Compare Source
v3.21.3Compare Source
lovasoa/marshmallow_dataclass (marshmallow-dataclass)
v8.7.1Compare Source
typeguardandtyping-inspect. (#273, #272)v8.7.0Compare Source
Annotated(rather than our now deprecatedcustom
NewType) to associate marshmallow configuration withparticular types. (#257)
Unionsof generic types. (#260, #261, #250)
pyasn1/pyasn1 (pyasn1)
v0.6.1Compare Source
pr #73
pr #62
pr #61
pr #60
pr #71
pr #70
tagMapandtypeMapaliasespr #72
pr #64
pr #63
pr #69
pyasn1/pyasn1-modules (pyasn1-modules)
v0.4.1Compare Source
psf/requests (requests)
v2.32.3Compare Source
Bugfixes
HTTPAdapter. (#6716)
without the
sslmodule. (#6724)v2.32.2Compare Source
Deprecations
To provide a more stable migration for custom HTTPAdapters impacted
by the CVE changes in 2.32.0, we've renamed
_get_connectiontoa new public API,
get_connection_with_tls_context. Existing customHTTPAdapters will need to migrate their code to use this new API.
get_connectionis considered deprecated in all versions of Requests>=2.32.0.A minimal (2-line) example has been provided in the linked PR to ease
migration, but we strongly urge users to evaluate if their custom adapter
is subject to the same issue described in CVE-2024-35195. (#6710)
v2.32.1Compare Source
Bugfixes
v2.32.0Compare Source
Security
verify=Falseon the first request from aSession will cause subsequent requests to the same origin to also ignore
cert verification, regardless of the value of
verify.(GHSA-9wx4-h78v-vm56)
Improvements
verify=Truenow reuses a global SSLContext which should improverequest time variance between first and subsequent requests. It should
also minimize certificate load time on Windows systems when using a Python
version built with OpenSSL 3.x. (#6667)
(
chardetorcharset_normalizer) when repackaged or vendored.This enables
pipand other projects to minimize their vendoringsurface area. The
Response.text()andapparent_encodingAPIswill default to
utf-8if neither library is present. (#6702)Bugfixes
calculated in the request content-length. (#6589)
/(path separator) could leadurllib3 to unnecessarily reparse the request URI. (#6644)
Deprecations
Documentation
Packaging
The source files for the projects (formerly
requests) is now locatedin
src/requestsin the Requests sdist. (#6506)using
hatchling. This should not impact the average user, but extremely oldversions of packaging utilities may have issues with the new packaging format.
python/typing_extensions (typing-extensions)
v4.12.2Compare Source
generics with an overridden
__eq__method would raise errors.Patch by Jelle Zijlstra.
v4.12.1Compare Source
of PEP 649 in Python 3.14. Patch by Jelle Zijlstra.
Annotatedtypes would causeTypeErrorto be raised if the nestedAnnotatedtype had unhashablemetadata. Patch by Alex Waygood.
v4.12.0Compare Source
This release is mostly the same as 4.12.0rc1 but fixes one more
longstanding bug.
typing_extensions.ParamSpecon Python 3.8 and3.9 that meant that
isinstance(typing_extensions.ParamSpec("P"), typing.TypeVar)would have adifferent result in some situations depending on whether or not a profiling
function had been set using
sys.setprofile. Patch by Alex Waygood.urllib3/urllib3 (urllib3)
v2.2.3Compare Source
==================
Features
#​3473 <https://github.com/urllib3/urllib3/issues/3473>__)Bugfixes
All other methods of supplying a request body already use UTF-8 starting in urllib3 v2.0. (
#​3053 <https://github.com/urllib3/urllib3/issues/3053>__)#​3252 <https://github.com/urllib3/urllib3/issues/3252>__)#​3413 <https://github.com/urllib3/urllib3/issues/3413>__)#​3432 <https://github.com/urllib3/urllib3/issues/3432>__)HTTPConnection.default_socket_options. (#​3448 <https://github.com/urllib3/urllib3/issues/3448>__)HTTP/2 (experimental)
HTTP/2 support is still in early development.
Excluded Transfer-Encoding: chunked from HTTP/2 request body (
#​3425 <https://github.com/urllib3/urllib3/issues/3425>__)Added version checking for
h2(https://pypi.org/project/h2/) usage.Now only accepting supported h2 major version 4.x.x. (
#​3290 <https://github.com/urllib3/urllib3/issues/3290>__)Added a probing mechanism for determining whether a given target origin
supports HTTP/2 via ALPN. (
#​3301 <https://github.com/urllib3/urllib3/issues/3301>__)Add support for sending a request body with HTTP/2 (
#​3302 <https://github.com/urllib3/urllib3/issues/3302>__)Deprecations and Removals
_version.pyfile has been removed and is now created at build time by hatch-vcs. (#​3412 <https://github.com/urllib3/urllib3/issues/3412>__)#​3475 <https://github.com/urllib3/urllib3/issues/3475>__)v2.2.2Compare Source
==================
Proxy-Authorizationheader to the list of headers to strip from requests when redirecting to a different host. As before, different headers can be set viaRetry.remove_headers_on_redirect.amtto read methods ofhttp.client.HTTPResponseas an alternative toNone. (#​3122 <https://github.com/urllib3/urllib3/issues/3122>__)typing.Self. (#​3363 <https://github.com/urllib3/urllib3/issues/3363>__)Configuration
📅 Schedule: Branch creation - "after 5am on saturday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Renovate Bot.