Update all minor versions (master) (minor) #2272
Merged
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:
12.0.0
->12.1.0
22.7.1
->22.10.0
2.31.0
->2.32.3
2.0.1
->2.3.1
2.31.0.20240406
->2.32.0.20240523
5.9.0.0
->5.10.0.20240515
4.11.0
->4.12.1
5.9.0
->5.10.0
6.3
->6.4.post2
Release Notes
tj/commander.js (commander)
v12.1.0
Compare Source
Added
puppeteer/puppeteer (puppeteer)
v22.10.0
: puppeteer: v22.10.0Compare Source
Miscellaneous Chores
Dependencies
v22.9.0
Compare Source
v22.8.2
: puppeteer: v22.8.2Compare Source
Miscellaneous Chores
Dependencies
v22.8.1
: puppeteer: v22.8.1Compare Source
Miscellaneous Chores
Dependencies
v22.8.0
: puppeteer: v22.8.0Compare Source
Miscellaneous Chores
Dependencies
psf/requests (requests)
v2.32.3
Compare Source
Bugfixes
HTTPAdapter. (#6716)
without the
ssl
module. (#6724)v2.32.2
Compare Source
Deprecations
To provide a more stable migration for custom HTTPAdapters impacted
by the CVE changes in 2.32.0, we've renamed
_get_connection
toa new public API,
get_connection_with_tls_context
. Existing customHTTPAdapters will need to migrate their code to use this new API.
get_connection
is 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.1
Compare Source
Bugfixes
v2.32.0
Compare Source
Security
verify=False
on 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=True
now 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)
(
chardet
orcharset_normalizer
) when repackaged or vendored.This enables
pip
and other projects to minimize their vendoringsurface area. The
Response.text()
andapparent_encoding
APIswill default to
utf-8
if 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/requests
in 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.
getsentry/sentry-python (sentry-sdk)
v2.3.1
Compare Source
Various fixes & improvements
v2.3.0
Compare Source
Various fixes & improvements
cohere
testsuite for new release ofcohere
(#3098) by @antonpirker_sentry_span
might be missing (#3096) by @sentrivanav2.2.1
Compare Source
Various fixes & improvements
v2.2.0
Compare Source
New features
last_event_id
function, which had been removed in 2.0.0Other fixes & improvements
get_client
typing (#3063) by @szokeasaurusrexMeasurementValue.unit
NotRequired (#3051) by @antonpirkerv2.1.1
Compare Source
v2.1.0
Compare Source
fix(quart): Fix Quart integration (#3043) by @szokeasaurusrex
New integration: Langchain (#2911) by @colin-sentry
Usage: (Langchain is auto enabling, so you do not need to do anything special)
Check out the LangChain docs for details.
New integration: Anthropic (#2831) by @czyber
Usage: (add the AnthropicIntegration to your
sentry_sdk.init()
call)Check out the Anthropic docs for details.
New integration: Huggingface Hub (#3033) by @colin-sentry
Usage: (Huggingface Hub is auto enabling, so you do not need to do anything special)
Check out the Huggingface docs for details. (comming soon!)
fix(huggingface): Reduce API cross-section for huggingface in test (#3042) by @colin-sentry
fix(django): Fix Django ASGI integration on Python 3.12 (#3027) by @bellini666
feat(perf): Add ability to put measurements directly on spans. (#2967) by @colin-sentry
fix(tests): Fix trytond tests (#3031) by @sentrivana
fix(tests): Update
pytest-asyncio
to fix CI (#3030) by @sentrivanafix(docs): Link to respective migration guides directly (#3020) by @sentrivana
docs(scope): Add docstring to
Scope.set_tags
(#2978) by @szokeasaurusrextest(scope): Fix typos in assert error message (#2978) by @szokeasaurusrex
feat(scope): New
set_tags
function (#2978) by @szokeasaurusrextest(scope): Add unit test for
Scope.set_tags
(#2978) by @szokeasaurusrexfeat(scope): Add
set_tags
to top-level API (#2978) by @szokeasaurusrextest(scope): Add unit test for top-level API
set_tags
(#2978) by @szokeasaurusrexfeat(tests): Parallelize tox (#3025) by @sentrivana
build(deps): Bump checkouts/data-schemas from
4aa14a7
to4381a97
(#3028) by @dependabotmeta(license): Bump copyright year (#3029) by @szokeasaurusrex
python/typing_extensions (typing_extensions)
v4.12.1
Compare Source
of PEP 649 in Python 3.14. Patch by Jelle Zijlstra.
Annotated
types would causeTypeError
to be raised if the nestedAnnotated
type had unhashablemetadata. Patch by Alex Waygood.
v4.12.0
Compare Source
This release is mostly the same as 4.12.0rc1 but fixes one more
longstanding bug.
typing_extensions.ParamSpec
on 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.ultrajson/ultrajson (ujson)
v5.10.0
Compare Source
Added
zopefoundation/zope.interface (zope.interface)
v6.4.post2
Compare Source
======================
(
#​295 <https://github.com/zopefoundation/zope.interface/issues/295>
_)v6.4.post1
Compare Source
======================
(
#​295 <https://github.com/zopefoundation/zope.interface/issues/295>
_)v6.4.post0
Compare Source
======================
zope_interface-6.4.tar.gz
instead ofzope.interface-6.4-py2.tar.gz
which cannot be installed by
zc.buildout
. This release is a re-releaseof version 6.4 with the correct sdist name.
(
#​298 <https://github.com/zopefoundation/zope.interface/issues/298>
_)v6.4
Compare Source
======================
zope_interface-6.4.tar.gz
instead ofzope.interface-6.4-py2.tar.gz
which cannot be installed by
zc.buildout
. This release is a re-releaseof version 6.4 with the correct sdist name.
(
#​298 <https://github.com/zopefoundation/zope.interface/issues/298>
)Configuration
📅 Schedule: Branch creation - "after 5pm on the first day of the month" in timezone Europe/Zurich, Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR becomes conflicted, 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 Mend Renovate. View repository job log here.