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

chore(deps): bump the poetry group across 1 directory with 21 updates #1175

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 13, 2024

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

Package From To
openai 1.52.2 1.54.4
typer 0.12.5 0.13.0
rich 13.9.3 13.9.4
aiohttp 3.10.10 3.11.0
jiter 0.6.1 0.7.1
fastapi 0.115.3 0.115.5
pydantic-extra-types 2.9.0 2.10.0
litellm 1.50.4 1.52.6
anthropic 0.37.1 0.39.0
groq 0.11.0 0.12.0
cohere 5.11.1 5.11.3
google-cloud-aiplatform 1.70.0 1.72.0
cerebras-cloud-sdk 1.8.0 1.10.0
fireworks-ai 0.15.7 0.15.8
pyright 1.1.385 1.1.389
mkdocs-material 9.5.42 9.5.44
mkdocstrings 0.26.2 0.27.0
mkdocs-redirects 1.2.1 1.2.2
phonenumbers 8.13.48 8.13.49
datasets 3.0.2 3.1.0
ruff 0.7.1 0.7.3

Updates openai from 1.52.2 to 1.54.4

Release notes

Sourced from openai's releases.

v1.54.4

1.54.4 (2024-11-12)

Full Changelog: v1.54.3...v1.54.4

Bug Fixes

  • don't use dicts as iterables in transform (#1865) (76a51b1)

Documentation

v1.54.3

1.54.3 (2024-11-06)

Full Changelog: v1.54.2...v1.54.3

Bug Fixes

v1.54.2

1.54.2 (2024-11-06)

Full Changelog: v1.54.1...v1.54.2

Chores

v1.54.1

1.54.1 (2024-11-05)

Full Changelog: v1.54.0...v1.54.1

Bug Fixes

  • add new prediction param to all methods (6aa424d)

v1.54.0

1.54.0 (2024-11-04)

Full Changelog: v1.53.1...v1.54.0

Features

... (truncated)

Changelog

Sourced from openai's changelog.

1.54.4 (2024-11-12)

Full Changelog: v1.54.3...v1.54.4

Bug Fixes

  • don't use dicts as iterables in transform (#1865) (76a51b1)

Documentation

1.54.3 (2024-11-06)

Full Changelog: v1.54.2...v1.54.3

Bug Fixes

1.54.2 (2024-11-06)

Full Changelog: v1.54.1...v1.54.2

Chores

1.54.1 (2024-11-05)

Full Changelog: v1.54.0...v1.54.1

Bug Fixes

  • add new prediction param to all methods (6aa424d)

1.54.0 (2024-11-04)

Full Changelog: v1.53.1...v1.54.0

Features

1.53.1 (2024-11-04)

... (truncated)

Commits

Updates typer from 0.12.5 to 0.13.0

Release notes

Sourced from typer's releases.

0.13.0

Features

Fixes

  • 🐛 Fix equality check for custom classes. PR #979 by @​AryazE.
  • 🐛 Allow colon in zsh autocomplete values and descriptions. PR #988 by @​snapbug.

Refactors

Internal

... (truncated)

Changelog

Sourced from typer's changelog.

0.13.0

Features

Fixes

  • 🐛 Fix equality check for custom classes. PR #979 by @​AryazE.
  • 🐛 Allow colon in zsh autocomplete values and descriptions. PR #988 by @​snapbug.

Refactors

Internal

... (truncated)

