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

chore(deps): update all non-major dependencies #183

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 10, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update Pending
aiohttp ==3.11.10 -> ==3.11.11 age adoption passing confidence patch
flask (changelog) ==2.2.5 -> ==2.3.3 age adoption passing confidence minor
functions-framework ==3.8.1 -> ==3.8.2 age adoption passing confidence patch
google-api-python-client ==2.155.0 -> ==2.156.0 age adoption passing confidence minor
importlib-metadata ==6.7.0 -> ==6.11.0 age adoption passing confidence minor
itsdangerous (changelog) ==2.1.2 -> ==2.2.0 age adoption passing confidence minor
nginx 1.27.1 -> 1.27.2 age adoption passing confidence final patch 1.27.3
packaging ==24.0 -> ==24.2 age adoption passing confidence minor
protobuf ==5.29.1 -> ==5.29.2 age adoption passing confidence patch
typing-extensions (changelog) ==4.7.1 -> ==4.12.2 age adoption passing confidence minor

Release Notes

aio-libs/aiohttp (aiohttp)

v3.11.11

Compare Source

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

Bug fixes

  • Updated :py:meth:~aiohttp.ClientSession.request to reuse the quote_cookie setting from ClientSession._cookie_jar when processing cookies parameter.
    -- by :user:Cycloctane.

    Related issues and pull requests on GitHub:
    :issue:10093.

  • Fixed type of SSLContext for some static type checkers (e.g. pyright).

    Related issues and pull requests on GitHub:
    :issue:10099.

  • Updated :meth:aiohttp.web.StreamResponse.write annotation to also allow :class:bytearray and :class:memoryview as inputs -- by :user:cdce8p.

    Related issues and pull requests on GitHub:
    :issue:10154.

  • Fixed a hang where a connection previously used for a streaming
    download could be returned to the pool in a paused state.
    -- by :user:javitonino.

    Related issues and pull requests on GitHub:
    :issue:10169.

Features

  • Enabled ALPN on default SSL contexts. This improves compatibility with some
    proxies which don't work without this extension.
    -- by :user:Cycloctane.

    Related issues and pull requests on GitHub:
    :issue:10156.

Miscellaneous internal changes

  • Fixed an infinite loop that can occur when using aiohttp in combination
    with async-solipsism_ -- by :user:bmerry.

    .. _async-solipsism: https://github.com/bmerry/async-solipsism

    Related issues and pull requests on GitHub:
    :issue:10149.


pallets/flask (flask)

v2.3.3

Compare Source

Released 2023-08-21

  • Python 3.12 compatibility.
  • Require Werkzeug >= 2.3.7.
  • Use flit_core instead of setuptools as build backend.
  • Refactor how an app's root and instance paths are determined. :issue:5160

v2.3.2

Compare Source

Released 2023-05-01

  • Set Vary: Cookie header when the session is accessed, modified, or refreshed.
  • Update Werkzeug requirement to >=2.3.3 to apply recent bug fixes.

v2.3.1

Compare Source

Released 2023-04-25

  • Restore deprecated from flask import Markup. :issue:5084

v2.3.0

Compare Source

Released 2023-04-25

  • Drop support for Python 3.7. :pr:5072

  • Update minimum requirements to the latest versions: Werkzeug>=2.3.0, Jinja2>3.1.2,
    itsdangerous>=2.1.2, click>=8.1.3.

  • Remove previously deprecated code. :pr:4995

    • The push and pop methods of the deprecated _app_ctx_stack and
      _request_ctx_stack objects are removed. top still exists to give
      extensions more time to update, but it will be removed.
    • The FLASK_ENV environment variable, ENV config key, and app.env
      property are removed.
    • The session_cookie_name, send_file_max_age_default, use_x_sendfile,
      propagate_exceptions, and templates_auto_reload properties on app
      are removed.
    • The JSON_AS_ASCII, JSON_SORT_KEYS, JSONIFY_MIMETYPE, and
      JSONIFY_PRETTYPRINT_REGULAR config keys are removed.
    • The app.before_first_request and bp.before_app_first_request decorators
      are removed.
    • json_encoder and json_decoder attributes on app and blueprint, and the
      corresponding json.JSONEncoder and JSONDecoder classes, are removed.
    • The json.htmlsafe_dumps and htmlsafe_dump functions are removed.
    • Calling setup methods on blueprints after registration is an error instead of a
      warning. :pr:4997
  • Importing escape and Markup from flask is deprecated. Import them
    directly from markupsafe instead. :pr:4996

  • The app.got_first_request property is deprecated. :pr:4997

  • The locked_cached_property decorator is deprecated. Use a lock inside the
    decorated function if locking is needed. :issue:4993

  • Signals are always available. blinker>=1.6.2 is a required dependency. The
    signals_available attribute is deprecated. :issue:5056

  • Signals support async subscriber functions. :pr:5049

  • Remove uses of locks that could cause requests to block each other very briefly.
    :issue:4993

  • Use modern packaging metadata with pyproject.toml instead of setup.cfg.
    :pr:4947

  • Ensure subdomains are applied with nested blueprints. :issue:4834

  • config.from_file can use text=False to indicate that the parser wants a
    binary file instead. :issue:4989

  • If a blueprint is created with an empty name it raises a ValueError.
    :issue:5010

  • SESSION_COOKIE_DOMAIN does not fall back to SERVER_NAME. The default is not
    to set the domain, which modern browsers interpret as an exact match rather than
    a subdomain match. Warnings about localhost and IP addresses are also removed.
    :issue:5051

  • The routes command shows each rule's subdomain or host when domain
    matching is in use. :issue:5004

  • Use postponed evaluation of annotations. :pr:5071

