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 9 updates #1993

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 Sep 16, 2024

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

Package From To
pydantic 2.8.2 2.9.1
posthog 3.6.3 3.6.6
flake8 7.0.0 7.1.1
pytest 8.3.2 8.3.3
openai 1.43.0 1.45.1
pytest-asyncio 0.23.8 0.24.0
anthropic 0.25.9 0.34.2
langchain 0.2.15 0.2.16
langchain-openai 0.1.23 0.1.25

Updates pydantic from 2.8.2 to 2.9.1

Release notes

Sourced from pydantic's releases.

v2.9.1 (2024-09-09)

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.9.0...v2.9.1

v2.9.0 (2024-09-05)

The code released in v2.9.0 is practically identical to that of v2.9.0b2.

Check out our blog post to learn more about the release highlights!

What's Changed

Packaging

New Features

Changes

... (truncated)

Changelog

Sourced from pydantic's changelog.

v2.9.0 (2024-09-05)

GitHub release

The code released in v2.9.0 is practically identical to that of v2.9.0b2.

What's Changed

Packaging

New Features

Changes

Performance

... (truncated)

Commits

Updates posthog from 3.6.3 to 3.6.6

Changelog

Sourced from posthog's changelog.

3.6.6 - 2024-09-16

  1. Fix manual capture support for in app frames

3.6.5 - 2024-09-10

  1. Fix django integration support for manual exception capture.

3.6.4 - 2024-09-05

  1. Add manual exception capture.
Commits
  • 67a343f fix(errors): Make sure project root exists to judge in app frames (#136)
  • 1521621 fix: Update Django integration for manual capture (#135)
  • 39070ba feat(errors): Add manual exception capture (#134)
  • See full diff in compare view

Updates flake8 from 7.0.0 to 7.1.1

Commits

Updates pytest from 8.3.2 to 8.3.3

Release notes

Sourced from pytest's releases.

8.3.3

pytest 8.3.3 (2024-09-09)

Bug fixes

  • #12446: Avoid calling @property (and other instance descriptors) during fixture discovery -- by asottile{.interpreted-text role="user"}

  • #12659: Fixed the issue of not displaying assertion failure differences when using the parameter --import-mode=importlib in pytest>=8.1.

  • #12667: Fixed a regression where type change in [ExceptionInfo.errisinstance]{.title-ref} caused [mypy]{.title-ref} to fail.

  • #12744: Fixed typing compatibility with Python 3.9 or less -- replaced [typing.Self]{.title-ref} with [typing_extensions.Self]{.title-ref} -- by Avasam{.interpreted-text role="user"}

  • #12745: Fixed an issue with backslashes being incorrectly converted in nodeid paths on Windows, ensuring consistent path handling across environments.

  • #6682: Fixed bug where the verbosity levels where not being respected when printing the "msg" part of failed assertion (as in assert condition, msg).

  • #9422: Fix bug where disabling the terminal plugin via -p no:terminal would cause crashes related to missing the verbose option.

    -- by GTowers1{.interpreted-text role="user"}

Improved documentation

  • #12663: Clarify that the [pytest_deselected]{.title-ref} hook should be called from [pytest_collection_modifyitems]{.title-ref} hook implementations when items are deselected.
  • #12678: Remove erroneous quotes from [tmp_path_retention_policy]{.title-ref} example in docs.

Miscellaneous internal changes

  • #12769: Fix typos discovered by codespell and add codespell to pre-commit hooks.
Commits

Updates openai from 1.43.0 to 1.45.1

Release notes

Sourced from openai's releases.

v1.45.1

1.45.1 (2024-09-16)

Full Changelog: v1.45.0...v1.45.1

Chores

Documentation

v1.45.0

1.45.0 (2024-09-12)

Full Changelog: v1.44.1...v1.45.0

Features

Bug Fixes

  • types: correctly mark stream discriminator as optional (#1706) (80f02f9)

v1.44.1

1.44.1 (2024-09-09)

Full Changelog: v1.44.0...v1.44.1

Chores

  • add docstrings to raw response properties (#1696) (1d2a19b)

Documentation

  • readme: add section on determining installed version (#1697) (0255735)
  • readme: improve custom base_url example (#1694) (05eec8a)

v1.44.0

1.44.0 (2024-09-06)

Full Changelog: v1.43.1...v1.44.0

... (truncated)

Changelog

Sourced from openai's changelog.

1.45.1 (2024-09-16)

Full Changelog: v1.45.0...v1.45.1

Chores

Documentation

1.45.0 (2024-09-12)

Full Changelog: v1.44.1...v1.45.0

Features

Bug Fixes

  • types: correctly mark stream discriminator as optional (#1706) (80f02f9)

1.44.1 (2024-09-09)

Full Changelog: v1.44.0...v1.44.1

Chores

  • add docstrings to raw response properties (#1696) (1d2a19b)

Documentation

  • readme: add section on determining installed version (#1697) (0255735)
  • readme: improve custom base_url example (#1694) (05eec8a)

1.44.0 (2024-09-06)

Full Changelog: v1.43.1...v1.44.0

Features

  • vector store: improve chunking strategy type names (#1690) (e82cd85)

... (truncated)

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.34.2

Release notes

Sourced from anthropic's releases.

v0.34.2

0.34.2 (2024-09-04)

Full Changelog: v0.34.1...v0.34.2

Chores

v0.34.1

0.34.1 (2024-08-19)

Full Changelog: v0.34.0...v0.34.1

Chores

  • ci: add CODEOWNERS file (#639) (33001cc)
  • client: fix parsing union responses when non-json is returned (#643) (45be91d)
  • docs/api: update prompt caching helpers (6a55aee)
  • internal: use different 32bit detection method (#640) (d6b2b63)

v0.34.0

0.34.0 (2024-08-14)

Full Changelog: v0.33.1...v0.34.0

Features

  • api: add prompt caching beta (3978411)
  • client: add streaming helpers for prompt caching (98a0a7b)

Chores

v0.33.1

0.33.1 (2024-08-12)

Full Changelog: v0.33.0...v0.33.1

Chores

  • ci: bump prism mock server version (#630) (29545ee)
  • internal: ensure package is importable in lint cmd (#632) (d685824)

v0.33.0

0.33.0 (2024-08-09)

... (truncated)

Changelog

Sourced from anthropic's changelog.

0.34.2 (2024-09-04)

Full Changelog: v0.34.1...v0.34.2

Chores

0.34.1 (2024-08-19)

Full Changelog: v0.34.0...v0.34.1

Chores

  • ci: add CODEOWNERS file (#639) (33001cc)
  • client: fix parsing union responses when non-json is returned (#643) (45be91d)
  • docs/api: update prompt caching helpers (6a55aee)
  • internal: use different 32bit detection method (#640) (d6b2b63)

0.34.0 (2024-08-14)

Full Changelog: v0.33.1...v0.34.0

Features

  • api: add prompt caching beta (3978411)
  • client: add streaming helpers for prompt caching (98a0a7b)

Chores

0.33.1 (2024-08-12)

Full Changelog: v0.33.0...v0.33.1

Chores

  • ci: bump prism mock server version (#630) (29545ee)
  • internal: ensure package is importable in lint cmd (#632) (d685824)

0.33.0 (2024-08-09)

Full Changelog: v0.32.0...v0.33.0

Features

  • client: add retries_taken to raw response class (43fb587)

... (truncated)

Commits
  • ff83982 release: 0.34.2
  • c1d6134 chore(api): deprecate claude-1 model
  • 89e9c1a chore(ci): also run pydantic v1 tests (#644)
  • 9255609 release: 0.34.1
  • 6d5b677 chore(client): fix parsing union responses when non-json is returned (#643)
  • 5a79d4f chore(internal): use different 32bit detection method (#640)
  • 8c4527b chore(ci): add CODEOWNERS file (#639)
  • c3d0267 chore(docs/api): update prompt caching helpers
  • 2c2faf4 release: 0.34.0
  • 8336494 feat(client): add streaming helpers for prompt caching
  • Additional commits viewable in compare view

Updates langchain from 0.2.15 to 0.2.16

Release notes

Sourced from langchain's releases.

langchain-community==0.2.16

Changes since langchain-community==0.2.15

community[patch]: Release 0.2.16 (#25982) community[patch]: change default Neo4j username/password (#25226) community: sambastudio llms api v2 support (#25063) docs: Add missing args in api doc of WebResearchRetriever (#25949) community[patch]: added option to change how duckduckgosearchresults tool converts api outputs into string (#22580) community[patch]: update the default hf bge embeddings (#22627) docs: integrations reference updates 13 (#25711) community[minor]: jina search tools integrating (jina reader) (#23339) community[patch]: BingSearchResults returns raw snippets as artifact(#23304) community[patch]: added content_columns option to CSVLoader (#23809) community: Resolve refs recursively when generating openai_fn from OpenAPI spec (#19002) community: fix bug to support for file_search tool from OpenAI (#25927) Feature/update hunyuan (#25779) community: add Intel GPU support to ipex-llm llm integration (#22458) improve llamacpp embeddings (#12972) community[neo4j_vector]: make embedding dimension check optional (#25737) community[patch], docs: Add API reference doc for GraphVectorStore (#25751)

langchain==0.2.16

Changes since langchain==0.2.15

langchain[patch]: Release 0.2.16 (#25977) docs: integrations reference updates 13 (#25711) qdrant: Updated class check in Self-Query Retriever factory (#25877) add neo4j query constructor for self query (#25288) infra: rm together lagnchain test dp (#25866) langchain_openai: Add "strict" parameter to OpenAIFunctionsAgent (#25862) langchain[patch]: fix moderation chain init (#25778)

Commits

Updates langchain-openai from 0.1.23 to 0.1.25

Release notes

Sourced from langchain-openai's releases.

langchain-openai==0.1.25

Changes since langchain-openai==0.1.24

openai[patch]: Release 0.1.25 (#26439) openai[patch]: get output_type when using with_structured_output (#26307)

langchain-openai==0.1.24

Changes since langchain-openai==0.1.23

partners/openai: release 0.1.24 (#26417) community, openai: support nested dicts (#26414) fmt standard-tests[patch]: add Ser/Des test langchain_openai: Make sure the response from the async client in the astream method of ChatOpenAI is properly awaited in case of "include_response_headers=True" (#26031) openai[patch]: add back azure embeddings api_version alias openai[patch]: Upgrade @​root_validators in preparation for pydantic 2 migration (#25491) standard-tests[patch]: test init from env vars (#25983) docs: ChatOpenAI.with_structured_output nits (#25952) langchain_openai: Cleanup OpenAIEmbeddings validate_environment. (#25855)

Commits

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

| Package | From | To |
| --- | --- | --- |
| [pydantic](https://github.com/pydantic/pydantic) | `2.8.2` | `2.9.1` |
| [posthog](https://github.com/posthog/posthog-python) | `3.6.3` | `3.6.6` |
| [flake8](https://github.com/pycqa/flake8) | `7.0.0` | `7.1.1` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.2` | `8.3.3` |
| [openai](https://github.com/openai/openai-python) | `1.43.0` | `1.45.1` |
| [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.34.2` |
| [langchain](https://github.com/langchain-ai/langchain) | `0.2.15` | `0.2.16` |
| [langchain-openai](https://github.com/langchain-ai/langchain) | `0.1.23` | `0.1.25` |



Updates `pydantic` from 2.8.2 to 2.9.1
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.8.2...v2.9.1)

Updates `posthog` from 3.6.3 to 3.6.6
- [Release notes](https://github.com/posthog/posthog-python/releases)
- [Changelog](https://github.com/PostHog/posthog-python/blob/master/CHANGELOG.md)
- [Commits](PostHog/posthog-python@v3.6.3...v3.6.6)

Updates `flake8` from 7.0.0 to 7.1.1
- [Commits](PyCQA/flake8@7.0.0...7.1.1)

Updates `pytest` from 8.3.2 to 8.3.3
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.3.2...8.3.3)

Updates `openai` from 1.43.0 to 1.45.1
- [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.43.0...v1.45.1)

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.34.2
- [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.34.2)

Updates `langchain` from 0.2.15 to 0.2.16
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain==0.2.15...langchain==0.2.16)

Updates `langchain-openai` from 0.1.23 to 0.1.25
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain-openai==0.1.23...langchain-openai==0.1.25)

---
updated-dependencies:
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gha
- dependency-name: posthog
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gha
- dependency-name: flake8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: gha
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: gha
- dependency-name: openai
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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
- dependency-name: langchain
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: gha
- dependency-name: langchain-openai
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: gha
...

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