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

build(deps): bump the patch-and-minor-updates group across 1 directory with 9 updates #1036

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 12, 2024

Bumps the patch-and-minor-updates group with 9 updates in the / directory:

Package From To
pytest-asyncio 0.23.7 0.24.0
pyyaml 6.0.1 6.0.2
greenlet 3.0.3 3.1.0
prometheus-flask-exporter 0.23.0 0.23.1
sqlalchemy 2.0.31 2.0.34
aiohttp 3.9.5 3.10.5
kombu 5.3.7 5.4.1
pydantic 1.10.17 1.10.18
typer-slim 0.12.3 0.12.5

Updates pytest-asyncio from 0.23.7 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

pytest-asyncio 0.23.8

0.23.8 (2024-07-17)

  • Fixes a bug that caused duplicate markers in async tests #813

Known issues

As of v0.23, pytest-asyncio attaches an asyncio event loop to each item of the test suite (i.e. session, packages, modules, classes, functions) and allows tests to be run in those loops when marked accordingly. Pytest-asyncio currently assumes that async fixture scope is correlated with the new event loop scope. This prevents fixtures from being evaluated independently from the event loop scope and breaks some existing test suites (see #706). For example, a test suite may require all fixtures and tests to run in the same event loop, but have async fixtures that are set up and torn down for each module. If you're affected by this issue, please continue using the v0.21 release, until it is resolved.

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 tox
  • f03cf13 Build(deps): Bump hypothesis in /dependencies/default
  • 69540bf Build(deps): Bump attrs from 24.1.0 to 24.2.0 in /dependencies/default
  • b0ccfc5 Build(deps): Bump hypothesis in /dependencies/default
  • 574f1db Build(deps): Bump babel from 2.15.0 to 2.16.0 in /dependencies/docs
  • ae30dac Update .readthedocs.yaml to install pytest-asyncio
  • 972a704 Derive project version using importlib
  • d587a52 [pre-commit.ci] pre-commit autoupdate
  • Additional commits viewable in compare view

Updates pyyaml from 6.0.1 to 6.0.2

Release notes

Sourced from pyyaml's releases.

6.0.2

What's Changed

  • Support for Cython 3.x and Python 3.13.

Full Changelog: yaml/pyyaml@6.0.1...6.0.2

6.0.2rc1

  • Support for extension build with Cython 3.x
  • Support for Python 3.13
  • Added PyPI wheels for musllinux on aarch64
Changelog

Sourced from pyyaml's changelog.

6.0.2 (2024-08-06)

Commits

Updates greenlet from 3.0.3 to 3.1.0

Changelog

Sourced from greenlet's changelog.

3.1.0 (2024-09-10)

.. note::

This will be the last release to support Python 3.7 and 3.8.
  • Adds support for Python 3.13.

.. note::

greenlet will not work in no-gil (free threaded) builds of CPython. Internally, greenlet heavily depends on the GIL.

  • Greatly reduce the chances for crashes during interpreter shutdown. See issue 411 <https://github.com/python-greenlet/greenlet/issues/411>_.

Platform Support

Support for the following platforms was contributed by the community. Note that they are untested by this project's continuous integration services.

  • Hitachi's SuperH CPU <https://github.com/python-greenlet/greenlet/issues/166>_.
  • NetBSD on PowerPC. <https://github.com/python-greenlet/greenlet/pull/402>_
  • RiscV 64 with -fno-omit-frame-pointer <https://github.com/python-greenlet/greenlet/pull/404>. Note that there are known test failures <https://github.com/python-greenlet/greenlet/issues/403>, so this platform may not work reliably at all.
Commits
  • 583e83c Preparing release 3.1.0
  • 19ba7be Typo in CHANGES.rst
  • a97d81f green_init: Remove const qualifiers from the keyword list passed to PyArg_Par...
  • 92b92cc Update CHANGES.rst for new platforms.
  • aedd843 Merge pull request #404 from xypron/riscv64
  • 1efb038 Merge pull request #402 from he32/add-netbsd-ppc
  • c85c666 Typos. Fixes #415.
  • 61115cf Merge pull request #421 from python-greenlet/dependabot/github_actions/github...
  • 451bbc8 Add change note.
  • 38cb40e Bump the github-actions group with 2 updates
  • Additional commits viewable in compare view

Updates prometheus-flask-exporter from 0.23.0 to 0.23.1

Commits
  • 13ca7df Merge pull request #178 from rycus86/snyk-fix-c2eb9185033dfaf0e02b10c311d6b04b
  • 5a0a1c6 Bump version
  • 3e93715 Disable pydantic tests
  • 1bc4ffa fix: requirements.txt to reduce vulnerabilities
  • See full diff in compare view

Updates sqlalchemy from 2.0.31 to 2.0.34

Release notes

Sourced from sqlalchemy's releases.

2.0.34

Released: September 4, 2024

orm

  • [orm] [bug] Fixed regression caused by issue #11814 which broke support for certain flavors of PEP 593 Annotated in the type_annotation_map when builtin types such as list, dict were used without an element type. While this is an incomplete style of typing, these types nonetheless previously would be located in the type_annotation_map correctly.

    References: #11831

sqlite

  • [sqlite] [bug] Fixed regression in SQLite reflection caused by #11677 which interfered with reflection for CHECK constraints that were followed by other kinds of constraints within the same table definition. Pull request courtesy Harutaka Kawamura.

    References: #11832

2.0.33

Released: September 3, 2024

general

  • [general] [change] The pin for setuptools<69.3 in pyproject.toml has been removed. This pin was to prevent a sudden change in setuptools to use PEP 625 from taking place, which would change the file name of SQLAlchemy's source distribution on pypi to be an all lower case name, which is likely to cause problems with various build environments that expected the previous naming style. However, the presence of this pin is holding back environments that otherwise want to use a newer setuptools, so we've decided to move forward with this change, with the assumption that build environments will have largely accommodated the setuptools change by now.

    References: #11818

orm

  • [orm] [bug] [regression] Fixed regression from 1.3 where the column key used for a hybrid property might be populated with that of the underlying column that it returns, for a property that returns an ORM mapped column directly, rather than the key

... (truncated)

Commits

Updates aiohttp from 3.9.5 to 3.10.5

Release notes

Sourced from aiohttp's releases.

3.10.5

Bug fixes

  • Fixed :meth:aiohttp.ClientResponse.json() not setting status when :exc:aiohttp.ContentTypeError is raised -- by :user:bdraco.

    Related issues and pull requests on GitHub: #8742.

Miscellaneous internal changes

  • Improved performance of the WebSocket reader -- by :user:bdraco.

    Related issues and pull requests on GitHub: #8736, #8747.


3.10.4

Bug fixes

  • Fixed decoding base64 chunk in BodyPartReader -- by :user:hyzyla.

    Related issues and pull requests on GitHub: #3867.

  • Fixed a race closing the server-side WebSocket where the close code would not reach the client -- by :user:bdraco.

    Related issues and pull requests on GitHub: #8680.

  • Fixed unconsumed exceptions raised by the WebSocket heartbeat -- by :user:bdraco.

    If the heartbeat ping raised an exception, it would not be consumed and would be logged as an warning.

... (truncated)

Changelog

Sourced from aiohttp's changelog.

3.10.5 (2024-08-19)

Bug fixes

  • Fixed :meth:aiohttp.ClientResponse.json() not setting status when :exc:aiohttp.ContentTypeError is raised -- by :user:bdraco.

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

Miscellaneous internal changes

  • Improved performance of the WebSocket reader -- by :user:bdraco.

    Related issues and pull requests on GitHub: :issue:8736, :issue:8747.


3.10.4 (2024-08-17)

Bug fixes

  • Fixed decoding base64 chunk in BodyPartReader -- by :user:hyzyla.

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

  • Fixed a race closing the server-side WebSocket where the close code would not reach the client -- by :user:bdraco.

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

... (truncated)

Commits

Updates kombu from 5.3.7 to 5.4.1

Release notes

Sourced from kombu's releases.

v5.4.1

What's Changed

New Contributors

Full Changelog: celery/kombu@v5.4.0...v5.4.1

v5.4.0

We want to add a special thanks to contribution celery/kombu#2007 by @​awmackowiak for fixing the Redis reconnection bug. Restoring Redis stability has been an essential improvement - thank you!

The rest of the changes are listed below.

What's Changed

... (truncated)

Changelog

Sourced from kombu's changelog.

5.4.1

:release-date: 11 Sep, 2024 :release-by: Tomer Nosrati

  • Update mypy to 1.11.2 (#2101)
  • SQS: Fixes #2091 queue_delete() method doesn't actually delete the queue (#2099)
  • Validate SQS SSL certs by default (#2094)
  • Resolving TypeError, during version unpacking (#2098)
  • Revert: allow users to disable broker heartbeats by not providing a timeout (#2097, #2016) (#2104)
  • Update msgpack to 1.1.0 (#2105)
  • Update pytest to 8.3.3 (#2108)
  • Prepare for release: v5.4.1 (#2109)

.. _version-5.4.0:

5.4.0

:release-date: 6 August, 2024 :release-by: Tomer Nosrati

We want to add a special thanks to contribution [#2007](https://github.com/celery/kombu/issues/2007) <https://github.com/celery/kombu/pull/2007>_ by @​awmackowiak for fixing the Redis reconnection bug. Restoring Redis stability has been an essential improvement - thank you!

The rest of the changes are listed below.

Changes

  • fix: Fanout exchange messages mixed across virtual databases in Redis sentinel (#1986)
  • Pin pymongo to latest version 4.7.2 (#1994)
  • enable/fix test_etcd.py (resolves #2001) (#2002)
  • Limit requests<2.32.0 due to docker-py issue 3256 (#2011)
  • enhance: allow users to disable broker heartbeats (#1998)
  • enhance: allow uses to disable broker heartbeats by not providing a timeout (#1997, #1998) (#2016)
  • chore(typing): annotate utils/debug.py (#1714)
  • ConnectionPool can't be used after .resize(..., reset=True) (resolves #2018) (#2024)
  • Fix Redis connections after reconnect - consumer starts consuming the tasks after crash (#2007)
  • Add support for mongodb+srv scheme (#1976)
  • Added Changelog for v5.4.0rc1 (#2033)
  • Fixed bumpversion bug with RC versions (#2034)
  • Fix typo in README.rst (#2036)
  • Reverted limiting requests<2.32.0 in requirements/default.txt but kept in tox.ini due to docker-py issue 3256 (#2041)
  • Redis transport - Redelivered messages should respect the original priority (#2026)
  • Exclude Unit 3.9 from CI (#2046)
  • Fixed CI error from excluding Python 3.9 unit tests (#2047)
  • Fixed flaky integration test: test_publish_requeue_consume() (#2048)
  • fix: don't crash on properties.body_encoding: utf-8 (#1690)
  • chore: handle kafka transport with confluentkafka ✨ (#1574)
  • Revert "Exclude Unit 3.9 from CI #2046" (#2054)
  • fix azure service bus isinstance checks when None (#2053)

... (truncated)

Commits

Updates pydantic from 1.10.17 to 1.10.18

Release notes

Sourced from pydantic's releases.

v1.10.18 (2024-08-22)

What's Changed

Fixes

New Contributors

Full Changelog: pydantic/pydantic@v1.10.17...v1.10.18

Changelog

Sourced from pydantic's changelog.

v1.10.18 (2024-08-22)

Commits

Updates typer-slim from 0.12.3 to 0.12.5

Release notes

Sourced from typer-slim's releases.

0.12.5

Features

  • 💄 Unify the width of the Rich console for help and errors. PR #788 by @​racinmat.
  • 🚸 Improve assertion error message if a group is not a valid subclass. PR #425 by @​chrisburr.

Fixes

Refactors

Docs

Internal

0.12.4

Features

Fixes

  • 🐛 Fix support for UnionType (e.g. str | None) with Python 3.11. PR #548 by @​jonaslb.

... (truncated)

Changelog

Sourced from typer-slim's changelog.

0.12.5

Features

  • 💄 Unify the width of the Rich console for help and errors. PR #788 by @​racinmat.
  • 🚸 Improve assertion error message if a group is not a valid subclass. PR #425 by @​chrisburr.

Fixes

Refactors

Docs

Internal

0.12.4

Features

Fixes

... (truncated)

Commits
  • 88aefd4 🔖 Release version 0.12.5
  • 3ac3644 📝 Update release notes
  • d93c0ac 🔨 Pre-install dependencies in Docker so that testing in Docker is faster (#954)
  • a337850 📝 Update release notes
  • a5b7557 ✅ Add needs_bash test fixture (#888)
  • 6cc1f9a 📝 Update release notes
  • fc2c54f 🐛 Ensure rich_markup_mode=None disables Rich formatting (#859)
  • f17bb06 📝 Update release notes
  • afac2b8 🐛 Fix sourcing of completion path for Git Bash (#801)
  • 6b35a70 📝 Update release notes
  • Additional commits viewable in compare view

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
pydantic [>= 2.a, < 3]

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Sep 12, 2024
…y with 9 updates

Bumps the patch-and-minor-updates group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.23.7` | `0.24.0` |
| [pyyaml](https://github.com/yaml/pyyaml) | `6.0.1` | `6.0.2` |
| [greenlet](https://github.com/python-greenlet/greenlet) | `3.0.3` | `3.1.0` |
| [prometheus-flask-exporter](https://github.com/rycus86/prometheus_flask_exporter) | `0.23.0` | `0.23.1` |
| [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) | `2.0.31` | `2.0.34` |
| [aiohttp](https://github.com/aio-libs/aiohttp) | `3.9.5` | `3.10.5` |
| [kombu](https://github.com/celery/kombu) | `5.3.7` | `5.4.1` |
| [pydantic](https://github.com/pydantic/pydantic) | `1.10.17` | `1.10.18` |
| [typer-slim](https://github.com/fastapi/typer) | `0.12.3` | `0.12.5` |



Updates `pytest-asyncio` from 0.23.7 to 0.24.0
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v0.23.7...v0.24.0)

Updates `pyyaml` from 6.0.1 to 6.0.2
- [Release notes](https://github.com/yaml/pyyaml/releases)
- [Changelog](https://github.com/yaml/pyyaml/blob/main/CHANGES)
- [Commits](yaml/pyyaml@6.0.1...6.0.2)

Updates `greenlet` from 3.0.3 to 3.1.0
- [Changelog](https://github.com/python-greenlet/greenlet/blob/master/CHANGES.rst)
- [Commits](python-greenlet/greenlet@3.0.3...3.1.0)

Updates `prometheus-flask-exporter` from 0.23.0 to 0.23.1
- [Commits](rycus86/prometheus_flask_exporter@0.23.0...0.23.1)

Updates `sqlalchemy` from 2.0.31 to 2.0.34
- [Release notes](https://github.com/sqlalchemy/sqlalchemy/releases)
- [Changelog](https://github.com/sqlalchemy/sqlalchemy/blob/main/CHANGES.rst)
- [Commits](https://github.com/sqlalchemy/sqlalchemy/commits)

Updates `aiohttp` from 3.9.5 to 3.10.5
- [Release notes](https://github.com/aio-libs/aiohttp/releases)
- [Changelog](https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst)
- [Commits](aio-libs/aiohttp@v3.9.5...v3.10.5)

Updates `kombu` from 5.3.7 to 5.4.1
- [Release notes](https://github.com/celery/kombu/releases)
- [Changelog](https://github.com/celery/kombu/blob/main/Changelog.rst)
- [Commits](celery/kombu@v5.3.7...v5.4.1)

Updates `pydantic` from 1.10.17 to 1.10.18
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v1.10.17...v1.10.18)

Updates `typer-slim` from 0.12.3 to 0.12.5
- [Release notes](https://github.com/fastapi/typer/releases)
- [Changelog](https://github.com/fastapi/typer/blob/master/docs/release-notes.md)
- [Commits](fastapi/typer@0.12.3...0.12.5)

---
updated-dependencies:
- dependency-name: pytest-asyncio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor-updates
- dependency-name: pyyaml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor-updates
- dependency-name: greenlet
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor-updates
- dependency-name: prometheus-flask-exporter
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor-updates
- dependency-name: sqlalchemy
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor-updates
- dependency-name: aiohttp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor-updates
- dependency-name: kombu
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor-updates
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor-updates
- dependency-name: typer-slim
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/patch-and-minor-updates-fc06a9fcce branch from cfe7bb5 to b3e84a1 Compare September 13, 2024 15:39
@brunoapimentel brunoapimentel added this pull request to the merge queue Sep 16, 2024
Merged via the queue into master with commit 6251363 Sep 16, 2024
14 checks passed
@brunoapimentel brunoapimentel deleted the dependabot/pip/patch-and-minor-updates-fc06a9fcce branch September 16, 2024 11:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants