Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all minor versions (master) (minor) #2272

Merged
merged 1 commit into from
Jun 1, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 1, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
commander 12.0.0 -> 12.1.0 age adoption passing confidence
puppeteer (source) 22.7.1 -> 22.10.0 age adoption passing confidence
requests (source, changelog) 2.31.0 -> 2.32.3 age adoption passing confidence
sentry-sdk (changelog) 2.0.1 -> 2.3.1 age adoption passing confidence
types-requests (changelog) 2.31.0.20240406 -> 2.32.0.20240523 age adoption passing confidence
types-ujson (changelog) 5.9.0.0 -> 5.10.0.20240515 age adoption passing confidence
typing_extensions (changelog) 4.11.0 -> 4.12.1 age adoption passing confidence
ujson 5.9.0 -> 5.10.0 age adoption passing confidence
zope.interface 6.3 -> 6.4.post2 age adoption passing confidence

Release Notes

tj/commander.js (commander)

v12.1.0

Compare Source

Added
puppeteer/puppeteer (puppeteer)

v22.10.0: puppeteer: v22.10.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 22.9.0 to 22.10.0

v22.9.0

Compare Source

v22.8.2: puppeteer: v22.8.2

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 22.8.1 to 22.8.2

v22.8.1: puppeteer: v22.8.1

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 22.8.0 to 22.8.1

v22.8.0: puppeteer: v22.8.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 22.7.1 to 22.8.0
psf/requests (requests)

v2.32.3

Compare Source

Bugfixes

  • Fixed bug breaking the ability to specify custom SSLContexts in sub-classes of
    HTTPAdapter. (#​6716)
  • Fixed issue where Requests started failing to run on Python versions compiled
    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 to
    a new public API, get_connection_with_tls_context. Existing custom
    HTTPAdapters 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

  • Add missing test certs to the sdist distributed on PyPI.

v2.32.0

Compare Source

Security

  • Fixed an issue where setting verify=False on the first request from a
    Session 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 improve
    request 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)
  • Requests now supports optional use of character detection
    (chardet or charset_normalizer) when repackaged or vendored.
    This enables pip and other projects to minimize their vendoring
    surface area. The Response.text() and apparent_encoding APIs
    will default to utf-8 if neither library is present. (#​6702)

Bugfixes

  • Fixed bug in length detection where emoji length was incorrectly
    calculated in the request content-length. (#​6589)
  • Fixed deserialization bug in JSONDecodeError. (#​6629)
  • Fixed bug where an extra leading / (path separator) could lead
    urllib3 to unnecessarily reparse the request URI. (#​6644)

Deprecations

  • Requests has officially added support for CPython 3.12 (#​6503)
  • Requests has officially added support for PyPy 3.9 and 3.10 (#​6641)
  • Requests has officially dropped support for CPython 3.7 (#​6642)
  • Requests has officially dropped support for PyPy 3.7 and 3.8 (#​6641)

Documentation

  • Various typo fixes and doc improvements.

Packaging

  • Requests has started adopting some modern packaging practices.
    The source files for the projects (formerly requests) is now located
    in src/requests in the Requests sdist. (#​6506)
  • Starting in Requests 2.33.0, Requests will migrate to a PEP 517 build system
    using hatchling. This should not impact the average user, but extremely old
    versions 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

v2.2.1

Compare Source

Various fixes & improvements

v2.2.0

Compare Source

New features
  • Celery integration now sends additional data to Sentry to enable new features to guage the health of your queues
  • Added a new integration for Cohere
  • Reintroduced the last_event_id function, which had been removed in 2.0.0
Other fixes & improvements

v2.1.1

Compare Source

v2.1.0

Compare Source

python/typing_extensions (typing_extensions)

v4.12.1

Compare Source

  • Preliminary changes for compatibility with the draft implementation
    of PEP 649 in Python 3.14. Patch by Jelle Zijlstra.
  • Fix regression in v4.12.0 where nested Annotated types would cause
    TypeError to be raised if the nested Annotated type had unhashable
    metadata. 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.

  • Fix incorrect behaviour of typing_extensions.ParamSpec on Python 3.8 and
    3.9 that meant that
    isinstance(typing_extensions.ParamSpec("P"), typing.TypeVar) would have a
    different 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

======================

  • Publish missing Windows wheels, second attempt.
    (#&#8203;295 <https://github.com/zopefoundation/zope.interface/issues/295>_)

v6.4.post1

Compare Source

======================

  • Publish missing Windows wheels.
    (#&#8203;295 <https://github.com/zopefoundation/zope.interface/issues/295>_)

v6.4.post0

Compare Source

======================

  • The sdist of version 6.4 was uploaded to PyPI as
    zope_interface-6.4.tar.gz instead of zope.interface-6.4-py2.tar.gz
    which cannot be installed by zc.buildout. This release is a re-release
    of version 6.4 with the correct sdist name.
    (#&#8203;298 <https://github.com/zopefoundation/zope.interface/issues/298>_)

v6.4

Compare Source

======================

  • The sdist of version 6.4 was uploaded to PyPI as
    zope_interface-6.4.tar.gz instead of zope.interface-6.4-py2.tar.gz
    which cannot be installed by zc.buildout. This release is a re-release
    of version 6.4 with the correct sdist name.
    (#&#8203;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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Update the dependencies label Jun 1, 2024
@renovate renovate bot enabled auto-merge (rebase) June 1, 2024 15:48
@renovate renovate bot force-pushed the renovate/master-all-minor-versions branch from fe30430 to 71e6d4b Compare June 1, 2024 18:30
@renovate renovate bot merged commit fcf39af into master Jun 1, 2024
4 checks passed
@renovate renovate bot deleted the renovate/master-all-minor-versions branch June 1, 2024 18:39
@geo-ghci-int geo-ghci-int bot added this to the 6.1.0 milestone Oct 25, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Update the dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants