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 version-all group across 1 directory with 7 updates #6591

Merged
merged 2 commits into from
Feb 3, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 3, 2025

Bumps the version-all group with 7 updates in the / directory:

Package From To
boto3 1.36.9 1.36.11
modal 0.73.2 0.73.8
runloop-api-client 0.15.0 0.18.0
llama-index 0.12.14 0.12.15
ruff 0.9.3 0.9.4
openai 1.60.2 1.61.0
reportlab 4.2.5 4.3.0

Updates boto3 from 1.36.9 to 1.36.11

Commits
  • 1f4efb9 Merge branch 'release-1.36.11'
  • c7543e5 Bumping version to 1.36.11
  • 18d8817 Add changelog entries from botocore
  • 7893a06 Merge branch 'release-1.36.10'
  • c5c634b Merge branch 'release-1.36.10' into develop
  • f147d86 Bumping version to 1.36.10
  • 07397a2 Add changelog entries from botocore
  • 622fdef Merge branch 'release-1.36.9' into develop
  • See full diff in compare view

Updates modal from 0.73.2 to 0.73.8

Commits
  • 9cf6409 [auto-commit] [skip ci] Bump the build number
  • 6a2791f Adds experimental GPU snapshotting flag (#2830)
  • d924202 [auto-commit] [skip ci] Bump the build number
  • bf29af2 Rename confusingly overlapping variable name (#2742)
  • 93eee17 [auto-commit] [skip ci] Bump the build number
  • d683623 Remove 0.62 lookup compatibility code from classes (#2823)
  • 9b03efc [auto-commit] [skip ci] Bump the build number
  • 8d27561 Updates Proxy Auth docs (#2825)
  • a3d2a43 [auto-commit] [skip ci] Bump the build number
  • 6c60d79 Update proto so FunctionRetry returns input_jwt (#2824)
  • Additional commits viewable in compare view

Updates runloop-api-client from 0.15.0 to 0.18.0

Release notes

Sourced from runloop-api-client's releases.

v0.18.0

0.18.0 (2025-02-01)

Full Changelog: v0.17.0...v0.18.0

Features

v0.17.0

0.17.0 (2025-01-31)

Full Changelog: v0.16.0...v0.17.0

Features

v0.16.0

0.16.0 (2025-01-31)

Full Changelog: v0.15.0...v0.16.0

Features

Chores

Changelog

Sourced from runloop-api-client's changelog.

0.18.0 (2025-02-01)

Full Changelog: v0.17.0...v0.18.0

Features

0.17.0 (2025-01-31)

Full Changelog: v0.16.0...v0.17.0

Features

0.16.0 (2025-01-31)

Full Changelog: v0.15.0...v0.16.0

Features

Chores

Commits

Updates llama-index from 0.12.14 to 0.12.15

Changelog

Sourced from llama-index's changelog.

llama-index-core [0.12.15]

  • Add error_on_tool_error param to FunctionCallingLLM.predict_and_call (#17663)
  • Get tool description from pydantic field (#17679)
  • fix: make ctx._events_buffer json-serializable (#17676)
  • feat: allow to exclude empty file simple directory reader (#17656)
  • improve markdown llm output parsing (#17577)
  • small typo fix in the default plan refine prompt (#17644)

llama-index-agent-openai [0.4.3]

  • fix repeated sources when doing parallel tool calling (#17645)

llama-index-embeddings-text-embeddings-inference [0.3.2]

  • Add endpoint parameter to TextEmbeddingsInference (#17598)

llama-index-llms-bedrock-converse [0.4.5]

  • fix bedrock function calling (#17658)

llama-index-llms-cortex [0.1.0]

  • Add Snowflake Cortex Integration (#17585)

llama-index-llms-fireworks [0.3.2]

  • Deepseek-r1 is now supported by fireworks (#17657)
  • Deepseek-v3 is now supported by fireworks (#17518)

llama-index-llms-gemini [0.4.5]

  • adding the chat decorators to async calls (#17678)

llama-index-llms-llama-cpp [0.4.0]

  • update llama-cpp integration + docs (#17647)

llama-index-vector-stores-azureaisearch [0.3.3]

  • Feat/fix Azure AI Search Hybrid Semantic Search Unusability due to hardcoded parameter (#17683)

llama-index-vector-stores-pinecone [0.4.4]

  • get_nodes() now accepts include_values param to return embeddings (#17635)

[2025-01-25]

Commits

Updates ruff from 0.9.3 to 0.9.4

Release notes

Sourced from ruff's releases.

0.9.4

Release Notes

Preview features

  • [airflow] Extend airflow context parameter check for BaseOperator.execute (AIR302) (#15713)
  • [airflow] Update AIR302 to check for deprecated context keys (#15144)
  • [flake8-bandit] Permit suspicious imports within stub files (S4) (#15822)
  • [pylint] Do not trigger PLR6201 on empty collections (#15732)
  • [refurb] Do not emit diagnostic when loop variables are used outside loop body (FURB122) (#15757)
  • [ruff] Add support for more re patterns (RUF055) (#15764)
  • [ruff] Check for shadowed map before suggesting fix (RUF058) (#15790)
  • [ruff] Do not emit diagnostic when all arguments to zip() are variadic (RUF058) (#15744)
  • [ruff] Parenthesize fix when argument spans multiple lines for unnecessary-round (RUF057) (#15703)

Rule changes

  • Preserve quote style in generated code (#15726, #15778, #15794)
  • [flake8-bugbear] Exempt NewType calls where the original type is immutable (B008) (#15765)
  • [pylint] Honor banned top-level imports by TID253 in PLC0415. (#15628)
  • [pyupgrade] Ignore is_typeddict and TypedDict for deprecated-import (UP035) (#15800)

CLI

  • Fix formatter warning message for flake8-quotes option (#15788)
  • Implement tab autocomplete for ruff config (#15603)

Bug fixes

  • [flake8-comprehensions] Do not emit unnecessary-map diagnostic when lambda has different arity (C417) (#15802)
  • [flake8-comprehensions] Parenthesize sorted when needed for unnecessary-call-around-sorted (C413) (#15825)
  • [pyupgrade] Handle end-of-line comments for quoted-annotation (UP037) (#15824)

Documentation

  • Add missing config docstrings (#15803)
  • Add references to trio.run_process and anyio.run_process (#15761)
  • Use uv init --lib in tutorial (#15718)

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.9.4

Preview features

  • [airflow] Extend airflow context parameter check for BaseOperator.execute (AIR302) (#15713)
  • [airflow] Update AIR302 to check for deprecated context keys (#15144)
  • [flake8-bandit] Permit suspicious imports within stub files (S4) (#15822)
  • [pylint] Do not trigger PLR6201 on empty collections (#15732)
  • [refurb] Do not emit diagnostic when loop variables are used outside loop body (FURB122) (#15757)
  • [ruff] Add support for more re patterns (RUF055) (#15764)
  • [ruff] Check for shadowed map before suggesting fix (RUF058) (#15790)
  • [ruff] Do not emit diagnostic when all arguments to zip() are variadic (RUF058) (#15744)
  • [ruff] Parenthesize fix when argument spans multiple lines for unnecessary-round (RUF057) (#15703)

Rule changes

  • Preserve quote style in generated code (#15726, #15778, #15794)
  • [flake8-bugbear] Exempt NewType calls where the original type is immutable (B008) (#15765)
  • [pylint] Honor banned top-level imports by TID253 in PLC0415. (#15628)
  • [pyupgrade] Ignore is_typeddict and TypedDict for deprecated-import (UP035) (#15800)

CLI

  • Fix formatter warning message for flake8-quotes option (#15788)
  • Implement tab autocomplete for ruff config (#15603)

Bug fixes

  • [flake8-comprehensions] Do not emit unnecessary-map diagnostic when lambda has different arity (C417) (#15802)
  • [flake8-comprehensions] Parenthesize sorted when needed for unnecessary-call-around-sorted (C413) (#15825)
  • [pyupgrade] Handle end-of-line comments for quoted-annotation (UP037) (#15824)

Documentation

  • Add missing config docstrings (#15803)
  • Add references to trio.run_process and anyio.run_process (#15761)
  • Use uv init --lib in tutorial (#15718)
Commits
  • 854ab03 Bump version to 0.9.4 (#15831)
  • b0b8b06 Remove semicolon after TypeScript interface definition (#15827)
  • 451f251 [red-knot] Clarify behavior when redeclaring base class attributes (#15826)
  • 13cf3e6 [flake8-comprehensions] Parenthesize sorted when needed for `unnecessary-...
  • 56f956a [pyupgrade] Handle end-of-line comments for quoted-annotation (UP037) (...
  • 7a10a40 [flake8-bandit] Permit suspicious imports within stub files (S4) (#15822)
  • 3125332 [red-knot] Format mdtest snippets with the latest version of black (#15819)
  • 15d886a [red-knot] Consider all definitions after terminal statements unreachable (#1...
  • e1c9d10 [flake8-comprehensions] Do not emit unnecessary-map diagnostic when lambd...
  • 23c9884 Preserve quotes in generated f-strings (#15794)
  • Additional commits viewable in compare view

Updates openai from 1.60.2 to 1.61.0

Release notes

Sourced from openai's releases.

v1.61.0

1.61.0 (2025-01-31)

Full Changelog: v1.60.2...v1.61.0

Features

Bug Fixes

  • types: correct metadata type + other fixes (12b87a4)

Chores

Documentation

Changelog

Sourced from openai's changelog.

1.61.0 (2025-01-31)

Full Changelog: v1.60.2...v1.61.0

Features

Bug Fixes

  • types: correct metadata type + other fixes (12b87a4)

Chores

Documentation

Commits

Updates reportlab from 4.2.5 to 4.3.0

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

To run this PR locally, use the following command:

docker run -it --rm   -p 3000:3000   -v /var/run/docker.sock:/var/run/docker.sock   --add-host host.docker.internal:host-gateway   -e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:efe5400-nikolaik   --name openhands-app-efe5400   docker.all-hands.dev/all-hands-ai/openhands:efe5400

…ates

Bumps the version-all group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [boto3](https://github.com/boto/boto3) | `1.36.9` | `1.36.11` |
| [modal](https://github.com/modal-labs/modal-client) | `0.73.2` | `0.73.8` |
| [runloop-api-client](https://github.com/runloopai/api-client-python) | `0.15.0` | `0.18.0` |
| [llama-index](https://github.com/run-llama/llama_index) | `0.12.14` | `0.12.15` |
| [ruff](https://github.com/astral-sh/ruff) | `0.9.3` | `0.9.4` |
| [openai](https://github.com/openai/openai-python) | `1.60.2` | `1.61.0` |
| [reportlab](https://www.reportlab.com/) | `4.2.5` | `4.3.0` |



Updates `boto3` from 1.36.9 to 1.36.11
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.36.9...1.36.11)

Updates `modal` from 0.73.2 to 0.73.8
- [Changelog](https://github.com/modal-labs/modal-client/blob/main/CHANGELOG.md)
- [Commits](modal-labs/modal-client@v0.73.2...v0.73.8)

Updates `runloop-api-client` from 0.15.0 to 0.18.0
- [Release notes](https://github.com/runloopai/api-client-python/releases)
- [Changelog](https://github.com/runloopai/api-client-python/blob/main/CHANGELOG.md)
- [Commits](runloopai/api-client-python@v0.15.0...v0.18.0)

Updates `llama-index` from 0.12.14 to 0.12.15
- [Release notes](https://github.com/run-llama/llama_index/releases)
- [Changelog](https://github.com/run-llama/llama_index/blob/main/CHANGELOG.md)
- [Commits](run-llama/llama_index@v0.12.14...v0.12.15)

Updates `ruff` from 0.9.3 to 0.9.4
- [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.9.3...0.9.4)

Updates `openai` from 1.60.2 to 1.61.0
- [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.60.2...v1.61.0)

Updates `reportlab` from 4.2.5 to 4.3.0

---
updated-dependencies:
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: modal
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: runloop-api-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-all
- dependency-name: llama-index
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: openai
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-all
- dependency-name: reportlab
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Feb 3, 2025
@enyst enyst enabled auto-merge (squash) February 3, 2025 18:43
@enyst enyst merged commit 4dbe831 into main Feb 3, 2025
14 checks passed
@enyst enyst deleted the dependabot/pip/version-all-9e76ebcd35 branch February 3, 2025 19:15
zchn pushed a commit to zchn/OpenHands that referenced this pull request Feb 4, 2025
…ates (All-Hands-AI#6591)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Engel Nyst <[email protected]>
adityasoni9998 pushed a commit to adityasoni9998/OpenHands that referenced this pull request Feb 7, 2025
…ates (All-Hands-AI#6591)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Engel Nyst <[email protected]>
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant