Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 5, 2026

Bumps the poetry group with 6 updates in the / directory:

Package From To
openai 2.16.0 2.17.0
rich 14.3.1 14.3.2
jiter 0.12.0 0.13.0
anthropic 0.76.0 0.78.0
tqdm 4.67.1 4.67.3
ruff 0.14.14 0.15.0

Updates openai from 2.16.0 to 2.17.0

Release notes

Sourced from openai's releases.

v2.17.0

2.17.0 (2026-02-05)

Full Changelog: v2.16.0...v2.17.0

Features

  • api: add shell_call_output status field (1bbaf88)
  • api: image generation actions for responses; ResponseFunctionCallArgumentsDoneEvent.name (7d96513)
  • client: add custom JSON encoder for extended type support (9f43c8b)

Bug Fixes

  • client: undo change to web search Find action (8f14eb0)
  • client: update type for find_in_page action (ec54dde)
Changelog

Sourced from openai's changelog.

2.17.0 (2026-02-05)

Full Changelog: v2.16.0...v2.17.0

Features

  • api: add shell_call_output status field (1bbaf88)
  • api: image generation actions for responses; ResponseFunctionCallArgumentsDoneEvent.name (7d96513)
  • client: add custom JSON encoder for extended type support (9f43c8b)

Bug Fixes

  • client: undo change to web search Find action (8f14eb0)
  • client: update type for find_in_page action (ec54dde)
Commits
  • e888873 release: 2.17.0
  • b982088 fix(client): undo change to web search Find action
  • b95c09d codegen metadata
  • 31b4218 codegen metadata
  • a1fb97b fix(client): update type for find_in_page action
  • 42cb178 feat(api): image generation actions for responses; ResponseFunctionCallArgume...
  • db4d871 feat(client): add custom JSON encoder for extended type support
  • 2360dfa codegen metadata
  • 7da396e codegen metadata
  • 27feb0a feat(api): add shell_call_output status field
  • See full diff in compare view

Updates rich from 14.3.1 to 14.3.2

Release notes

Sourced from rich's releases.

The ZWJy release

A fix for cell_len edge cases

[14.3.2] - 2026-02-01

Fixed

Changelog

Sourced from rich's changelog.

[14.3.2] - 2026-02-01

Fixed

Commits

Updates jiter from 0.12.0 to 0.13.0

Commits

Updates anthropic from 0.76.0 to 0.78.0

Release notes

Sourced from anthropic's releases.

v0.78.0

0.78.0 (2026-02-05)

Full Changelog: v0.77.1...v0.78.0

Features

v0.77.1

0.77.1 (2026-02-03)

Full Changelog: v0.77.0...v0.77.1

Bug Fixes

  • structured outputs: send structured output beta header when format is omitted (#1158) (258494e)

Chores

v0.77.0

0.77.0 (2026-01-29)

Full Changelog: v0.76.0...v0.77.0

Features

  • api: add support for Structured Outputs in the Messages API (ad56677)
  • api: migrate sending message format in output_config rather than output_format (af405e4)
  • client: add custom JSON encoder for extended type support (7780e90)
  • use output_config for structured outputs (82d669d)

Bug Fixes

  • client: run formatter (2e4ff86)
  • remove class causing breaking change (#1333) (81ee953)
  • structured outputs: avoid including beta header if output_format is missing (#1121) (062077e)

Chores

  • ci: upgrade actions/github-script (34df616)
  • internal: update actions/checkout version (ea50de9)
Changelog

Sourced from anthropic's changelog.

0.78.0 (2026-02-05)

Full Changelog: v0.77.1...v0.78.0

Features

0.77.1 (2026-02-03)

Full Changelog: v0.77.0...v0.77.1

Bug Fixes

  • structured outputs: send structured output beta header when format is omitted (#1158) (258494e)

Chores

0.77.0 (2026-01-29)

Full Changelog: v0.76.0...v0.77.0

Features

  • api: add support for Structured Outputs in the Messages API (ad56677)
  • api: migrate sending message format in output_config rather than output_format (af405e4)
  • client: add custom JSON encoder for extended type support (7780e90)
  • use output_config for structured outputs (82d669d)

Bug Fixes

  • client: run formatter (2e4ff86)
  • remove class causing breaking change (#1333) (81ee953)
  • structured outputs: avoid including beta header if output_format is missing (#1121) (062077e)

Chores

  • ci: upgrade actions/github-script (34df616)
  • internal: update actions/checkout version (ea50de9)
Commits

Updates tqdm from 4.67.1 to 4.67.3

Release notes

Sourced from tqdm's releases.

tqdm v4.67.3 stable

tqdm v4.67.2 stable

  • support pandas>=3 (#1703 <- #1701, #1650, #1700)
  • fix format_interval for negative numbers (#1703)
  • misc linting
  • framework updates (#1704)
    • bump CI workflow & pre-commit dependencies
    • add pyupgrade
    • add py3.13 support
    • fix py3.7 tests
    • update setuptools-scm usage
    • support auto-dedented docstrings when building docs in py3.13
  • tests: relax flaky benchmarks
Commits

Updates ruff from 0.14.14 to 0.15.0

Release notes

Sourced from ruff's releases.

0.15.0

Release Notes

Released on 2026-02-03.

Check out the blog post for a migration guide and overview of the changes!

Breaking changes

  • Ruff now formats your code according to the 2026 style guide. See the formatter section below or in the blog post for a detailed list of changes.

  • The linter now supports block suppression comments. For example, to suppress N803 for all parameters in this function:

    # ruff: disable[N803]
    def foo(
        legacyArg1,
        legacyArg2,
        legacyArg3,
        legacyArg4,
    ): ...
    # ruff: enable[N803]

    See the documentation for more details.

  • The ruff:alpine Docker image is now based on Alpine 3.23 (up from 3.21).

  • The ruff:debian and ruff:debian-slim Docker images are now based on Debian 13 "Trixie" instead of Debian 12 "Bookworm."

  • Binaries for the ppc64 (64-bit big-endian PowerPC) architecture are no longer included in our releases. It should still be possible to build Ruff manually for this platform, if needed.

  • Ruff now resolves all extended configuration files before falling back on a default Python version.

Stabilization

The following rules have been stabilized and are no longer in preview:

... (truncated)

Changelog

Sourced from ruff's changelog.

0.15.0

Released on 2026-02-03.

Check out the blog post for a migration guide and overview of the changes!

Breaking changes

  • Ruff now formats your code according to the 2026 style guide. See the formatter section below or in the blog post for a detailed list of changes.

  • The linter now supports block suppression comments. For example, to suppress N803 for all parameters in this function:

    # ruff: disable[N803]
    def foo(
        legacyArg1,
        legacyArg2,
        legacyArg3,
        legacyArg4,
    ): ...
    # ruff: enable[N803]

    See the documentation for more details.

  • The ruff:alpine Docker image is now based on Alpine 3.23 (up from 3.21).

  • The ruff:debian and ruff:debian-slim Docker images are now based on Debian 13 "Trixie" instead of Debian 12 "Bookworm."

  • Binaries for the ppc64 (64-bit big-endian PowerPC) architecture are no longer included in our releases. It should still be possible to build Ruff manually for this platform, if needed.

  • Ruff now resolves all extended configuration files before falling back on a default Python version.

Stabilization

The following rules have been stabilized and are no longer in preview:

... (truncated)

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 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 5, 2026
@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Feb 5, 2026

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Preview URL Updated (UTC)
✅ Deployment successful!
View logs
instructor 384db68 Commit Preview URL

Branch Preview URL
Feb 10 2026, 12:35 AM

@dependabot dependabot bot force-pushed the dependabot/pip/poetry-b9ae46c91e branch from 93997a0 to 8d174f9 Compare February 6, 2026 21:57
Bumps the poetry group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [openai](https://github.com/openai/openai-python) | `2.16.0` | `2.17.0` |
| [rich](https://github.com/Textualize/rich) | `14.3.1` | `14.3.2` |
| [jiter](https://github.com/pydantic/jiter) | `0.12.0` | `0.13.0` |
| [anthropic](https://github.com/anthropics/anthropic-sdk-python) | `0.76.0` | `0.78.0` |
| [tqdm](https://github.com/tqdm/tqdm) | `4.67.1` | `4.67.3` |
| [ruff](https://github.com/astral-sh/ruff) | `0.14.14` | `0.15.0` |



Updates `openai` from 2.16.0 to 2.17.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@v2.16.0...v2.17.0)

Updates `rich` from 14.3.1 to 14.3.2
- [Release notes](https://github.com/Textualize/rich/releases)
- [Changelog](https://github.com/Textualize/rich/blob/master/CHANGELOG.md)
- [Commits](Textualize/rich@v14.3.1...v14.3.2)

Updates `jiter` from 0.12.0 to 0.13.0
- [Release notes](https://github.com/pydantic/jiter/releases)
- [Commits](pydantic/jiter@v0.12.0...v0.13.0)

Updates `anthropic` from 0.76.0 to 0.78.0
- [Release notes](https://github.com/anthropics/anthropic-sdk-python/releases)
- [Changelog](https://github.com/anthropics/anthropic-sdk-python/blob/main/CHANGELOG.md)
- [Commits](anthropics/anthropic-sdk-python@v0.76.0...v0.78.0)

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

Updates `ruff` from 0.14.14 to 0.15.0
- [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.14.14...0.15.0)

---
updated-dependencies:
- dependency-name: openai
  dependency-version: 2.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: rich
  dependency-version: 14.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: jiter
  dependency-version: 0.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: anthropic
  dependency-version: 0.78.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: tqdm
  dependency-version: 4.67.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: ruff
  dependency-version: 0.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/poetry-b9ae46c91e branch from 8d174f9 to 384db68 Compare February 10, 2026 00:32
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 10, 2026

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

@dependabot dependabot bot closed this Feb 10, 2026
@dependabot dependabot bot deleted the dependabot/pip/poetry-b9ae46c91e branch February 10, 2026 21:57
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