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 8 updates #9125

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 23, 2024

Bumps the production-dependencies group with 8 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.156.0
jinja2 3.1.4 3.1.5
openai 1.57.4 1.58.1
psutil 6.1.0 6.1.1
pydantic 2.10.3 2.10.4
launchdarkly-server-sdk 9.8.0 9.8.1

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

Release notes

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

v2.156.0

2.156.0 (2024-12-17)

Features

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 openai from 1.57.4 to 1.58.1

Release notes

Sourced from openai's releases.

v1.58.1

1.58.1 (2024-12-17)

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

Documentation

  • readme: fix example script link (23ba877)

v1.58.0

1.58.0 (2024-12-17)

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

Features

Bug Fixes

  • add reasoning_effort to all methods (8829c32)
  • assistants: correctly send include query param (9a4c69c)
  • cli/migrate: change grit binaries prefix (#1951) (1c396c9)

Chores

Documentation

  • add examples + guidance on Realtime API support (1cb00f8)
  • readme: example snippet for client context manager (#1953) (ad80255)
Changelog

Sourced from openai's changelog.

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

Features

Bug Fixes

  • add reasoning_effort to all methods (8829c32)
  • assistants: correctly send include query param (9a4c69c)
  • cli/migrate: change grit binaries prefix (#1951) (1c396c9)

Chores

Documentation

  • add examples + guidance on Realtime API support (1cb00f8)
  • readme: example snippet for client context manager (#1953) (ad80255)
Commits
  • 19ecaaf release: 1.58.1
  • 6935dfd docs(readme): fix example script link
  • 1b78f22 release: 1.58.0
  • 488ec04 docs: add examples + guidance on Realtime API support
  • a6a94e0 fix: add reasoning_effort to all methods
  • 5fdba48 feat: add Realtime API support (#1958)
  • 575ff60 feat(api): new o1 and GPT-4o models + preference fine-tuning (#1956)
  • eba6781 chore(internal): fix some typos (#1955)
  • 588935e docs(readme): example snippet for client context manager (#1953)
  • 0bfd8c4 fix(assistants): correctly send include query param
  • Additional commits viewable in compare view

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

Updates launchdarkly-server-sdk from 9.8.0 to 9.8.1

Release notes

Sourced from launchdarkly-server-sdk's releases.

v9.8.1

9.8.1 (2024-12-23)

Bug Fixes

Changelog

Sourced from launchdarkly-server-sdk's changelog.

9.8.1 (2024-12-23)Description has been truncated

…directory with 8 updates

Bumps the production-dependencies group with 8 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.156.0` |
| [jinja2](https://github.com/pallets/jinja) | `3.1.4` | `3.1.5` |
| [openai](https://github.com/openai/openai-python) | `1.57.4` | `1.58.1` |
| [psutil](https://github.com/giampaolo/psutil) | `6.1.0` | `6.1.1` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.10.3` | `2.10.4` |
| [launchdarkly-server-sdk](https://github.com/launchdarkly/python-server-sdk) | `9.8.0` | `9.8.1` |



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.156.0
- [Release notes](https://github.com/googleapis/google-api-python-client/releases)
- [Commits](googleapis/google-api-python-client@v2.155.0...v2.156.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 `openai` from 1.57.4 to 1.58.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.57.4...v1.58.1)

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 `launchdarkly-server-sdk` from 9.8.0 to 9.8.1
- [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.8.1)

---
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: 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: launchdarkly-server-sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner December 23, 2024 17:21
@dependabot dependabot bot requested review from ntindle and Bentlybro and removed request for a team December 23, 2024 17:21
@dependabot dependabot bot added dependencies python Pull requests that update Python code labels Dec 23, 2024
@github-actions github-actions bot added platform/backend AutoGPT Platform - Back end size/l labels Dec 23, 2024
Copy link

netlify bot commented Dec 23, 2024

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

Name Link
🔨 Latest commit a38b880
🔍 Latest deploy log https://app.netlify.com/sites/auto-gpt-docs-dev/deploys/67699c0d48515d00080c0ce4

Copy link

netlify bot commented Dec 23, 2024

Deploy Preview for auto-gpt-docs canceled.

Name Link
🔨 Latest commit a38b880
🔍 Latest deploy log https://app.netlify.com/sites/auto-gpt-docs/deploys/67699c0d61205400086aec6b

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies platform/backend AutoGPT Platform - Back end python Pull requests that update Python code size/l
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants