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 gha group across 1 directory with 5 updates #2301

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the gha group with 5 updates in the /packages/traceloop-sdk directory:

Package From To
aiohttp 3.10.10 3.11.0
flake8 7.0.0 7.1.1
openai 1.54.3 1.54.4
pytest-asyncio 0.23.8 0.24.0
anthropic 0.25.9 0.39.0

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 flake8 from 7.0.0 to 7.1.1

Commits

Updates openai from 1.54.3 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

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

Commits

Updates pytest-asyncio from 0.23.8 to 0.24.0

Release notes

Sourced from pytest-asyncio's releases.

pytest-asyncio 0.24.0

0.24.0 (2024-08-22)

  • BREAKING: Updated minimum supported pytest version to v8.2.0
  • Adds an optional loop_scope keyword argument to pytest.mark.asyncio. This argument controls which event loop is used to run the marked async test. #706, #871
  • Deprecates the optional scope keyword argument to pytest.mark.asyncio for API consistency with pytest_asyncio.fixture. Users are encouraged to use the loop_scope keyword argument, which does exactly the same.
  • Raises an error when passing scope or loop_scope as a positional argument to @pytest.mark.asyncio. #812
  • Fixes a bug that caused module-scoped async fixtures to fail when reused in other modules #862 #668

pytest-asyncio 0.24.0a1

0.24.0 (UNRELEASED)

  • BREAKING: Updated minimum supported pytest version to v8.2.0
  • Adds an optional loop_scope keyword argument to pytest.mark.asyncio. This argument controls which event loop is used to run the marked async test. #706, #871
  • Deprecates the optional scope keyword argument to pytest.mark.asyncio for API consistency with pytest_asyncio.fixture. Users are encouraged to use the loop_scope keyword argument, which does exactly the same.
  • Raises an error when passing scope or loop_scope as a positional argument to @pytest.mark.asyncio. #812
  • Fixes a bug that caused module-scoped async fixtures to fail when reused in other modules #862 #668

pytest-asyncio 0.24.0a0

0.24.0 (UNRELEASED)

  • Adds an optional loop_scope keyword argument to pytest.mark.asyncio. This argument controls which event loop is used to run the marked async test. #706, #871
  • Deprecates the optional scope keyword argument to pytest.mark.asyncio for API consistency with pytest_asyncio.fixture. Users are encouraged to use the loop_scope keyword argument, which does exactly the same.
  • Raises an error when passing scope or loop_scope as a positional argument to @pytest.mark.asyncio. #812
Commits
  • fb5422f docs: Set release date for v0.24 in changelog.
  • 6dc7f58 docs: Add migration guides for pytest-asyncio v0.21 and v0.23.
  • 1bfc181 Wire Sphinx builds into the RTD config via tox
  • f03cf13 Build(deps): Bump hypothesis in /dependencies/default
  • 69540bf Build(deps): Bump attrs from 24.1.0 to 24.2.0 in /dependencies/default
  • b0ccfc5 Build(deps): Bump hypothesis in /dependencies/default
  • 574f1db Build(deps): Bump babel from 2.15.0 to 2.16.0 in /dependencies/docs
  • ae30dac Update .readthedocs.yaml to install pytest-asyncio
  • 972a704 Derive project version using importlib
  • d587a52 [pre-commit.ci] pre-commit autoupdate
  • Additional commits viewable in compare view

Updates anthropic from 0.25.9 to 0.39.0

Release notes

Sourced from anthropic's releases.

v0.39.0

0.39.0 (2024-11-04)

Full Changelog: v0.38.0...v0.39.0

⚠ BREAKING CHANGES

  • client: remove legacy client.count_tokens() method (#726)

Features

Bug Fixes

  • don't use dicts as iterables in transform (#724) (62bb863)
  • support json safe serialization for basemodel subclasses (#727) (5be855e)
  • types: add missing token-counting-2024-11-01 (#722) (c549736)

Documentation

  • readme: mention new token counting endpoint (#728) (72a4636)

Refactors

  • client: remove legacy client.count_tokens() method (#726) (14e4244)

v0.38.0

0.38.0 (2024-11-01)

Full Changelog: v0.37.1...v0.38.0

Features

  • api: add message token counting & PDFs support (#721) (e4856dd)

Bug Fixes

  • count_tokens: correctly set beta header (e5b4b54)
  • types: add missing token-counting-2024-11-01 (1897883)

Chores

... (truncated)

Changelog

Sourced from anthropic's changelog.

0.39.0 (2024-11-04)

Full Changelog: v0.38.0...v0.39.0

⚠ BREAKING CHANGES

  • client: remove legacy client.count_tokens() & client.get_tokenizer() methods (#726)
    • This functionality has been replaced by the client.beta.messages.count_tokens() API which supports newer models and all content functionality, such as images and PDFs.

Features

Bug Fixes

  • don't use dicts as iterables in transform (#724) (62bb863)
  • support json safe serialization for basemodel subclasses (#727) (5be855e)
  • types: add missing token-counting-2024-11-01 (#722) (c549736)

Documentation

  • readme: mention new token counting endpoint (#728) (72a4636)

Refactors

  • client: remove legacy client.count_tokens() method (#726) (14e4244)

0.38.0 (2024-11-01)

Full Changelog: v0.37.1...v0.38.0

Features

  • api: add message token counting & PDFs support (#721) (e4856dd)

Bug Fixes

  • count_tokens: correctly set beta header (e5b4b54)
  • types: add missing token-counting-2024-11-01 (1897883)

Chores

... (truncated)

Commits
  • a3c59fc release: 0.39.0
  • 5cf4ea4 feat(api): add new haiku model (#731)
  • a60869a feat(project): drop support for Python 3.7 (#729)
  • 6b47b16 docs(readme): mention new token counting endpoint (#728)
  • 3407630 refactor(client)!: remove legacy client.count_tokens() method (#726)
  • 7ca6923 fix: support json safe serialization for basemodel subclasses (#727)
  • 00bb996 fix: don't use dicts as iterables in transform (#724)
  • c15648a fix(types): add missing token-counting-2024-11-01 (#722)
  • 14afc93 release: 0.38.0
  • 328191a fix(types): add missing token-counting-2024-11-01
  • 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

Bumps the gha group with 5 updates in the /packages/traceloop-sdk directory:

| Package | From | To |
| --- | --- | --- |
| [aiohttp](https://github.com/aio-libs/aiohttp) | `3.10.10` | `3.11.0` |
| [flake8](https://github.com/pycqa/flake8) | `7.0.0` | `7.1.1` |
| [openai](https://github.com/openai/openai-python) | `1.54.3` | `1.54.4` |
| [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.23.8` | `0.24.0` |
| [anthropic](https://github.com/anthropics/anthropic-sdk-python) | `0.25.9` | `0.39.0` |



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 `flake8` from 7.0.0 to 7.1.1
- [Commits](PyCQA/flake8@7.0.0...7.1.1)

Updates `openai` from 1.54.3 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.54.3...v1.54.4)

Updates `pytest-asyncio` from 0.23.8 to 0.24.0
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v0.23.8...v0.24.0)

Updates `anthropic` from 0.25.9 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.25.9...v0.39.0)

---
updated-dependencies:
- dependency-name: aiohttp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gha
- dependency-name: flake8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: gha
- dependency-name: openai
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: gha
- dependency-name: pytest-asyncio
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: gha
- dependency-name: anthropic
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: gha
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 13, 2024
@dosubot dosubot bot added the size:XS This PR changes 0-9 lines, ignoring generated files. label Nov 13, 2024
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 size:XS This PR changes 0-9 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants