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

Bump the pip-minor-patch group with 15 updates #71

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 5, 2023

Bumps the pip-minor-patch group with 15 updates:

Package From To
uvicorn 0.18.3 0.24.0.post1
aiohttp 3.8.3 3.9.1
aiomysql 0.1.1 0.2.0
asyncpg 0.26.0 0.29.0
sentry-sdk 1.9.10 1.38.0
httpx 0.23.0 0.25.2
alembic 1.8.1 1.13.0
pyjwt 2.5.0 2.8.0
icalendar 5.0.0 5.0.11
wemake-python-styleguide 0.16.1 0.17.0
pytest 7.1.3 7.4.3
pytest-asyncio 0.19.0 0.23.2
pytest-mock 3.8.2 3.12.0
aiosqlite 0.17.0 0.19.0
ruff 0.1.5 0.1.7

Updates uvicorn from 0.18.3 to 0.24.0.post1

Release notes

Sourced from uvicorn's releases.

Version 0.24.0.post1

Fixed

  • Revert mkdocs-material from 9.1.21 to 9.2.6 (#2148) 05/11/23

Version 0.24.0

Added

  • Support Python 3.12 (#2145) 04/11/23
  • Allow setting app via environment variable UVICORN_APP (#2106)

Full Changelog: encode/uvicorn@0.23.2...0.24.0

Version 0.23.2

Fixed

  • Maintain the same behavior of websockets from 10.4 on 11.0 (#2061) 30/07/23

Full Changelog: encode/uvicorn@0.23.1...0.23.2

Version 0.23.1

Fixed

  • Add typing_extensions for Python 3.10 and lower (#2053) 18/07/23

Full Changelog: encode/uvicorn@0.23.0...0.23.1

Version 0.23.0

Added

  • Add --ws-max-queue parameter WebSockets (#2033) 10/07/23

Removed

  • Drop support for Python 3.7 (#1996) 19/06/23
  • Remove asgiref as typing dependency (#1999) 08/06/23

Fixed

  • Set scope["scheme"] to ws or wss instead of http or https on ProxyHeadersMiddleware for WebSockets (#2043) 12/07/23

Changed

  • Raise ImportError on circular import (#2040) 09/07/23
  • Use logger.getEffectiveLevel() instead of logger.level to check if log level is TRACE (#1966) 01/06/23

... (truncated)

Changelog

Sourced from uvicorn's changelog.

0.24.0.post1 - 2023-11-06

Fixed

  • Revert mkdocs-material from 9.1.21 to 9.2.6 (#2148) 05/11/23

0.24.0 - 2023-11-04

Added

  • Support Python 3.12 (#2145) 04/11/23
  • Allow setting app via environment variable UVICORN_APP (#2106) 21/09/23

0.23.2 - 2023-07-31

Fixed

  • Maintain the same behavior of websockets from 10.4 on 11.0 (#2061) 30/07/23

0.23.1 - 2023-07-18

Fixed

  • Add typing_extensions for Python 3.10 and lower (#2053) 18/07/23

0.23.0 - 2023-07-10

Added

  • Add --ws-max-queue parameter WebSockets (#2033) 10/07/23

Removed

  • Drop support for Python 3.7 (#1996) 19/06/23
  • Remove asgiref as typing dependency (#1999) 08/06/23

Fixed

  • Set scope["scheme"] to ws or wss instead of http or https on ProxyHeadersMiddleware for WebSockets (#2043) 12/07/23

Changed

  • Raise ImportError on circular import (#2040) 09/07/23
  • Use logger.getEffectiveLevel() instead of logger.level to check if log level is TRACE (#1966) 01/06/23

0.22.0 - 2023-04-28

Added

  • Add --timeout-graceful-shutdown parameter (#1950) 26/04/23

... (truncated)

Commits

Updates aiohttp from 3.8.3 to 3.9.1

Release notes

Sourced from aiohttp's releases.

3.9.1

Bugfixes

  • Fixed importing aiohttp under PyPy on Windows.

    (#7848)

  • Fixed async concurrency safety in websocket compressor.

    (#7865)

  • Fixed ClientResponse.close() releasing the connection instead of closing.

    (#7869)

  • Fixed a regression where connection may get closed during upgrade. -- by :user:Dreamsorcerer

    (#7879)

  • Fixed messages being reported as upgraded without an Upgrade header in Python parser. -- by :user:Dreamsorcerer

    (#7895)


3.9.0

Features

  • Introduced AppKey for static typing support of Application storage. See https://docs.aiohttp.org/en/stable/web_advanced.html#application-s-config

    (#5864)

  • Added a graceful shutdown period which allows pending tasks to complete before the application's cleanup is called. The period can be adjusted with the shutdown_timeout parameter. -- by :user:Dreamsorcerer. See https://docs.aiohttp.org/en/latest/web_advanced.html#graceful-shutdown

    (#7188)

  • Added handler_cancellation <https://docs.aiohttp.org/en/stable/web_advanced.html#web-handler-cancellation>_ parameter to cancel web handler on client disconnection. -- by :user:mosquito This (optionally) reintroduces a feature removed in a previous release. Recommended for those looking for an extra level of protection against denial-of-service attacks.

    (#7056)

  • Added support for setting response header parameters max_line_size and max_field_size.

... (truncated)

Changelog

Sourced from aiohttp's changelog.

3.9.1 (2023-11-26)

Bugfixes

  • Fixed importing aiohttp under PyPy on Windows.

    [#7848](https://github.com/aio-libs/aiohttp/issues/7848) <https://github.com/aio-libs/aiohttp/issues/7848>_

  • Fixed async concurrency safety in websocket compressor.

    [#7865](https://github.com/aio-libs/aiohttp/issues/7865) <https://github.com/aio-libs/aiohttp/issues/7865>_

  • Fixed ClientResponse.close() releasing the connection instead of closing.

    [#7869](https://github.com/aio-libs/aiohttp/issues/7869) <https://github.com/aio-libs/aiohttp/issues/7869>_

  • Fixed a regression where connection may get closed during upgrade. -- by :user:Dreamsorcerer

    [#7879](https://github.com/aio-libs/aiohttp/issues/7879) <https://github.com/aio-libs/aiohttp/issues/7879>_

  • Fixed messages being reported as upgraded without an Upgrade header in Python parser. -- by :user:Dreamsorcerer

    [#7895](https://github.com/aio-libs/aiohttp/issues/7895) <https://github.com/aio-libs/aiohttp/issues/7895>_


3.9.0 (2023-11-18)

Features

  • Introduced AppKey for static typing support of Application storage. See https://docs.aiohttp.org/en/stable/web_advanced.html#application-s-config

    [#5864](https://github.com/aio-libs/aiohttp/issues/5864) <https://github.com/aio-libs/aiohttp/issues/5864>_

  • Added a graceful shutdown period which allows pending tasks to complete before the application's cleanup is called. The period can be adjusted with the shutdown_timeout parameter. -- by :user:Dreamsorcerer. See https://docs.aiohttp.org/en/latest/web_advanced.html#graceful-shutdown

    [#7188](https://github.com/aio-libs/aiohttp/issues/7188) <https://github.com/aio-libs/aiohttp/issues/7188>_

  • Added handler_cancellation <https://docs.aiohttp.org/en/stable/web_advanced.html#web-handler-cancellation>_ parameter to cancel web handler on client disconnection. -- by :user:mosquito This (optionally) reintroduces a feature removed in a previous release.

... (truncated)

Commits

Updates aiomysql from 0.1.1 to 0.2.0

Release notes

Sourced from aiomysql's releases.

v0.2.0

Changes

0.2.0 (2023-06-11) ^^^^^^^^^^^^^^^^^^

  • Bump minimal SQLAlchemy version to 1.3 #815

  • Remove deprecated Pool.get #706

  • | Partially ported PyMySQL#304 <https://github.com/PyMySQL/PyMySQL/pull/304>_ #792 | aiomysql now reraises the original exception during connect() if it's not IOError, OSError or asyncio.TimeoutError. | This was previously always raised as OperationalError.

  • Fix debug log level with sha256_password authentication #863

  • Modernized code with pyupgrade <https://github.com/asottile/pyupgrade>_ to Python 3.7+ syntax #930

  • Removed tests for EoL MariaDB versions 10.3, 10.7 and 10.8, added tests for MariaDB 10.9, 10.10, 10.11 #932

0.1.1 (2022-05-08) ^^^^^^^^^^^^^^^^^^

  • Fix SSL connection handshake charset not respecting client configuration #776

0.1.0 (2022-04-11) ^^^^^^^^^^^^^^^^^^

  • Don't send sys.argv[0] as program_name to MySQL server by default #620

  • Allow running process as anonymous uid #587

  • Fix timed out MySQL 8.0 connections raising InternalError rather than OperationalError #660

  • Fix timed out MySQL 8.0 connections being returned from Pool #660

  • Ensure connections are properly closed before raising an OperationalError when the server connection is lost #660

  • Ensure connections are properly closed before raising an InternalError when packet sequence numbers are out of sync #660

  • Unix sockets are now internally considered secure, allowing sha256_password and caching_sha2_password auth methods to be used #695

  • Test suite now also tests unix socket connections #696

  • Fix SSCursor raising InternalError when last result was not fully retrieved #635

  • Remove deprecated no_delay argument #702

  • Support PyMySQL up to version 1.0.2 #643

... (truncated)

Changelog

Sourced from aiomysql's changelog.

0.2.0 (2023-06-11) ^^^^^^^^^^^^^^^^^^

  • Bump minimal SQLAlchemy version to 1.3 #815

  • Remove deprecated Pool.get #706

  • | Partially ported PyMySQL#304 <https://github.com/PyMySQL/PyMySQL/pull/304>_ #792 | aiomysql now reraises the original exception during connect() if it's not IOError, OSError or asyncio.TimeoutError. | This was previously always raised as OperationalError.

  • Fix debug log level with sha256_password authentication #863

  • Modernized code with pyupgrade <https://github.com/asottile/pyupgrade>_ to Python 3.7+ syntax #930

  • Removed tests for EoL MariaDB versions 10.3, 10.7 and 10.8, added tests for MariaDB 10.9, 10.10, 10.11 #932

Commits
  • 83aa96e Merge branch 'release-prep-0.2.0' (#938)
  • e768c10 Update changelog for 0.2.0 release
  • 1edce76 Merge branch 'pypi-publish-pypi-input-naming' (#937)
  • 6fe50fc Migrate GHA pypi publish action inputs to kebab-case
  • 9473d7f Merge branch 'dependabot/pip/master/pytest-7.3.2' (#935)
  • cc6d519 Bump pytest from 7.3.1 to 7.3.2
  • b78dbdf Merge branch 'dependabot/pip/master/coverage-7.2.7' (#934)
  • 28b44f9 Bump coverage from 7.2.6 to 7.2.7
  • aeb7a3d Merge branch 'gha-set-output' (#933)
  • 2b290d5 Migrate away from using deprecated set-output in GHA
  • Additional commits viewable in compare view

Updates asyncpg from 0.26.0 to 0.29.0

Release notes

Sourced from asyncpg's releases.

v0.29.0

Minor fixes and improvements.

Improvements

Fixes

  • When prepared statements are disabled, avoid relying on them harder (#1065) (by @​elprans in cbf64e18)

  • Handle environments with HOME set to a not-a-directory (#1063) (by @​elprans in af922bcf)

  • Fix handling of non-ASCII passwords (#1062) (by @​elprans in 89d5bd03)

  • Disable JIT while doing type introspection (#1082) (by @​elprans in f21ebf64)

  • Remove connection parameter caching in Pool (#1053) (by @​ermakov-oleg in 4ddb0397)

  • Switch to Python 3.12-style wait_for (#1086) (by @​elprans in 4bdd8a7e)

  • Update automatic PostGIS type conversion for Shapely 2.0 (#1085) (by @​ChimneySwift in 8b45beb4)

  • Use the timeout context manager in the connection path (#1087) (by @​elprans in 313b2b2b)

... (truncated)

Commits
  • 74f3a00 asyncpg v0.29.0
  • d7faaff fix: allow host tuple (#1021)
  • b2697ff Add query logging callbacks and context manager (#1043)
  • 93a6f79 Cut BaseProtocol circular reference on close. (#1049)
  • ca9f03b Close cursor portals once the iterator is exhausted (#1088)
  • b7ffab6 Add support for the WHERE clause in copy_to methods (#941)
  • 70c8bd8 Use cleanup_ctx in pool usage doc (#878)
  • ccc7baf Small fix for documentation on using SSL in Connection (#995)
  • 313b2b2 Use the timeout context manager in the connection path (#1087)
  • 8b45beb Update automatic PostGIS type conversion for Shapely 2.0 (#1085)
  • Additional commits viewable in compare view

Updates sentry-sdk from 1.9.10 to 1.38.0

Release notes

Sourced from sentry-sdk's releases.

1.38.0

Various fixes & improvements

1.37.1

Various fixes & improvements

1.37.0

Various fixes & improvements

1.36.0

1.35.0

Various fixes & improvements

  • Updated gRPC integration: Asyncio interceptors and easier setup (#2369) by @​fdellekart

    Our gRPC integration now instruments incoming unary-unary grpc requests and outgoing unary-unary, unary-stream grpc requests using grpcio channels. Everything works now for sync and async code.

    Before this release you had to add Sentry interceptors by hand to your gRPC code, now the only thing you need to do is adding the GRPCIntegration to you sentry_sdk_init() call. (See documentation for more information):

... (truncated)

Changelog

Sourced from sentry-sdk's changelog.

1.38.0

Various fixes & improvements

1.37.1

Various fixes & improvements

1.37.0

Various fixes & improvements

1.36.0

Various fixes & improvements

1.35.0

Various fixes & improvements

... (truncated)

Commits
  • 2904574 Update CHANGELOG.md
  • 62c9220 release: 1.38.0
  • a7f5a66 Only add trace context to checkins and do not run event_processors for checki...
  • b250a89 feat: metric span summaries (#2522)
  • bd68a3e feat(metrics): Add source context to code locations (#2539)
  • 044ce0a Use in app filepath instead of absolute path (#2541)
  • c025ffe Switch to jinja2 for generating CI yamls (#2534)
  • 12b8f98 Merge branch 'release/1.37.1'
  • aed0cca release: 1.37.1
  • 6723799 Fix NameError on parse_version with eventlet (#2532)
  • Additional commits viewable in compare view

Updates httpx from 0.23.0 to 0.25.2

Release notes

Sourced from httpx's releases.

Version 0.25.2

0.25.2 (24th November, 2023)

Added

  • Add missing type hints to few __init__() methods. (#2938)

Version 0.25.1

0.25.1 (3rd November, 2023)

  • Add support for Python 3.12. (#2854)
  • Add support for httpcore 1.0 (#2885)

Fixed

  • Raise ValueError on Response.encoding being set after Response.text has been accessed. (#2852)

Version 0.25.0

0.25.0 (11th Sep, 2023)

Removed

  • Drop support for Python 3.7. (#2813)

Added

  • Support HTTPS proxies. (#2845)
  • Change the type of Extensions from Mapping[Str, Any] to MutableMapping[Str, Any]. (#2803)
  • Add socket_options argument to httpx.HTTPTransport and httpx.AsyncHTTPTransport classes. (#2716)
  • The Response.raise_for_status() method now returns the response instance. For example: data = httpx.get('...').raise_for_status().json(). (#2776)

Fixed

  • Return 500 error response instead of exceptions when raise_app_exceptions=False is set on ASGITransport. (#2669)
  • Ensure all WSGITransport environs have a SERVER_PROTOCOL. (#2708)
  • Always encode forward slashes as %2F in query parameters (#2723)
  • Use Mozilla documentation instead of httpstatuses.com for HTTP error reference (#2768)

Version 0.24.1

0.24.1 (17th May, 2023)

Added

  • Provide additional context in some InvalidURL exceptions. (#2675)

Fixed

  • Fix optional percent-encoding behaviour. (#2671)
  • More robust checking for opening upload files in binary mode. (#2630)
  • Properly support IP addresses in NO_PROXY environment variable. (#2659)

... (truncated)

Changelog

Sourced from httpx's changelog.

0.25.2 (24th November, 2023)

Added

  • Add missing type hints to few __init__() methods. (#2938)

0.25.1 (3rd November, 2023)

Added

  • Add support for Python 3.12. (#2854)
  • Add support for httpcore 1.0 (#2885)

Fixed

  • Raise ValueError on Response.encoding being set after Response.text has been accessed. (#2852)

0.25.0 (11th September, 2023)

Removed

  • Drop support for Python 3.7. (#2813)

Added

  • Support HTTPS proxies. (#2845)
  • Change the type of Extensions from Mapping[Str, Any] to MutableMapping[Str, Any]. (#2803)
  • Add socket_options argument to httpx.HTTPTransport and httpx.AsyncHTTPTransport classes. (#2716)
  • The Response.raise_for_status() method now returns the response instance. For example: data = httpx.get('...').raise_for_status().json(). (#2776)

Fixed

  • Return 500 error response instead of exceptions when raise_app_exceptions=False is set on ASGITransport. (#2669)
  • Ensure all WSGITransport environs have a SERVER_PROTOCOL. (#2708)
  • Always encode forward slashes as %2F in query parameters (#2723)
  • Use Mozilla documentation instead of httpstatuses.com for HTTP error reference (#2768)

0.24.1 (17th May, 2023)

Added

  • Provide additional context in some InvalidURL exceptions. (#2675)

Fixed

  • Fix optional percent-encoding behaviour. (#2671)
  • More robust checking for opening upload files in binary mode. (#2630)
  • Properly support IP addresses in NO_PROXY environment variable. (#2659)
  • Set default file for NetRCAuth() to None to use the stdlib default. (#2667)
  • Set logging request lines to INFO level for async requests, in line with sync requests. (#2656)

... (truncated)

Commits

Updates alembic from 1.8.1 to 1.13.0

Release notes

Sourced from alembic's releases.

1.13.0

Released: December 1, 2023

changed

  • [changed] [installation] Alembic 1.13 now supports Python 3.8 and above.

    References: #1359

usecase

  • [usecase] [operations] Updated logic introduced in #151 to allow if_exists and if_not_exists on index operations also on SQLAlchemy 1.4 series. Previously this feature was mistakenly requiring the 2.0 series.

    References: #1323

  • [usecase] Replaced python-dateutil with the standard library module zoneinfo. This module was added in Python 3.9, so previous version will been to install the backport of it, available by installing the backports.zoneinfo library. The alembic[tz] option has been updated accordingly.

    References: #1339

bug

  • [bug] [commands] Fixed issue where the alembic check command did not function correctly with upgrade structures that have multiple, top-level elements, as are generated from the "multi-env" environment template. Pull request courtesy Neil Williams.

    References: #1234

  • [bug] [autogenerate] Fixed autogenerate issue where create_table_comment() and drop_table_comment() rendering in a batch table modify would include the "table" and "schema" arguments, which are not accepted in batch as these are already part of the top level block.

    References: #1361

  • [bug] [postgresql] Additional fixes to PostgreSQL expression index compare feature. The compare now correctly accommodates casts and differences in spacing. Added detection logic for operation clauses inside the expression,

... (truncated)

Commits

Updates pyjwt from 2.5.0 to 2.8.0

Release notes

Sourced from pyjwt's releases.

2.8.0

What's Changed

New Contributors

Full Changelog: jpadilla/pyjwt@2.7.0...2.8.0

2.7.0

What's Changed

Bumps the pip-minor-patch group with 15 updates:

| Package | From | To |
| --- | --- | --- |
| [uvicorn](https://github.com/encode/uvicorn) | `0.18.3` | `0.24.0.post1` |
| [aiohttp](https://github.com/aio-libs/aiohttp) | `3.8.3` | `3.9.1` |
| [aiomysql](https://github.com/aio-libs/aiomysql) | `0.1.1` | `0.2.0` |
| [asyncpg](https://github.com/MagicStack/asyncpg) | `0.26.0` | `0.29.0` |
| [sentry-sdk](https://github.com/getsentry/sentry-python) | `1.9.10` | `1.38.0` |
| [httpx](https://github.com/encode/httpx) | `0.23.0` | `0.25.2` |
| [alembic](https://github.com/sqlalchemy/alembic) | `1.8.1` | `1.13.0` |
| [pyjwt](https://github.com/jpadilla/pyjwt) | `2.5.0` | `2.8.0` |
| [icalendar](https://github.com/collective/icalendar) | `5.0.0` | `5.0.11` |
| [wemake-python-styleguide](https://github.com/wemake-services/wemake-python-styleguide) | `0.16.1` | `0.17.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `7.1.3` | `7.4.3` |
| [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.19.0` | `0.23.2` |
| [pytest-mock](https://github.com/pytest-dev/pytest-mock) | `3.8.2` | `3.12.0` |
| [aiosqlite](https://github.com/omnilib/aiosqlite) | `0.17.0` | `0.19.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.1.5` | `0.1.7` |


Updates `uvicorn` from 0.18.3 to 0.24.0.post1
- [Release notes](https://github.com/encode/uvicorn/releases)
- [Changelog](https://github.com/encode/uvicorn/blob/master/CHANGELOG.md)
- [Commits](encode/uvicorn@0.18.3...0.24.0.post1)

Updates `aiohttp` from 3.8.3 to 3.9.1
- [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.8.3...v3.9.1)

Updates `aiomysql` from 0.1.1 to 0.2.0
- [Release notes](https://github.com/aio-libs/aiomysql/releases)
- [Changelog](https://github.com/aio-libs/aiomysql/blob/master/CHANGES.txt)
- [Commits](aio-libs/aiomysql@v0.1.1...v0.2.0)

Updates `asyncpg` from 0.26.0 to 0.29.0
- [Release notes](https://github.com/MagicStack/asyncpg/releases)
- [Commits](MagicStack/asyncpg@v0.26.0...v0.29.0)

Updates `sentry-sdk` from 1.9.10 to 1.38.0
- [Release notes](https://github.com/getsentry/sentry-python/releases)
- [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-python@1.9.10...1.38.0)

Updates `httpx` from 0.23.0 to 0.25.2
- [Release notes](https://github.com/encode/httpx/releases)
- [Changelog](https://github.com/encode/httpx/blob/master/CHANGELOG.md)
- [Commits](encode/httpx@0.23.0...0.25.2)

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

Updates `pyjwt` from 2.5.0 to 2.8.0
- [Release notes](https://github.com/jpadilla/pyjwt/releases)
- [Changelog](https://github.com/jpadilla/pyjwt/blob/master/CHANGELOG.rst)
- [Commits](jpadilla/pyjwt@2.5.0...2.8.0)

Updates `icalendar` from 5.0.0 to 5.0.11
- [Changelog](https://github.com/collective/icalendar/blob/master/CHANGES.rst)
- [Commits](collective/icalendar@v5.0.0...v5.0.11)

Updates `wemake-python-styleguide` from 0.16.1 to 0.17.0
- [Release notes](https://github.com/wemake-services/wemake-python-styleguide/releases)
- [Changelog](https://github.com/wemake-services/wemake-python-styleguide/blob/master/CHANGELOG.md)
- [Commits](wemake-services/wemake-python-styleguide@0.16.1...0.17.0)

Updates `pytest` from 7.1.3 to 7.4.3
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@7.1.3...7.4.3)

Updates `pytest-asyncio` from 0.19.0 to 0.23.2
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v0.19.0...v0.23.2)

Updates `pytest-mock` from 3.8.2 to 3.12.0
- [Release notes](https://github.com/pytest-dev/pytest-mock/releases)
- [Changelog](https://github.com/pytest-dev/pytest-mock/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-mock@v3.8.2...v3.12.0)

Updates `aiosqlite` from 0.17.0 to 0.19.0
- [Changelog](https://github.com/omnilib/aiosqlite/blob/main/CHANGELOG.md)
- [Commits](omnilib/aiosqlite@v0.17.0...v0.19.0)

Updates `ruff` from 0.1.5 to 0.1.7
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@v0.1.5...v0.1.7)

---
updated-dependencies:
- dependency-name: uvicorn
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor-patch
- dependency-name: aiohttp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor-patch
- dependency-name: aiomysql
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor-patch
- dependency-name: asyncpg
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor-patch
- dependency-name: sentry-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor-patch
- dependency-name: httpx
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor-patch
- dependency-name: alembic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor-patch
- dependency-name: pyjwt
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor-patch
- dependency-name: icalendar
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-minor-patch
- dependency-name: wemake-python-styleguide
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-minor-patch
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-minor-patch
- dependency-name: pytest-asyncio
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-minor-patch
- dependency-name: pytest-mock
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-minor-patch
- dependency-name: aiosqlite
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-minor-patch
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Dec 5, 2023
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 11, 2023

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Dec 11, 2023
@dependabot dependabot bot deleted the dependabot/pip/pip-minor-patch-e390982bb8 branch December 11, 2023 16:04
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.

0 participants