googlecloudplatform/functions-framework-python (functions-framework)

v3.8.2

Compare Source

Bug Fixes
googleapis/google-api-python-client (google-api-python-client)

v2.156.0

Compare Source

Features
python/importlib_metadata (importlib-metadata)

v6.11.0

Compare Source

v6.10.0

Compare Source

v6.9.0

Compare Source

v6.8.0

Compare Source

pallets/itsdangerous (itsdangerous)

v2.2.0

Compare Source

Released 2024-04-16

  • Drop support for Python 3.7. :pr:372
  • Use modern packaging metadata with pyproject.toml instead of setup.cfg.
    :pr:326
  • Use flit_core instead of setuptools as build backend.
  • Deprecate the __version__ attribute. Use feature detection, or
    importlib.metadata.version("itsdangerous"), instead. :issue:371
  • Serializer and the return type of dumps is generic for type checking.
    By default it is Serializer[str] and dumps returns a str. If a
    different serializer argument is given, it will try to infer the return
    type of its dumps method. :issue:347
  • The default hashlib.sha1 may not be available in FIPS builds. Don't
    access it at import time so the developer has time to change the default.
    :issue:375
pypa/packaging (packaging)

v24.2

Compare Source

What's Changed

New Contributors

Full Changelog: pypa/packaging@24.1...24.2

v24.1

Compare Source

What's Changed

New Contributors

Full Changelog: pypa/packaging@24.0...24.1

python/typing_extensions (typing-extensions)

v4.12.2

Compare Source

  • Fix regression in v4.12.0 where specialization of certain
    generics with an overridden __eq__ method would raise errors.
    Patch by Jelle Zijlstra.
  • Fix tests so they pass on 3.13.0b2

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.

v4.11.0

Compare Source

This feature release provides improvements to various recently
added features, most importantly type parameter defaults (PEP 696).

There are no changes since 4.11.0rc1.

v4.10.0

Compare Source

This feature release adds support for PEP 728 (TypedDict with extra
items) and PEP 742 (TypeIs).

There are no changes since 4.10.0rc1.

v4.9.0

Compare Source

This feature release adds typing_extensions.ReadOnly, as specified
by PEP 705, and makes various other improvements, especially to
@typing_extensions.deprecated().

There are no changes since 4.9.0rc1.

v4.8.0

Compare Source

No changes since 4.8.0rc1.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from ffecd7f to 51764b0 Compare October 16, 2024 18:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 8503381 to dbf14a6 Compare October 29, 2024 22:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dbf14a6 to 7117c02 Compare November 1, 2024 18:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f02f065 to cfdcf86 Compare November 13, 2024 22:06
@renovate renovate bot changed the title chore(deps): update nginx docker tag to v1.27.2 chore(deps): update all non-major dependencies Nov 13, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cfdcf86 to 833200d Compare November 14, 2024 18:34
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update nginx docker tag to v1.27.2 Nov 19, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 833200d to e87c0fa Compare November 19, 2024 21:07
@bolyachevets bolyachevets force-pushed the main branch 2 times, most recently from 736e14e to 58b3b2c Compare November 29, 2024 17:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e87c0fa to 5d51ddd Compare November 29, 2024 18:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5d51ddd to 06c17d1 Compare December 10, 2024 07:37
@renovate renovate bot changed the title chore(deps): update nginx docker tag to v1.27.2 chore(deps): update nginx docker tag to v1.27.3 Dec 10, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 119328e to 88a778b Compare December 11, 2024 00:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 6b61e8f to a608337 Compare December 17, 2024 22:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 8eb52bb to 99f7409 Compare December 20, 2024 23:55
@renovate renovate bot changed the title chore(deps): update nginx docker tag to v1.27.3 chore(deps): update all non-major dependencies Dec 20, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from d85b9ec to 4c589d1 Compare December 25, 2024 19:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4c589d1 to 17f1e2c Compare December 25, 2024 22:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants