Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 21, 2025

Bumps the non-breaking-changes group with 8 updates in the / directory:

Package From To
tenacity 9.0.0 9.1.2
openai 1.66.3 1.75.0
google-cloud-speech 2.31.0 2.32.0
google-generativeai 0.8.4 0.8.5
pillow 11.1.0 11.2.1
coverage 7.7.0 7.8.0
ruff 0.11.0 0.11.6
pytest-asyncio 0.25.3 0.26.0

Updates tenacity from 9.0.0 to 9.1.2

Release notes

Sourced from tenacity's releases.

9.1.2

Full Changelog: jd/tenacity@9.1.1...9.1.2

9.1.1

What's Changed

New Contributors

Full Changelog: jd/tenacity@9.0.0...9.1.0

Commits

Updates openai from 1.66.3 to 1.75.0

Release notes

Sourced from openai's releases.

v1.75.0

1.75.0 (2025-04-16)

Full Changelog: v1.74.1...v1.75.0

Features

  • api: add o3 and o4-mini model IDs (4bacbd5)

v1.74.1

1.74.1 (2025-04-16)

Full Changelog: v1.74.0...v1.74.1

Chores

  • internal: base client updates (06303b5)
  • internal: bump pyright version (9fd1c77)

v1.74.0

1.74.0 (2025-04-14)

Full Changelog: v1.73.0...v1.74.0

Features

  • api: adding gpt-4.1 family of model IDs (d4dae55)

Bug Fixes

Chores

  • client: minor internal fixes (6071ae5)
  • internal: update pyright settings (c8f8beb)

v1.73.0

1.73.0 (2025-04-12)

Full Changelog: v1.72.0...v1.73.0

Features

Bug Fixes

... (truncated)

Changelog

Sourced from openai's changelog.

1.75.0 (2025-04-16)

Full Changelog: v1.74.1...v1.75.0

Features

  • api: add o3 and o4-mini model IDs (4bacbd5)

1.74.1 (2025-04-16)

Full Changelog: v1.74.0...v1.74.1

Chores

  • internal: base client updates (06303b5)
  • internal: bump pyright version (9fd1c77)

1.74.0 (2025-04-14)

Full Changelog: v1.73.0...v1.74.0

Features

  • api: adding gpt-4.1 family of model IDs (d4dae55)

Bug Fixes

Chores

  • client: minor internal fixes (6071ae5)
  • internal: update pyright settings (c8f8beb)

1.73.0 (2025-04-12)

Full Changelog: v1.72.0...v1.73.0

Features

Bug Fixes

  • perf: optimize some hot paths (f79d39f)
  • perf: skip traversing types for NotGiven values (28d220d)

... (truncated)

Commits
  • ed53107 release: 1.75.0
  • c5ede36 feat(api): add o3 and o4-mini model IDs
  • bf6dd81 release: 1.74.1
  • ea63883 chore(internal): base client updates
  • 6d110a1 chore(internal): bump pyright version
  • 05810dd release: 1.74.0
  • 7d2b97d feat(api): adding gpt-4.1 family of model IDs
  • 77ba418 chore(client): minor internal fixes
  • 1828fb6 chore(internal): update pyright settings
  • e3e791c fix(chat): skip azure async filter events (#2255)
  • Additional commits viewable in compare view

Updates google-cloud-speech from 2.31.0 to 2.32.0

Release notes

Sourced from google-cloud-speech's releases.

google-cloud-speech: v2.32.0

2.32.0 (2025-04-12)

Features

  • add ALAW support to RecognitionConfig (c970f9f)
  • add new fields to CustomClass and PhraseSet.Phrase messages (c970f9f)
  • deprecating speaker_tag (int) for speaker_label (string) (c970f9f)
  • make transcript_normalization field optional (c970f9f)

Documentation

  • miscellaneous clarifications (c970f9f)
Changelog

Sourced from google-cloud-speech's changelog.

2.32.0 (2024-09-06)

Features

  • [google-cloud-documentai] Add API fields for the descriptions of entity type and property in the document schema (#13067) (1a2b325)
Commits

Updates google-generativeai from 0.8.4 to 0.8.5

Release notes

Sourced from google-generativeai's releases.

v0.8.5

What's Changed

Bugfixes

Docs & Examples

Infrastructure

New Contributors

Full Changelog: google-gemini/deprecated-generative-ai-python@v0.8.4...v0.8.5

Commits
  • f5ac4ed Update version and fix samples for 0.8.5 release (#731)
  • e179614 chore: Update user-input.yml GitHub workflow to trigger on PR comments (#723)
  • 61867f6 Bump tj-actions/changed-files from 44 to 46 in /.github/workflows (#721)
  • d66e975 Update README.md (#722)
  • 29f85b8 Update README.md
  • 6bf4571 Pin actions to specific SHAs (#719)
  • e0fb117 Add a GitHub Action to manage status: awaiting user response (#720)
  • 2c570fb Update samples to use right API key name (#705)
  • 56f2ccf Update GenerationConfig.md to fix typo (#668)
  • 45bd243 Fix function_calling.sh example (#679)
  • Additional commits viewable in compare view

Updates pillow from 11.1.0 to 11.2.1

Release notes

Sourced from pillow's releases.

11.2.1

https://pillow.readthedocs.io/en/stable/releasenotes/11.2.1.html

Deprecations

Documentation

Dependencies

... (truncated)

Changelog

Sourced from pillow's changelog.

Changelog (Pillow)

Commits

Updates coverage from 7.7.0 to 7.8.0

Changelog

Sourced from coverage's changelog.

Version 7.8.0 — 2025-03-30

  • Added a new source_dirs setting for symmetry with the existing source_pkgs setting. It's preferable to the existing source setting, because you'll get a clear error when directories don't exist. Fixes issue 1942. Thanks, Jeremy Fleischman <pull 1943_>.

  • Fix: the PYTHONSAFEPATH environment variable new in Python 3.11 is properly supported, closing issue 1696. Thanks, Philipp A. <pull 1700_>. This works properly except for a detail when using the coverage command on Windows. There you can use python -m coverage instead if you need exact emulation.

.. _issue 1696: nedbat/coveragepy#1696 .. _pull 1700: nedbat/coveragepy#1700 .. _issue 1942: nedbat/coveragepy#1942 .. _pull 1943: nedbat/coveragepy#1943

.. _changes_7-7-1:

Version 7.7.1 — 2025-03-21

  • A few small tweaks to the sys.monitoring support for Python 3.14. Please test!

.. _changes_7-7-0:

Commits
  • 6d5ced9 docs: sample HTML for 7.8.0
  • 49c194f docs: prep for 7.8.0
  • 38782cb docs: finish up source_dirs. bump to 7.8.0
  • 7aea2f3 feat: add new source_dirs option (#1943)
  • f464155 test: some simple bytecode tests
  • cf1dec0 refactor: these pypy modules are available in all our versions
  • a876052 test: a general helper for iterating over our own source files
  • 82cff3e perf: sets are better than lists
  • a66bd61 refactor: move bytecode code into bytecode.py
  • d64ce5f chore: bump the action-dependencies group with 3 updates (#1940)
  • Additional commits viewable in compare view

Updates ruff from 0.11.0 to 0.11.6

Release notes

Sourced from ruff's releases.

0.11.6

Release Notes

Preview features

  • Avoid adding whitespace to the end of a docstring after an escaped quote (#17216)
  • [airflow] Extract AIR311 from AIR301 rules (AIR301, AIR311) (#17310, #17422)

Bug fixes

  • Raise syntax error when \ is at end of file (#17409)

Contributors

Install ruff 0.11.6

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/ruff/releases/download/0.11.6/ruff-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/astral-sh/ruff/releases/download/0.11.6/ruff-installer.ps1 | iex"

Download ruff 0.11.6

File Platform Checksum

... (truncated)

Changelog

Sourced from ruff's changelog.

0.11.6

Preview features

  • Avoid adding whitespace to the end of a docstring after an escaped quote (#17216)
  • [airflow] Extract AIR311 from AIR301 rules (AIR301, AIR311) (#17310, #17422)

Bug fixes

  • Raise syntax error when \ is at end of file (#17409)

0.11.5

Preview features

  • [airflow] Add missing AIR302 attribute check (#17115)
  • [airflow] Expand module path check to individual symbols (AIR302) (#17278)
  • [airflow] Extract AIR312 from AIR302 rules (AIR302, AIR312) (#17152)
  • [airflow] Update oudated AIR301, AIR302 rules (#17123)
  • [syntax-errors] Async comprehension in sync comprehension (#17177)
  • [syntax-errors] Check annotations in annotated assignments (#17283)
  • [syntax-errors] Extend annotation checks to await (#17282)

Bug fixes

  • [flake8-pie] Avoid false positive for multiple assignment with auto() (PIE796) (#17274)

Rule changes

  • [ruff] Fix RUF100 to detect unused file-level noqa directives with specific codes (#17042) (#17061)
  • [flake8-pytest-style] Avoid false positive for legacy form of pytest.raises (PT011) (#17231)

Documentation

  • Fix formatting of "See Style Guide" link (#17272)

0.11.4

Preview features

  • [ruff] Implement invalid-rule-code as RUF102 (#17138)
  • [syntax-errors] Detect duplicate keys in match mapping patterns (#17129)
  • [syntax-errors] Detect duplicate attributes in match class patterns (#17186)
  • [syntax-errors] Detect invalid syntax in annotations (#17101)

Bug fixes

  • [syntax-errors] Fix multiple assignment error for class fields in match patterns (#17184)
  • Don't skip visiting non-tuple slice in typing.Annotated subscripts (#17201)

... (truncated)

Commits

Updates pytest-asyncio from 0.25.3 to 0.26.0

Release notes

Sourced from pytest-asyncio's releases.

pytest-asyncio 0.26.0

  • Adds configuration option that sets default event loop scope for all tests #793
  • Improved type annotations for pytest_asyncio.fixture #1045
  • Added typing-extensions as additional dependency for Python <3.10 #1045
Commits
  • 4f8ce45 docs: Prepare release of v0.26.0.
  • 498e8a7 Build(deps): Bump attrs from 25.1.0 to 25.3.0 in /dependencies/default
  • 01c22ff build: Update project metadata to use SPDX license identifier
  • 78191c9 [pre-commit.ci] pre-commit autoupdate
  • 9a45551 Build(deps): Bump hypothesis in /dependencies/default
  • 6680409 Build(deps): Bump coverage from 7.7.0 to 7.7.1 in /dependencies/default
  • aa82c57 Build(deps): Bump iniconfig from 2.0.0 to 2.1.0 in /dependencies/default
  • cca587e [pre-commit.ci] pre-commit autoupdate
  • 5d90b29 Build(deps): Bump hypothesis in /dependencies/default
  • c262262 Build(deps): Bump coverage from 7.6.12 to 7.7.0 in /dependencies/default
  • Additional commits viewable in compare view

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

…ith 8 updates

Bumps the non-breaking-changes group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [tenacity](https://github.com/jd/tenacity) | `9.0.0` | `9.1.2` |
| [openai](https://github.com/openai/openai-python) | `1.66.3` | `1.75.0` |
| [google-cloud-speech](https://github.com/googleapis/google-cloud-python) | `2.31.0` | `2.32.0` |
| [google-generativeai](https://github.com/google/generative-ai-python) | `0.8.4` | `0.8.5` |
| [pillow](https://github.com/python-pillow/Pillow) | `11.1.0` | `11.2.1` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.7.0` | `7.8.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.11.0` | `0.11.6` |
| [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.25.3` | `0.26.0` |



Updates `tenacity` from 9.0.0 to 9.1.2
- [Release notes](https://github.com/jd/tenacity/releases)
- [Commits](jd/tenacity@9.0.0...9.1.2)

Updates `openai` from 1.66.3 to 1.75.0
- [Release notes](https://github.com/openai/openai-python/releases)
- [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md)
- [Commits](openai/openai-python@v1.66.3...v1.75.0)

Updates `google-cloud-speech` from 2.31.0 to 2.32.0
- [Release notes](https://github.com/googleapis/google-cloud-python/releases)
- [Changelog](https://github.com/googleapis/google-cloud-python/blob/main/packages/google-cloud-documentai/CHANGELOG.md)
- [Commits](googleapis/google-cloud-python@google-cloud-speech-v2.31.0...google-cloud-speech-v2.32.0)

Updates `google-generativeai` from 0.8.4 to 0.8.5
- [Release notes](https://github.com/google/generative-ai-python/releases)
- [Changelog](https://github.com/google-gemini/deprecated-generative-ai-python/blob/main/RELEASE.md)
- [Commits](google-gemini/deprecated-generative-ai-python@v0.8.4...v0.8.5)

Updates `pillow` from 11.1.0 to 11.2.1
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.1.0...11.2.1)

Updates `coverage` from 7.7.0 to 7.8.0
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](coveragepy/coveragepy@7.7.0...7.8.0)

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

Updates `pytest-asyncio` from 0.25.3 to 0.26.0
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v0.25.3...v0.26.0)

---
updated-dependencies:
- dependency-name: tenacity
  dependency-version: 9.1.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: openai
  dependency-version: 1.75.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: google-cloud-speech
  dependency-version: 2.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: google-generativeai
  dependency-version: 0.8.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: pillow
  dependency-version: 11.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: coverage
  dependency-version: 7.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: ruff
  dependency-version: 0.11.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: pytest-asyncio
  dependency-version: 0.26.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Apr 21, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 28, 2025

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

@dependabot dependabot bot closed this Apr 28, 2025
@dependabot dependabot bot deleted the dependabot/pip/non-breaking-changes-9829f0d995 branch April 28, 2025 11:31
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.

1 participant