Commits
  • 7bf84ab 🔖 Release version 0.13.0
  • e80ba57 📝 Update release notes
  • c5233c0 ✨ Handle KeyboardInterrupt separately from other exceptions (#1039)
  • e31fc57 📝 Update release notes
  • ee072d8 ✨ Update launch to not print anything when opening urls (#1035)
  • af49fda 📝 Update release notes
  • dc1bf3c 🐛 Fix equality check for custom classes (#979)
  • bfb54c0 📝 Update release notes
  • ebb968e 🐛 Allow colon in zsh autocomplete values and descriptions (#988)
  • 438ae44 📝 Update release notes
  • Additional commits viewable in compare view

Updates rich from 13.9.3 to 13.9.4

Release notes

Sourced from rich's releases.

The Faster is Faster release

[13.9.4] - 2024-11-01

Changed

Changelog

Sourced from rich's changelog.

[13.9.4] - 2024-11-01

Changed

Commits

Updates aiohttp from 3.10.10 to 3.11.0

Release notes

Sourced from aiohttp's releases.

3.11.0

Bug fixes

  • Raise :exc:aiohttp.ServerFingerprintMismatch exception on client-side if request through http proxy with mismatching server fingerprint digest: aiohttp.ClientSession(headers=headers, connector=TCPConnector(ssl=aiohttp.Fingerprint(mismatch_digest), trust_env=True).request(...) -- by :user:gangj.

    Related issues and pull requests on GitHub: #6652.

  • Modified websocket :meth:aiohttp.ClientWebSocketResponse.receive_str, :py:meth:aiohttp.ClientWebSocketResponse.receive_bytes, :py:meth:aiohttp.web.WebSocketResponse.receive_str & :py:meth:aiohttp.web.WebSocketResponse.receive_bytes methods to raise new :py:exc:aiohttp.WSMessageTypeError exception, instead of generic :py:exc:TypeError, when websocket messages of incorrect types are received -- by :user:ara-25.

    Related issues and pull requests on GitHub: #6800.

  • Made TestClient.app a Generic so type checkers will know the correct type (avoiding unneeded client.app is not None checks) -- by :user:Dreamsorcerer.

    Related issues and pull requests on GitHub: #8977.

  • Fixed the keep-alive connection pool to be FIFO instead of LIFO -- by :user:bdraco.

    Keep-alive connections are more likely to be reused before they disconnect.

    Related issues and pull requests on GitHub: #9672.

Features

  • Added strategy parameter to :meth:aiohttp.web.StreamResponse.enable_compression The value of this parameter is passed to the :func:zlib.compressobj function, allowing people to use a more sufficient compression algorithm for their data served by :mod:aiohttp.web -- by :user:shootkin

    Related issues and pull requests on GitHub: #6257.

... (truncated)

Changelog

Sourced from aiohttp's changelog.

3.11.0 (2024-11-13)

Bug fixes

  • Raise :exc:aiohttp.ServerFingerprintMismatch exception on client-side if request through http proxy with mismatching server fingerprint digest: aiohttp.ClientSession(headers=headers, connector=TCPConnector(ssl=aiohttp.Fingerprint(mismatch_digest), trust_env=True).request(...) -- by :user:gangj.

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

  • Modified websocket :meth:aiohttp.ClientWebSocketResponse.receive_str, :py:meth:aiohttp.ClientWebSocketResponse.receive_bytes, :py:meth:aiohttp.web.WebSocketResponse.receive_str & :py:meth:aiohttp.web.WebSocketResponse.receive_bytes methods to raise new :py:exc:aiohttp.WSMessageTypeError exception, instead of generic :py:exc:TypeError, when websocket messages of incorrect types are received -- by :user:ara-25.

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

  • Made TestClient.app a Generic so type checkers will know the correct type (avoiding unneeded client.app is not None checks) -- by :user:Dreamsorcerer.

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

  • Fixed the keep-alive connection pool to be FIFO instead of LIFO -- by :user:bdraco.

    Keep-alive connections are more likely to be reused before they disconnect.

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

Features

  • Added strategy parameter to :meth:aiohttp.web.StreamResponse.enable_compression The value of this parameter is passed to the :func:zlib.compressobj function, allowing people to use a more sufficient compression algorithm for their data served by :mod:aiohttp.web -- by :user:shootkin

... (truncated)

Commits
  • c311912 Release 3.11.0 (#9860)
  • 95341e1 Merge branch '3.10' into 3.11
  • 3e09325 Remove 3.10.11rc0 from 3.10 changelog (#9858)
  • beb7b74 Release 3.10.11 (#9857)
  • 2fa8bcd [PR #9852/249855a backport][3.11] Fix system routes polluting the middleware ...
  • 259edc3 [PR #9851/541d86d backport][3.10] Fix incorrect parsing of chunk extensions w...
  • bc15db6 [PR #9852/249855a backport][3.10] Fix system routes polluting the middleware ...
  • d24c19e [PR #9851/541d86d backport][3.11] Fix incorrect parsing of chunk extensions w...
  • fe0a6e6 Release 3.11.0rc2 (#9849)
  • 354489d [PR #9839/a9a0d84 backport][3.11] Implement zero copy writes in `StreamWriter...
  • Additional commits viewable in compare view

Updates jiter from 0.6.1 to 0.7.1

Commits

Updates fastapi from 0.115.3 to 0.115.5

Release notes

Sourced from fastapi's releases.

0.115.5

Refactors

Docs

... (truncated)

Commits
  • f057f4a 🔖 Release version 0.115.5
  • c6f021e 📝 Update release notes
  • 91a9293 ♻️ Update internal checks to support Pydantic 2.10 (#12914)
  • f716490 📝 Update release notes
  • c178106 📝 Update includes for docs/en/docs/tutorial/body.md (#12757)
  • 88cc900 📝 Update release notes
  • 20809a1 ⬆ [pre-commit.ci] pre-commit autoupdate (#12907)
  • 5a48c37 📝 Update release notes
  • 13892a3 📝 Update includes in docs/en/docs/advanced/testing-dependencies.md (#12647)
  • 9467000 📝 Update release notes
  • Additional commits viewable in compare view

Updates pydantic-extra-types from 2.9.0 to 2.10.0

Release notes

Sourced from pydantic-extra-types's releases.

v2.10.0

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-extra-types@v2.9.0...v2.10.0

Changelog

Sourced from pydantic-extra-types's changelog.

CHANGELOG

Latest Changes

Commits

Updates litellm from 1.50.4 to 1.52.6

Release notes

Sourced from litellm's releases.

v1.52.6

What's Changed

New Contributors

Full Changelog: BerriAI/litellm@v1.52.5...v1.52.6

Docker Run LiteLLM Proxy

docker run \
-e STORE_MODEL_IN_DB=True \
-p 4000:4000 \
ghcr.io/berriai/litellm:main-v1.52.6

Don't want to maintain your internal proxy? get in touch 🎉

Hosted Proxy Alpha: https://calendly.com/d/4mp-gd3-k5k/litellm-1-1-onboarding-chat

Load Test LiteLLM Proxy Results

Name Status Median Response Time (ms) Average Response Time (ms) Requests/s Failures/s Request Count Failure Count Min Response Time (ms) Max Response Time (ms)
/chat/completions Passed ✅ 240.0 266.21521040425523 6.127671245386762 0.0 1833 0 215.80195500001764 2902.9665340000292
Aggregated Passed ✅ 240.0 266.21521040425523 6.127671245386762 0.0 1833 0 215.80195500001764 2902.9665340000292

v1.52.5

What's Changed

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

| Package | From | To |
| --- | --- | --- |
| [openai](https://github.com/openai/openai-python) | `1.52.2` | `1.54.4` |
| [typer](https://github.com/fastapi/typer) | `0.12.5` | `0.13.0` |
| [rich](https://github.com/Textualize/rich) | `13.9.3` | `13.9.4` |
| [aiohttp](https://github.com/aio-libs/aiohttp) | `3.10.10` | `3.11.0` |
| [jiter](https://github.com/pydantic/jiter) | `0.6.1` | `0.7.1` |
| [fastapi](https://github.com/fastapi/fastapi) | `0.115.3` | `0.115.5` |
| [pydantic-extra-types](https://github.com/pydantic/pydantic-extra-types) | `2.9.0` | `2.10.0` |
| [litellm](https://github.com/BerriAI/litellm) | `1.50.4` | `1.52.6` |
| [anthropic](https://github.com/anthropics/anthropic-sdk-python) | `0.37.1` | `0.39.0` |
| [groq](https://github.com/groq/groq-python) | `0.11.0` | `0.12.0` |
| cohere | `5.11.1` | `5.11.3` |
| [google-cloud-aiplatform](https://github.com/googleapis/python-aiplatform) | `1.70.0` | `1.72.0` |
| [cerebras-cloud-sdk](https://github.com/Cerebras/cerebras-cloud-sdk-python) | `1.8.0` | `1.10.0` |
| [fireworks-ai](https://fireworks.ai) | `0.15.7` | `0.15.8` |
| [pyright](https://github.com/RobertCraigie/pyright-python) | `1.1.385` | `1.1.389` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.42` | `9.5.44` |
| [mkdocstrings](https://github.com/mkdocstrings/mkdocstrings) | `0.26.2` | `0.27.0` |
| [mkdocs-redirects](https://github.com/mkdocs/mkdocs-redirects) | `1.2.1` | `1.2.2` |
| [phonenumbers](https://github.com/daviddrysdale/python-phonenumbers) | `8.13.48` | `8.13.49` |
| [datasets](https://github.com/huggingface/datasets) | `3.0.2` | `3.1.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.7.1` | `0.7.3` |



Updates `openai` from 1.52.2 to 1.54.4
- [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.52.2...v1.54.4)

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

Updates `rich` from 13.9.3 to 13.9.4
- [Release notes](https://github.com/Textualize/rich/releases)
- [Changelog](https://github.com/Textualize/rich/blob/master/CHANGELOG.md)
- [Commits](Textualize/rich@v13.9.3...v13.9.4)

Updates `aiohttp` from 3.10.10 to 3.11.0
- [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.0)

Updates `jiter` from 0.6.1 to 0.7.1
- [Release notes](https://github.com/pydantic/jiter/releases)
- [Commits](pydantic/jiter@v0.6.1...v0.7.1)

Updates `fastapi` from 0.115.3 to 0.115.5
- [Release notes](https://github.com/fastapi/fastapi/releases)
- [Commits](fastapi/fastapi@0.115.3...0.115.5)

Updates `pydantic-extra-types` from 2.9.0 to 2.10.0
- [Release notes](https://github.com/pydantic/pydantic-extra-types/releases)
- [Changelog](https://github.com/pydantic/pydantic-extra-types/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic-extra-types@v2.9.0...v2.10.0)

Updates `litellm` from 1.50.4 to 1.52.6
- [Release notes](https://github.com/BerriAI/litellm/releases)
- [Commits](BerriAI/litellm@v1.50.4...v1.52.6)

Updates `anthropic` from 0.37.1 to 0.39.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.37.1...v0.39.0)

Updates `groq` from 0.11.0 to 0.12.0
- [Release notes](https://github.com/groq/groq-python/releases)
- [Changelog](https://github.com/groq/groq-python/blob/main/CHANGELOG.md)
- [Commits](groq/groq-python@v0.11.0...v0.12.0)

Updates `cohere` from 5.11.1 to 5.11.3

Updates `google-cloud-aiplatform` from 1.70.0 to 1.72.0
- [Release notes](https://github.com/googleapis/python-aiplatform/releases)
- [Changelog](https://github.com/googleapis/python-aiplatform/blob/main/CHANGELOG.md)
- [Commits](googleapis/python-aiplatform@v1.70.0...v1.72.0)

Updates `cerebras-cloud-sdk` from 1.8.0 to 1.10.0
- [Changelog](https://github.com/Cerebras/cerebras-cloud-sdk-python/blob/main/CHANGELOG.md)
- [Commits](https://github.com/Cerebras/cerebras-cloud-sdk-python/commits)

Updates `fireworks-ai` from 0.15.7 to 0.15.8

Updates `pyright` from 1.1.385 to 1.1.389
- [Release notes](https://github.com/RobertCraigie/pyright-python/releases)
- [Commits](RobertCraigie/pyright-python@v1.1.385...v1.1.389)

Updates `mkdocs-material` from 9.5.42 to 9.5.44
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](squidfunk/mkdocs-material@9.5.42...9.5.44)

Updates `mkdocstrings` from 0.26.2 to 0.27.0
- [Release notes](https://github.com/mkdocstrings/mkdocstrings/releases)
- [Changelog](https://github.com/mkdocstrings/mkdocstrings/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/mkdocstrings@0.26.2...0.27.0)

Updates `mkdocs-redirects` from 1.2.1 to 1.2.2
- [Release notes](https://github.com/mkdocs/mkdocs-redirects/releases)
- [Commits](mkdocs/mkdocs-redirects@v1.2.1...v1.2.2)

Updates `phonenumbers` from 8.13.48 to 8.13.49
- [Commits](daviddrysdale/python-phonenumbers@v8.13.48...v8.13.49)

Updates `datasets` from 3.0.2 to 3.1.0
- [Release notes](https://github.com/huggingface/datasets/releases)
- [Commits](huggingface/datasets@3.0.2...3.1.0)

Updates `ruff` from 0.7.1 to 0.7.3
- [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.7.1...0.7.3)

---
updated-dependencies:
- dependency-name: openai
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: typer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: rich
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: aiohttp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: jiter
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: fastapi
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: pydantic-extra-types
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: litellm
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: anthropic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: groq
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: cohere
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: google-cloud-aiplatform
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: cerebras-cloud-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: fireworks-ai
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: pyright
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: mkdocs-material
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: mkdocstrings
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: mkdocs-redirects
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: phonenumbers
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: datasets
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: ruff
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link

cloudflare-workers-and-pages bot commented Nov 13, 2024

Deploying instructor-py with  Cloudflare Pages  Cloudflare Pages

Latest commit: 8b3604e
Status: ✅  Deploy successful!
Preview URL: https://22770c1c.instructor-py.pages.dev
Branch Preview URL: https://dependabot-pip-poetry-7852b6.instructor-py.pages.dev

View logs

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 13, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 14, 2024

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

@dependabot dependabot bot closed this Nov 14, 2024
@dependabot dependabot bot deleted the dependabot/pip/poetry-7852b6c7f4 branch November 14, 2024 06:46
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants