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(backend/deps): bump the production-dependencies group across 1 directory with 12 updates #9205

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 6, 2025

Bumps the production-dependencies group with 12 updates in the /autogpt_platform/backend directory:

Package From To
anthropic 0.40.0 0.42.0
click 8.1.7 8.1.8
google-api-python-client 2.155.0 2.157.0
jinja2 3.1.4 3.1.5
ollama 0.4.4 0.4.5
openai 1.57.4 1.59.3
psutil 6.1.0 6.1.1
pydantic 2.10.3 2.10.4
pydantic-settings 2.7.0 2.7.1
pytest-asyncio 0.25.0 0.25.1
supabase 2.10.0 2.11.0
launchdarkly-server-sdk 9.8.0 9.9.0

Updates anthropic from 0.40.0 to 0.42.0

Release notes

Sourced from anthropic's releases.

v0.42.0

0.42.0 (2024-12-17)

Full Changelog: v0.41.0...v0.42.0

Features

Bug Fixes

  • vertex: remove anthropic_version deletion for token counting (f613929)

Chores

v0.41.0

0.41.0 (2024-12-17)

Full Changelog: v0.40.0...v0.41.0

Features

  • api: general availability updates (5db8538)
  • api: general availability updates (#795) (c8d5e43)
  • vertex: support token counting (6c3eded)

Bug Fixes

  • internal: correct support for TypeAliasType (2f6ba9e)

Chores

... (truncated)

Changelog

Sourced from anthropic's changelog.

0.42.0 (2024-12-17)

Full Changelog: v0.41.0...v0.42.0

Features

Bug Fixes

  • vertex: remove anthropic_version deletion for token counting (f613929)

Chores

0.41.0 (2024-12-17)

Full Changelog: v0.40.0...v0.41.0

Features

  • api: general availability updates (5db8538)
  • api: general availability updates (#795) (c8d5e43)
  • vertex: support token counting (6c3eded)

Bug Fixes

  • internal: correct support for TypeAliasType (2f6ba9e)

Chores

Documentation

... (truncated)

Commits
  • 93cbbbd release: 0.42.0
  • 82e03de fix(vertex): remove anthropic_version deletion for token counting
  • dc651fd chore(internal): fix some typos (#799)
  • e33d250 release: 0.41.0
  • c17d68e chore(bedrock/vertex): explicit error for unsupported messages endpoints
  • 45c28dd feat(vertex): support token counting
  • 4e0b15e feat(api): general availability updates
  • df6f210 chore(internal): update spec (#793)
  • 3540987 chore(api): update spec version (#792)
  • 76ab5ae docs(readme): example snippet for client context manager (#791)
  • Additional commits viewable in compare view

Updates click from 8.1.7 to 8.1.8

Release notes

Sourced from click's releases.

8.1.8

This is the Click 8.1.8 fix release, which fixes bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

PyPI: https://pypi.org/project/click/8.1.8/ Changes: https://click.palletsprojects.com/en/stable/changes/#version-8-1-8 Milestone https://github.com/pallets/click/milestones/23?closed=1

  • Fix an issue with type hints for click.open_file(). #2717
  • Fix issue where error message for invalid click.Path displays on multiple lines. #2697
  • Fixed issue that prevented a default value of "" from being displayed in the help for an option. #2500
  • The test runner handles stripping color consistently on Windows. #2705
  • Show correct value for flag default when using default_map. #2632
  • Fix click.echo(color=...) passing color to coloroma so it can be forced on Windows. #2606.
  • More robust bash version check, fixing problem on Windows with git-bash. #2638
  • Cache the help option generated by the help_option_names setting to respect its eagerness. #2811
  • Replace uses of os.system with subprocess.Popen. #1476
  • Exceptions generated during a command will use the context's color setting when being displayed. #2193
  • Error message when defining option with invalid name is more descriptive. #2452
  • Refactor code generating default --help option to deduplicate code. #2563
  • Test CLIRunner resets patched _compat.should_strip_ansi. #2732
Changelog

Sourced from click's changelog.

Version 8.1.8

Unreleased

  • Fix an issue with type hints for click.open_file(). :issue:2717
  • Fix issue where error message for invalid click.Path displays on multiple lines. :issue:2697
  • Fixed issue that prevented a default value of "" from being displayed in the help for an option. :issue:2500
  • The test runner handles stripping color consistently on Windows. :issue:2705
  • Show correct value for flag default when using default_map. :issue:2632
  • Fix click.echo(color=...) passing color to coloroma so it can be forced on Windows. :issue:2606.
Commits

Updates google-api-python-client from 2.155.0 to 2.157.0

Release notes

Sourced from google-api-python-client's releases.

v2.157.0

2.157.0 (2024-12-24)

Features

Bug Fixes

v2.156.0

2.156.0 (2024-12-17)

Features

... (truncated)

Commits

Updates jinja2 from 3.1.4 to 3.1.5

Release notes

Sourced from jinja2's releases.

3.1.5

This is the Jinja 3.1.5 security fix release, which fixes security issues and bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

PyPI: https://pypi.org/project/Jinja2/3.1.5/ Changes: https://jinja.palletsprojects.com/changes/#version-3-1-5 Milestone: https://github.com/pallets/jinja/milestone/16?closed=1

  • The sandboxed environment handles indirect calls to str.format, such as by passing a stored reference to a filter that calls its argument. GHSA-q2x7-8rv6-6q7h
  • Escape template name before formatting it into error messages, to avoid issues with names that contain f-string syntax. #1792, GHSA-gmj6-6f8f-6699
  • Sandbox does not allow clear and pop on known mutable sequence types. #2032
  • Calling sync render for an async template uses asyncio.run. #1952
  • Avoid unclosed auto_aiter warnings. #1960
  • Return an aclose-able AsyncGenerator from Template.generate_async. #1960
  • Avoid leaving root_render_func() unclosed in Template.generate_async. #1960
  • Avoid leaving async generators unclosed in blocks, includes and extends. #1960
  • The runtime uses the correct concat function for the current environment when calling block references. #1701
  • Make |unique async-aware, allowing it to be used after another async-aware filter. #1781
  • |int filter handles OverflowError from scientific notation. #1921
  • Make compiling deterministic for tuple unpacking in a {% set ... %} call. #2021
  • Fix dunder protocol (copy/pickle/etc) interaction with Undefined objects. #2025
  • Fix copy/pickle support for the internal missing object. #2027
  • Environment.overlay(enable_async) is applied correctly. #2061
  • The error message from FileSystemLoader includes the paths that were searched. #1661
  • PackageLoader shows a clearer error message when the package does not contain the templates directory. #1705
  • Improve annotations for methods returning copies. #1880
  • urlize does not add mailto: to values like @a@b. #1870
  • Tests decorated with @pass_context can be used with the |select filter. #1624
  • Using set for multiple assignment (a, b = 1, 2) does not fail when the target is a namespace attribute. #1413
  • Using set in all branches of {% if %}{% elif %}{% else %} blocks does not cause the variable to be considered initially undefined. #1253
Changelog

Sourced from jinja2's changelog.

Version 3.1.5

Released 2024-12-21

  • The sandboxed environment handles indirect calls to str.format, such as by passing a stored reference to a filter that calls its argument. :ghsa:q2x7-8rv6-6q7h
  • Escape template name before formatting it into error messages, to avoid issues with names that contain f-string syntax. :issue:1792, :ghsa:gmj6-6f8f-6699
  • Sandbox does not allow clear and pop on known mutable sequence types. :issue:2032
  • Calling sync render for an async template uses asyncio.run. :pr:1952
  • Avoid unclosed auto_aiter warnings. :pr:1960
  • Return an aclose-able AsyncGenerator from Template.generate_async. :pr:1960
  • Avoid leaving root_render_func() unclosed in Template.generate_async. :pr:1960
  • Avoid leaving async generators unclosed in blocks, includes and extends. :pr:1960
  • The runtime uses the correct concat function for the current environment when calling block references. :issue:1701
  • Make |unique async-aware, allowing it to be used after another async-aware filter. :issue:1781
  • |int filter handles OverflowError from scientific notation. :issue:1921
  • Make compiling deterministic for tuple unpacking in a {% set ... %} call. :issue:2021
  • Fix dunder protocol (copy/pickle/etc) interaction with Undefined objects. :issue:2025
  • Fix copy/pickle support for the internal missing object. :issue:2027
  • Environment.overlay(enable_async) is applied correctly. :pr:2061
  • The error message from FileSystemLoader includes the paths that were searched. :issue:1661
  • PackageLoader shows a clearer error message when the package does not contain the templates directory. :issue:1705
  • Improve annotations for methods returning copies. :pr:1880
  • urlize does not add mailto: to values like @a@b. :pr:1870
  • Tests decorated with @pass_context`` can be used with the ``|select`` filter. :issue:1624`
  • Using set for multiple assignment (a, b = 1, 2) does not fail when the target is a namespace attribute. :issue:1413
  • Using set in all branches of {% if %}{% elif %}{% else %} blocks does not cause the variable to be considered initially undefined. :issue:1253
Commits
  • 877f6e5 release version 3.1.5
  • 8d58859 remove test pypi
  • eda8fe8 update dev dependencies
  • c8fdce1 Fix bug involving calling set on a template parameter within all branches of ...
  • 66587ce Fix bug where set would sometimes fail within if
  • fbc3a69 Add support for namespaces in tuple parsing (#1664)
  • b8f4831 more comments about nsref assignment
  • ee83219 Add support for namespaces in tuple assignment
  • 1d55cdd Triple quotes in docs (#2064)
  • 8a8eafc edit block assignment section
  • Additional commits viewable in compare view

Updates ollama from 0.4.4 to 0.4.5

Release notes

Sourced from ollama's releases.

v0.4.5

What's Changed

New Contributors

Full Changelog: ollama/ollama-python@v0.4.4...v0.4.5

Commits
  • ee349ec bugfix: fix passing Image type in messages for chat (#390)
  • 7d1e002 examples: use type hinting generics in standard collections for structured ou...
  • 4daf4af Merge pull request #384 from akx/export-image-model
  • 9057705 fix: export Image model
  • 70dd0b7 fix: structured outputs example (#364)
  • See full diff in compare view

Updates openai from 1.57.4 to 1.59.3

Release notes

Sourced from openai's releases.

v1.59.3

1.59.3 (2025-01-03)

Full Changelog: v1.59.2...v1.59.3

Chores

v1.59.2

1.59.2 (2025-01-03)

Full Changelog: v1.59.1...v1.59.2

Chores

v1.59.1

1.59.1 (2025-01-02)

Full Changelog: v1.59.0...v1.59.1

Chores

v1.59.0

1.59.0 (2024-12-19)

Full Changelog: v1.58.1...v1.59.0

Features

Chores

v1.58.1

1.58.1 (2024-12-17)

Full Changelog: v1.58.0...v1.58.1

Documentation

  • readme: fix example script link (23ba877)

... (truncated)

Changelog

Sourced from openai's changelog.

1.59.3 (2025-01-03)

Full Changelog: v1.59.2...v1.59.3

Chores

1.59.2 (2025-01-03)

Full Changelog: v1.59.1...v1.59.2

Chores

1.59.1 (2025-01-02)

Full Changelog: v1.59.0...v1.59.1

Chores

1.59.0 (2024-12-21)

Full Changelog: v1.58.1...v1.59.0

Features

Chores

1.58.1 (2024-12-17)

Full Changelog: v1.58.0...v1.58.1

Documentation

  • readme: fix example script link (23ba877)

1.58.0 (2024-12-17)

Full Changelog: v1.57.4...v1.58.0

... (truncated)

Commits

Updates psutil from 6.1.0 to 6.1.1

Changelog

Sourced from psutil's changelog.

6.1.1

2024-12-19

Enhancements

  • 2471_: use Vulture CLI tool to detect dead code.

Bug fixes

  • 2418_, [Linux]: fix race condition in case /proc/PID/stat does not exist, but /proc/PID does, resulting in FileNotFoundError.
  • 2470_, [Linux]: users()_ may return "localhost" instead of the actual IP address of the user logged in.
Commits
  • 58552f6 Merge branch 'master' of github.com:giampaolo/psutil
  • 4ba6ad0 ruff: enable PLR5501 (Use elif instead of else then if, to reduce inden...
  • 1a63407 use a set literal when testing for membership
  • 8162905 disable flafy test + pre-release
  • 1f3458b try to fix some flaky tests 2
  • c0e1eb1 try to fix some flaky tests 2
  • 45934bb try to fix some flaky tests
  • 560c524 chore: bump cibuildwheel to 2.22.0, move to macos-13 (#2479)
  • b5ea67e fix winmake.py test-parallel
  • 13a336b fix #2418 / Linux: fix race condition
  • Additional commits viewable in compare view

Updates pydantic from 2.10.3 to 2.10.4

Release notes

Sourced from pydantic's releases.

v2.10.4 2024-12-18

What's Changed

Packaging

Fixes

New Contributors

Full Changelog: pydantic/pydantic@v2.10.3...v2.10.4

Changelog

Sourced from pydantic's changelog.

v2.10.4 (2024-12-18)

GitHub release

What's Changed

Packaging

Fixes

New Contributors

Commits
  • 5bd3a65 fix history.md
  • 46f0945 Prepare for v2.10.4 (#11144)
  • ea69e69 Make sure the type reference is removed from the seen references (#11145)
  • a07c31e Include JSON Schema input core schema in function schemas (#11142)
  • 9166d55 Update WithJsonSchema documentation, add usage documentation for `json_sche...
  • 572f57d Rewrite validators documentation (

@dependabot dependabot bot requested a review from a team as a code owner January 6, 2025 17:39
@dependabot dependabot bot requested review from Swiftyos and Pwuts and removed request for a team January 6, 2025 17:39
@dependabot dependabot bot added dependencies python Pull requests that update Python code labels Jan 6, 2025
@github-actions github-actions bot added the platform/backend AutoGPT Platform - Back end label Jan 6, 2025
Copy link

netlify bot commented Jan 6, 2025

Deploy Preview for auto-gpt-docs-dev canceled.

Name Link
🔨 Latest commit 960de2e
🔍 Latest deploy log https://app.netlify.com/sites/auto-gpt-docs-dev/deploys/677e5cfd3aef210008c84184

@github-actions github-actions bot added the size/l label Jan 6, 2025
Copy link

netlify bot commented Jan 6, 2025

Deploy Preview for auto-gpt-docs canceled.

Name Link
🔨 Latest commit 960de2e
🔍 Latest deploy log https://app.netlify.com/sites/auto-gpt-docs/deploys/677e5cfddc4863000857b0dc

@github-actions github-actions bot added the conflicts Automatically applied to PRs with merge conflicts label Jan 6, 2025
Copy link
Contributor

github-actions bot commented Jan 6, 2025

This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request.

1 similar comment
Copy link
Contributor

github-actions bot commented Jan 6, 2025

This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request.

@github-actions github-actions bot added the conflicts Automatically applied to PRs with merge conflicts label Jan 6, 2025
@dependabot dependabot bot force-pushed the dependabot/pip/autogpt_platform/backend/dev/production-dependencies-ada0a464ad branch from 1eb646f to 79edd42 Compare January 6, 2025 22:43
@github-actions github-actions bot removed the conflicts Automatically applied to PRs with merge conflicts label Jan 6, 2025
Copy link
Contributor

github-actions bot commented Jan 6, 2025

Conflicts have been resolved! 🎉 A maintainer will review the pull request shortly.

@github-actions github-actions bot added size/xl and removed size/l labels Jan 6, 2025
@ntindle
Copy link
Member

ntindle commented Jan 7, 2025

@dependabot recreate

…directory with 12 updates

Bumps the production-dependencies group with 12 updates in the /autogpt_platform/backend directory:

| Package | From | To |
| --- | --- | --- |
| [anthropic](https://github.com/anthropics/anthropic-sdk-python) | `0.40.0` | `0.42.0` |
| [click](https://github.com/pallets/click) | `8.1.7` | `8.1.8` |
| [google-api-python-client](https://github.com/googleapis/google-api-python-client) | `2.155.0` | `2.157.0` |
| [jinja2](https://github.com/pallets/jinja) | `3.1.4` | `3.1.5` |
| [ollama](https://github.com/ollama/ollama-python) | `0.4.4` | `0.4.5` |
| [openai](https://github.com/openai/openai-python) | `1.57.4` | `1.59.3` |
| [psutil](https://github.com/giampaolo/psutil) | `6.1.0` | `6.1.1` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.10.3` | `2.10.4` |
| [pydantic-settings](https://github.com/pydantic/pydantic-settings) | `2.7.0` | `2.7.1` |
| [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.25.0` | `0.25.1` |
| [supabase](https://github.com/supabase/supabase-py) | `2.10.0` | `2.11.0` |
| [launchdarkly-server-sdk](https://github.com/launchdarkly/python-server-sdk) | `9.8.0` | `9.9.0` |



Updates `anthropic` from 0.40.0 to 0.42.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.40.0...v0.42.0)

Updates `click` from 8.1.7 to 8.1.8
- [Release notes](https://github.com/pallets/click/releases)
- [Changelog](https://github.com/pallets/click/blob/main/CHANGES.rst)
- [Commits](pallets/click@8.1.7...8.1.8)

Updates `google-api-python-client` from 2.155.0 to 2.157.0
- [Release notes](https://github.com/googleapis/google-api-python-client/releases)
- [Commits](googleapis/google-api-python-client@v2.155.0...v2.157.0)

Updates `jinja2` from 3.1.4 to 3.1.5
- [Release notes](https://github.com/pallets/jinja/releases)
- [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst)
- [Commits](pallets/jinja@3.1.4...3.1.5)

Updates `ollama` from 0.4.4 to 0.4.5
- [Release notes](https://github.com/ollama/ollama-python/releases)
- [Commits](ollama/ollama-python@v0.4.4...v0.4.5)

Updates `openai` from 1.57.4 to 1.59.3
- [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.57.4...v1.59.3)

Updates `psutil` from 6.1.0 to 6.1.1
- [Changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst)
- [Commits](giampaolo/psutil@release-6.1.0...release-6.1.1)

Updates `pydantic` from 2.10.3 to 2.10.4
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.10.3...v2.10.4)

Updates `pydantic-settings` from 2.7.0 to 2.7.1
- [Release notes](https://github.com/pydantic/pydantic-settings/releases)
- [Commits](pydantic/pydantic-settings@v2.7.0...v2.7.1)

Updates `pytest-asyncio` from 0.25.0 to 0.25.1
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v0.25.0...v0.25.1)

Updates `supabase` from 2.10.0 to 2.11.0
- [Release notes](https://github.com/supabase/supabase-py/releases)
- [Changelog](https://github.com/supabase/supabase-py/blob/main/CHANGELOG.md)
- [Commits](supabase/supabase-py@v2.10.0...v2.11.0)

Updates `launchdarkly-server-sdk` from 9.8.0 to 9.9.0
- [Release notes](https://github.com/launchdarkly/python-server-sdk/releases)
- [Changelog](https://github.com/launchdarkly/python-server-sdk/blob/main/CHANGELOG.md)
- [Commits](launchdarkly/python-server-sdk@9.8.0...9.9.0)

---
updated-dependencies:
- dependency-name: anthropic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: click
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: google-api-python-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: jinja2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: ollama
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: openai
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: psutil
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: pydantic-settings
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: pytest-asyncio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: supabase
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: launchdarkly-server-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/autogpt_platform/backend/dev/production-dependencies-ada0a464ad branch from 79edd42 to 59671f6 Compare January 7, 2025 14:37
Copy link
Contributor

github-actions bot commented Jan 8, 2025

This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request.

@github-actions github-actions bot added the conflicts Automatically applied to PRs with merge conflicts label Jan 8, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 9, 2025

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

@dependabot dependabot bot closed this Jan 9, 2025
@dependabot dependabot bot deleted the dependabot/pip/autogpt_platform/backend/dev/production-dependencies-ada0a464ad branch January 9, 2025 18:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
conflicts Automatically applied to PRs with merge conflicts dependencies platform/backend AutoGPT Platform - Back end python Pull requests that update Python code size/xl
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants