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: bump the python-production-updates group with 7 updates #238

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 11, 2025

Bumps the python-production-updates group with 7 updates:

Package From To
httpx 0.27.2 0.28.1
typer 0.12.5 0.15.1
aiohttp 3.10.10 3.11.12
aiofiles 23.2.1 24.1.0
tqdm 4.66.4 4.67.1
yaspin 3.0.0 3.1.0
pyrate-limiter 3.6.0 3.7.0

Updates httpx from 0.27.2 to 0.28.1

Release notes

Sourced from httpx's releases.

Version 0.28.1

0.28.1 (6th December, 2024)

  • Fix SSL case where verify=False together with client side certificates.

Version 0.28.0

0.28.0 (28th November, 2024)

The 0.28 release includes a limited set of deprecations.

Deprecations:

We are working towards a simplified SSL configuration API.

For users of the standard verify=True or verify=False cases, or verify=<ssl_context> case this should require no changes. The following cases have been deprecated...

  • The verify argument as a string argument is now deprecated and will raise warnings.
  • The cert argument is now deprecated and will raise warnings.

Our revised SSL documentation covers how to implement the same behaviour with a more constrained API.

The following changes are also included:

  • The deprecated proxies argument has now been removed.
  • The deprecated app argument has now been removed.
  • JSON request bodies use a compact representation. (#3363)
  • Review URL percent escape sets, based on WHATWG spec. (#3371, #3373)
  • Ensure certifi and httpcore are only imported if required. (#3377)
  • Treat socks5h as a valid proxy scheme. (#3178)
  • Cleanup Request() method signature in line with client.request() and httpx.request(). (#3378)
  • Bugfix: When passing params={}, always strictly update rather than merge with an existing querystring. (#3364)
Changelog

Sourced from httpx's changelog.

0.28.1 (6th December, 2024)

  • Fix SSL case where verify=False together with client side certificates.

0.28.0 (28th November, 2024)

The 0.28 release includes a limited set of deprecations.

Deprecations:

We are working towards a simplified SSL configuration API.

For users of the standard verify=True or verify=False cases, or verify=<ssl_context> case this should require no changes. The following cases have been deprecated...

  • The verify argument as a string argument is now deprecated and will raise warnings.
  • The cert argument is now deprecated and will raise warnings.

Our revised SSL documentation covers how to implement the same behaviour with a more constrained API.

The following changes are also included:

  • The deprecated proxies argument has now been removed.
  • The deprecated app argument has now been removed.
  • JSON request bodies use a compact representation. (#3363)
  • Review URL percent escape sets, based on WHATWG spec. (#3371, #3373)
  • Ensure certifi and httpcore are only imported if required. (#3377)
  • Treat socks5h as a valid proxy scheme. (#3178)
  • Cleanup Request() method signature in line with client.request() and httpx.request(). (#3378)
  • Bugfix: When passing params={}, always strictly update rather than merge with an existing querystring. (#3364)
Commits

Updates typer from 0.12.5 to 0.15.1

Release notes

Sourced from typer's releases.

0.15.1

Features

  • 🗑️ Deprecate shell_complete and continue to use autocompletion for CLI parameters. PR #974 by @​svlandeg.

Docs

Internal

0.15.0

Features

Internal

0.14.0

Breaking Changes

  • 🔥 Remove auto naming of groups added via add_typer based on the group's callback function name. PR #1052 by @​patrick91.

Before, it was supported to infer the name of a command group from the callback function name in the sub-app, so, in this code:

import typer
app = typer.Typer()
users_app = typer.Typer()
app.add_typer(users_app)
@​users_app.callback()
def users():  # <-- This was the inferred command group name
"""
Manage users in the app.
</tr></table>

... (truncated)

Changelog

Sourced from typer's changelog.

0.15.1

Features

  • 🗑️ Deprecate shell_complete and continue to use autocompletion for CLI parameters. PR #974 by @​svlandeg.

Docs

Internal

0.15.0

Features

Internal

0.14.0

Breaking Changes

  • 🔥 Remove auto naming of groups added via add_typer based on the group's callback function name. PR #1052 by @​patrick91.

Before, it was supported to infer the name of a command group from the callback function name in the sub-app, so, in this code:

import typer
app = typer.Typer()
users_app = typer.Typer()
app.add_typer(users_app)
@​users_app.callback()
</tr></table>

... (truncated)

Commits
  • 0b89650 🔖 Release version 0.15.1
  • bd89bf6 📝 Update release notes
  • 3b9ce47 ✏️ Fix a few typos in the source and documentation (#1028)
  • 95ba85f 📝 Update release notes
  • dbc335b 📝 Fix minor inconsistencies and typos in tutorial (#1067)
  • b88c327 📝 Update release notes
  • d8e56e2 🗑️ Deprecate shell_complete and continue to use autocompletion for CLI pa...
  • 5f378ee 📝 Update release notes
  • b826dc4 ✏️ Fix a few small typos in the documentation (#1077)
  • 9be60da 📝 Update release notes
  • Additional commits viewable in compare view

Updates aiohttp from 3.10.10 to 3.11.12

Release notes

Sourced from aiohttp's releases.

3.11.12

Bug fixes

  • MultipartForm.decode() now follows RFC1341 7.2.1 with a CRLF after the boundary -- by :user:imnotjames.

    Related issues and pull requests on GitHub: #10270.

  • Restored the missing total_bytes attribute to EmptyStreamReader -- by :user:bdraco.

    Related issues and pull requests on GitHub: #10387.

Features

  • Updated :py:func:~aiohttp.request to make it accept _RequestOptions kwargs. -- by :user:Cycloctane.

    Related issues and pull requests on GitHub: #10300.

  • Improved logging of HTTP protocol errors to include the remote address -- by :user:bdraco.

    Related issues and pull requests on GitHub: #10332.

Improved documentation

  • Added aiohttp-openmetrics to list of third-party libraries -- by :user:jelmer.

    Related issues and pull requests on GitHub:

... (truncated)

Changelog

Sourced from aiohttp's changelog.

3.11.12 (2025-02-05)

Bug fixes

  • MultipartForm.decode() now follows RFC1341 7.2.1 with a CRLF after the boundary -- by :user:imnotjames.

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

  • Restored the missing total_bytes attribute to EmptyStreamReader -- by :user:bdraco.

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

Features

  • Updated :py:func:~aiohttp.request to make it accept _RequestOptions kwargs. -- by :user:Cycloctane.

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

  • Improved logging of HTTP protocol errors to include the remote address -- by :user:bdraco.

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

Improved documentation

  • Added aiohttp-openmetrics to list of third-party libraries -- by :user:jelmer.

... (truncated)

Commits
  • 78ea725 [PR #10416/e92f1874 backport][3.11] Fix wheel download-artifact by setting me...
  • 70da1d4 [PR #10413/f6dae31d backport][3.11] Fix missing ppc64le musllinux wheels (#10...
  • 3cca959 [PR #10410/1009c066 backport][3.11] Fix runs-on for wheel builds for native a...
  • d07f577 [3.11] Adjust changelog messages for armv7l wheels (#10409)
  • 43a36ee [PR #10404/6ee81df6 backport][3.11] Start build wheels on armv7l musllinux (#...
  • 864bf5a [PR #10403/908145c9 backport][3.11] Disable wheel builds on PyPy (#10405)
  • 5f1cd3b [PR #10400/9b33be3 backport][3.11] Add workaround for segfaults during wheel ...
  • b53c5f9 [PR #10396/481a8374 backport][3.11] Switch to native arm runners for wheel bu...
  • 2223776 [3.11] Amend changes to remove reverted riscv64 wheels (#10397)
  • 2a3111d [PR #10393/9057364b backport][3.11] Revert "Start building riscv64 platform w...
  • Additional commits viewable in compare view

Updates aiofiles from 23.2.1 to 24.1.0

Release notes

Sourced from aiofiles's releases.

24.1.0

  • Import os.link conditionally to fix importing on android. #175
  • Remove spurious items from aiofiles.os.__all__ when running on Windows.
  • Switch to more modern async idioms: Remove types.coroutine and make AiofilesContextManager an awaitable instead a coroutine.
  • Add aiofiles.os.path.abspath and aiofiles.os.getcwd. #174
  • aiofiles is now tested on Python 3.13 too. #184
  • Dropped Python 3.7 support. If you require it, use version 23.2.1.
Changelog

Sourced from aiofiles's changelog.

24.1.0 (2024-06-24)

  • Import os.link conditionally to fix importing on android. #175
  • Remove spurious items from aiofiles.os.__all__ when running on Windows.
  • Switch to more modern async idioms: Remove types.coroutine and make AiofilesContextManager an awaitable instead a coroutine.
  • Add aiofiles.os.path.abspath and aiofiles.os.getcwd. #174
  • aiofiles is now tested on Python 3.13 too. #184
  • Dropped Python 3.7 support. If you require it, use version 23.2.1.
Commits

Updates tqdm from 4.66.4 to 4.67.1

Release notes

Sourced from tqdm's releases.

tqdm v4.67.1 stable

  • fix gui (matplotlib syntax) (#1629)
  • misc test & framework updates
    • bump pytest-asyncio (#1630)
    • fix codecov rate limit
    • fix pybuild
    • sync dependencies

tqdm v4.67.0 stable

  • contrib.discord: replace disco-py with requests (#1536)

tqdm v4.66.6 stable

  • cli: zip-safe --manpath, --comppath (#1627)
  • misc framework updates (#1627)
    • fix pytest DeprecationWarning
    • fix snapcraft build
    • fix nbval DeprecationWarning
    • update & tidy workflows
    • bump pre-commit
    • docs: update URLs

tqdm v4.66.5 stable

Commits

Updates yaspin from 3.0.0 to 3.1.0

Release notes

Sourced from yaspin's releases.

v3.1.0

  • Fix long messages behavior by truncating them via custom ellipsis (#240)
  • Add Python 3.13 support
  • Update cli-spinners to v3.2.0
  • Update dependencies

v3.0.2

v3.0.1

  • Fix NameError when using yaspin as a decorator (#230)
  • Update dependencies
Changelog

Sourced from yaspin's changelog.

3.1.0 / 2024-09-22

  • Fix long messages behavior by truncating them via custom ellipsis (#240)
  • Add Python 3.13 support
  • Update cli-spinners to v3.2.0
  • Update dependencies

3.0.2 / 2024-04-08

  • Add py.typed marker file to be compliant with PEP561 (#237)
  • Update cli-spinners to v2.9.2
  • Update dependencies

3.0.1 / 2023-09-05

  • Fix NameError when using yaspin as a decorator (#230)
  • Update dependencies
Commits
  • 080a48a Merge pull request #244 from pavdmyt/version-3.1.0
  • eaae593 release: bump version, update history
  • 5d2fe0e py-versions: Add Python 3.13 support
  • 336b472 deps: downgrade pytest version
  • 2333a43 ci: update pypy version to 3.10
  • 210f37a typing: fix functools.partial call
  • 4533934 deps: update
  • 78ab30f Merge pull request #243 from pavdmyt/upd-cli-spinners-v3.2.0
  • 87b29e8 deps: update cli-spinners to v3.2.0
  • a8076f6 Merge pull request #242 from pavdmyt/handle-ellipsis-edge-cases
  • Additional commits viewable in compare view

Updates pyrate-limiter from 3.6.0 to 3.7.0

Release notes

Sourced from pyrate-limiter's releases.

v3.7.0: add method to remove bucket

Per request #180

v3.6.2: fixes some issues with sqlite bucket & few other minor problems

What's Changed

Full Changelog: vutran1710/PyrateLimiter@v3.6.1...v3.6.2

v3.6.1: Support creating/getting bucket asynchronously

Add support for creating/getting bucket asynchronously

Commits

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 Feb 11, 2025
Bumps the python-production-updates group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [httpx](https://github.com/encode/httpx) | `0.27.2` | `0.28.1` |
| [typer](https://github.com/fastapi/typer) | `0.12.5` | `0.15.1` |
| [aiohttp](https://github.com/aio-libs/aiohttp) | `3.10.10` | `3.11.12` |
| [aiofiles](https://github.com/Tinche/aiofiles) | `23.2.1` | `24.1.0` |
| [tqdm](https://github.com/tqdm/tqdm) | `4.66.4` | `4.67.1` |
| [yaspin](https://github.com/pavdmyt/yaspin) | `3.0.0` | `3.1.0` |
| [pyrate-limiter](https://github.com/vutran1710/PyrateLimiter) | `3.6.0` | `3.7.0` |

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

Updates `typer` from 0.12.5 to 0.15.1
- [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.5...0.15.1)

Updates `aiohttp` from 3.10.10 to 3.11.12
- [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.10.10...v3.11.12)

Updates `aiofiles` from 23.2.1 to 24.1.0
- [Release notes](https://github.com/Tinche/aiofiles/releases)
- [Changelog](https://github.com/Tinche/aiofiles/blob/main/CHANGELOG.md)
- [Commits](Tinche/aiofiles@v23.2.1...v24.1.0)

Updates `tqdm` from 4.66.4 to 4.67.1
- [Release notes](https://github.com/tqdm/tqdm/releases)
- [Commits](tqdm/tqdm@v4.66.4...v4.67.1)

Updates `yaspin` from 3.0.0 to 3.1.0
- [Release notes](https://github.com/pavdmyt/yaspin/releases)
- [Changelog](https://github.com/pavdmyt/yaspin/blob/master/HISTORY.rst)
- [Commits](pavdmyt/yaspin@v3.0.0...v3.1.0)

Updates `pyrate-limiter` from 3.6.0 to 3.7.0
- [Release notes](https://github.com/vutran1710/PyrateLimiter/releases)
- [Changelog](https://github.com/vutran1710/PyrateLimiter/blob/master/CHANGELOG.md)
- [Commits](vutran1710/PyrateLimiter@v3.6.0...v3.7.0)

---
updated-dependencies:
- dependency-name: httpx
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-production-updates
- dependency-name: typer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-production-updates
- dependency-name: aiohttp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-production-updates
- dependency-name: aiofiles
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-production-updates
- dependency-name: tqdm
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-production-updates
- dependency-name: yaspin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-production-updates
- dependency-name: pyrate-limiter
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-production-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@ArzelaAscoIi ArzelaAscoIi force-pushed the dependabot/pip/python-production-updates-e6f933e43f branch from 1002c17 to 969afa6 Compare February 11, 2025 07:26
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 integration python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant