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

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

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

Package From To
litellm 1.60.2 1.60.5
boto3 1.36.12 1.36.14
modal 0.73.12 0.73.18
runloop-api-client 0.19.0 0.22.0
llama-index 0.12.15 0.12.16
mypy 1.14.1 1.15.0
openai 1.61.0 1.61.1
streamlit 1.41.1 1.42.0

Updates litellm from 1.60.2 to 1.60.5

Release notes

Sourced from litellm's releases.

v1.60.4

What's Changed

Full Changelog: BerriAI/litellm@v1.60.2...v1.60.4

Docker Run LiteLLM Proxy

docker run \
-e STORE_MODEL_IN_DB=True \
-p 4000:4000 \
ghcr.io/berriai/litellm:main-v1.60.4

Don't want to maintain your internal proxy? get in touch 🎉

Hosted Proxy Alpha: https://calendly.com/d/4mp-gd3-k5k/litellm-1-1-onboarding-chat

Load Test LiteLLM Proxy Results

Name Status Median Response Time (ms) Average Response Time (ms) Requests/s Failures/s Request Count Failure Count Min Response Time (ms) Max Response Time (ms)
/chat/completions Passed ✅ 210.0 243.98647747354212 6.187158959524932 0.0033407985742575225 1852 1 94.81396500007122 3976.009301999966
Aggregated Passed ✅ 210.0 243.98647747354212 6.187158959524932 0.0033407985742575225 1852 1 94.81396500007122 3976.009301999966
Commits

Updates boto3 from 1.36.12 to 1.36.14

Commits
  • d0e608d Merge branch 'release-1.36.14'
  • d42dbc7 Bumping version to 1.36.14
  • b4d1f35 Add changelog entries from botocore
  • a8f1f3d Merge branch 'release-1.36.13'
  • 29c5597 Merge branch 'release-1.36.13' into develop
  • 35836b3 Bumping version to 1.36.13
  • 44e7ee3 Add changelog entries from botocore
  • fd547c5 Merge branch 'release-1.36.12' into develop
  • See full diff in compare view

Updates modal from 0.73.12 to 0.73.18

Changelog

Sourced from modal's changelog.

0.73.18 (2025-02-06)

  • When using a parameterized class (with at least one modal.parameter() specified), class instantiation with an incorrect construction signature (wrong arguments or types) will now fail at the .remote() calling site instead of container startup for the called class.

0.73.14 (2025-02-04)

  • Fixed the status message shown in terminal logs for ephemeral Apps to accurately report the number of active containers.

0.73.11 (2025-02-04)

  • Warns users if the modal.Image of a Function/Cls doesn't include all the globally imported "local" modules (using .add_local_python_source()), and the user hasn't explicitly set an include_source value of True/False. This is in preparation for an upcoming deprecation of the current "auto mount" logic.

0.73.10 (2025-02-04)

  • Modal functions, methods and entrypoints can now accept variable-length arguments to skip Modal's default CLI parsing. This is useful if you want to use Modal with custom argument parsing via argparse or HfArgumentParser. For example, the following function can be invoked with modal run my_file.py --foo=42 --bar="baz":

    import argparse
    @​app.function()
    def train(*arglist):
    parser = argparse.ArgumentParser()
    parser.add_argument("--foo", type=int)
    parser.add_argument("--bar", type=str)
    args = parser.parse_args(args = arglist)


0.73.1 (2025-01-30)

  • modal run now runs a single local entrypoints/function in the selected module. If exactly one local entrypoint or function exists in the selected module, the user doesn't have to qualify the runnable in the modal run command, even if some of the module's referenced apps have additional local entrypoints or functions. This partially restores "auto-inferred function" functionality that was changed in v0.72.48.

0.73.0 (2025-01-30)

  • Introduces an include_source argument in the App.function and App.cls decorators that let users configure which class of python packages are automatically included as source mounts in created modal functions/classes (what we used to call "automount" behavior). This will supersede the MODAL_AUTOMOUNT configuration value which will eventually be deprecated. As a convenience, the modal.App constructor will also accept an include_source argument which serves as the default for all the app's functions and classes.

    The include_source argument accepts the following values:

    • True (default in a future version of Modal) Automatically includes the Python files of the source package of the function's own home module, but not any other local packages. Roughly equivalent ot MODAL_AUTOMOUNT=0 in previous versions of Modal.
    • False - don't include any local source. Assumes the function's home module is importable in the container environment through some other means (typically added to the provided modal.Image's Python environment).
    • None (the default) - use current soon-to-be-deprecated automounting behavior, including source of all first party packages that are not installed into site-packages locally. </tr></table>

... (truncated)

Commits
  • 0419c36 [auto-commit] [skip ci] Bump the build number
  • 9e5aecd Use parameter info to validate parameters on instance creation (#2826)
  • c3272e6 [auto-commit] [skip ci] Bump the build number
  • 6c13e4c Add lifespan exception trace (#2839)
  • e9f3958 [auto-commit] [skip ci] Bump the build number
  • 08e7ea2 Add root_function_id to TaskLogsBatch (#2828)
  • fa794cc [auto-commit] [skip ci] Bump the build number
  • 0c6ad30 Brings mock servicer to rpc parity for Function.remote() (#2833)
  • 7dbbd83 [auto-commit] [skip ci] Bump the build number
  • db35216 Fix the task count status text (#2835)
  • Additional commits viewable in compare view

Updates runloop-api-client from 0.19.0 to 0.22.0

Release notes

Sourced from runloop-api-client's releases.

v0.22.0

0.22.0 (2025-02-04)

Full Changelog: v0.21.0...v0.22.0

Features

v0.21.0

0.21.0 (2025-02-04)

Full Changelog: v0.20.0...v0.21.0

Features

v0.20.0

0.20.0 (2025-02-04)

Full Changelog: v0.19.0...v0.20.0

Features

  • add helpers for blueprint and scenario run creation (b00a7c1)
  • api: api update (#526) (be26ed7)

Chores

  • internal: bummp ruff dependency (#525) (84051db)
  • internal: change default timeout to an int (#524) (a15ccaa)
Changelog

Sourced from runloop-api-client's changelog.

0.22.0 (2025-02-04)

Full Changelog: v0.21.0...v0.22.0

Features

0.21.0 (2025-02-04)

Full Changelog: v0.20.0...v0.21.0

Features

0.20.0 (2025-02-04)

Full Changelog: v0.19.0...v0.20.0

Features

  • add helpers for blueprint and scenario run creation (b00a7c1)
  • api: api update (#526) (be26ed7)

Chores

  • internal: bummp ruff dependency (#525) (84051db)
  • internal: change default timeout to an int (#524) (a15ccaa)
Commits

Updates llama-index from 0.12.15 to 0.12.16

Changelog

Sourced from llama-index's changelog.

llama-index-core [0.12.16]

  • Be more lenient with leading whitespaces emitted by some models when doing ReAct (#17701)
  • Fix user_msg vs chat_history AgentWorkflow inputs (#17690)

llama-index-embeddings-oci-data-science [0.1.0]

  • Add OCI Data Science Model Deployment Embedding Integration (#17243)

llama-index-embeddings-vllm [0.1.0]

  • Add vLLM offline inference supports for embedding (#17675)

llama-index-embeddings-voyageai [0.3.5]

  • small async voyageai fix (#17698)

llama-index-llms-gemini [0.4.7]

  • gemini 2.0 support (#17720)
  • feat: support basic function call for gemini (google-generativeai) (#17696)

llama-index-llms-oci-data-science [0.1.0]

  • Add OCI Data Science Model Deployment LLM Integration (#17241)

llama-index-llms-oci-genai [0.3.1]

  • Option to pass auth_file_location, in-order to overwrite default config file location i.e. ~/.oci/config (#17695)

llama-index-llms-ollama [0.5.1]

  • fix: avoid missing tool calls while streaming

llama-index-llms-openai [0.3.17]

  • fix: max_tokens in O1 (#17703)
  • o3 mini support (#17689)
  • fix max_tokens, add reasoning_effort for openai reasoning models (#17694)

llama-index-readers-obsidian [0.5.0]

  • Improved Obsidian Reader (#17699)

llama-index-tools-scrapegraph [0.1.1]

  • feat: add new scrapegraph endpoint (#17709)

[2025-01-31]

Commits
  • 5320a19 v0.12.16 (#17722)
  • 51c1c36 feat: add new scrapegraph endpoint (#17709)
  • f938a1b feat: support basic function call for gemini (google-generativeai) (#17696)
  • ec4dc2c gemini 2.0 support (#17720)
  • 7391f30 Add OCI Data Science Model Deployment LLM Integration (#17241)
  • 659f9fa [oci-genai] Option to pass auth_file_location, in-order to overwrite default ...
  • 64e862d Add OCI Data Science Model Deployment Embedding Integration (#17243)
  • 79440f2 Improved Obsidian Reader (#17699)
  • 2e07dce Add vLLM offline inference supports for embedding (#17675)
  • 0301a9a Be more lenient with leading whitespaces emitted by some models when doing Re...
  • Additional commits viewable in compare view

Updates mypy from 1.14.1 to 1.15.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next Release

...

Mypy 1.15

We’ve just uploaded mypy 1.15 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features, performance improvements and bug fixes. You can install it as follows:

python3 -m pip install -U mypy

You can read the full documentation for this release on Read the Docs.

Performance Improvements

Mypy is up to 40% faster in some use cases. This improvement comes largely from tuning the performance of the garbage collector. Additionally, the release includes several micro-optimizations that may be impactful for large projects.

Contributed by Jukka Lehtosalo

Mypyc Accelerated Mypy Wheels for ARM Linux

For best performance, mypy can be compiled to C extension modules using mypyc. This makes mypy 3-5x faster than when interpreted with pure Python. We now build and upload mypyc accelerated mypy wheels for manylinux_aarch64 to PyPI, making it easy for Linux users on ARM platforms to realise this speedup -- just pip install the latest mypy.

Contributed by Christian Bundy and Marc Mueller (PR mypy_mypyc-wheels#76, PR mypy_mypyc-wheels#89).

--strict-bytes

By default, mypy treats bytearray and memoryview values as assignable to the bytes type, for historical reasons. Use the --strict-bytes flag to disable this behavior. PEP 688 specified the removal of this special case. The flag will be enabled by default in mypy 2.0.

Contributed by Ali Hamdan (PR 18263) and Shantanu Jain (PR 13952).

Improvements to Reachability Analysis and Partial Type Handling in Loops

... (truncated)

Commits
  • 9397454 remove +dev from version ahead of final release
  • 686b591 remove "unreleased" from 1.15 changelog entry
  • cb4b243 Various small updates to 1.15 changelog (#18599)
  • 1a26502 Prepare changelog for 1.15 release (#18583)
  • d4515e4 Fix a few PR links in the changelog (#18586)
  • f83b643 Add object self-type to tuple test fixture (#18592)
  • ebc2cb8 Prevent crash on generic NamedTuple with unresolved typevar bound (#18585)
  • 63c251e empty commit to trigger wheel rebuild
  • c30573e Fix literal context for ternary expressions (for real) (#18545)
  • 23d862d Fix isinstance with explicit (non generic) type alias (#18512)
  • Additional commits viewable in compare view

Updates openai from 1.61.0 to 1.61.1

Release notes

Sourced from openai's releases.

v1.61.1

1.61.1 (2025-02-05)

Full Changelog: v1.61.0...v1.61.1

Bug Fixes

  • api/types: correct audio duration & role types (#2091) (afcea48)
  • cli/chat: only send params when set (#2077) (688b223)

Chores

Changelog

Sourced from openai's changelog.

1.61.1 (2025-02-05)

Full Changelog: v1.61.0...v1.61.1

Bug Fixes

  • api/types: correct audio duration & role types (#2091) (afcea48)
  • cli/chat: only send params when set (#2077) (688b223)

Chores

Commits

Updates streamlit from 1.41.1 to 1.42.0

Release notes

Sourced from streamlit's releases.

1.42.0

What's Changed

New Features 🎉

Bug Fixes 🐛

... (truncated)

Commits

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

…ates

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

| Package | From | To |
| --- | --- | --- |
| [litellm](https://github.com/BerriAI/litellm) | `1.60.2` | `1.60.5` |
| [boto3](https://github.com/boto/boto3) | `1.36.12` | `1.36.14` |
| [modal](https://github.com/modal-labs/modal-client) | `0.73.12` | `0.73.18` |
| [runloop-api-client](https://github.com/runloopai/api-client-python) | `0.19.0` | `0.22.0` |
| [llama-index](https://github.com/run-llama/llama_index) | `0.12.15` | `0.12.16` |
| [mypy](https://github.com/python/mypy) | `1.14.1` | `1.15.0` |
| [openai](https://github.com/openai/openai-python) | `1.61.0` | `1.61.1` |
| [streamlit](https://github.com/streamlit/streamlit) | `1.41.1` | `1.42.0` |



Updates `litellm` from 1.60.2 to 1.60.5
- [Release notes](https://github.com/BerriAI/litellm/releases)
- [Commits](https://github.com/BerriAI/litellm/commits)

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

Updates `modal` from 0.73.12 to 0.73.18
- [Changelog](https://github.com/modal-labs/modal-client/blob/main/CHANGELOG.md)
- [Commits](modal-labs/modal-client@v0.73.12...v0.73.18)

Updates `runloop-api-client` from 0.19.0 to 0.22.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.19.0...v0.22.0)

Updates `llama-index` from 0.12.15 to 0.12.16
- [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.15...v0.12.16)

Updates `mypy` from 1.14.1 to 1.15.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.14.1...v1.15.0)

Updates `openai` from 1.61.0 to 1.61.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.61.0...v1.61.1)

Updates `streamlit` from 1.41.1 to 1.42.0
- [Release notes](https://github.com/streamlit/streamlit/releases)
- [Commits](streamlit/streamlit@1.41.1...1.42.0)

---
updated-dependencies:
- dependency-name: litellm
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-all
- 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: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-all
- dependency-name: openai
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: streamlit
  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 6, 2025
Copy link
Collaborator

@enyst enyst left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This downgrades the format from poetry 2.0.0 to 1.8.5. I want to think about this a bit.

Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 7, 2025

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

@dependabot dependabot bot closed this Feb 7, 2025
@dependabot dependabot bot deleted the dependabot/pip/version-all-14406a7e2e branch February 7, 2025 15:19
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