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 with 7 updates #7743

Merged
merged 1 commit into from
Apr 7, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 7, 2025

Bumps the version-all group with 7 updates:

Package From To
litellm 1.65.3 1.65.4
boto3 1.37.27 1.37.28
modal 0.73.142 0.73.145
daytona-sdk 0.12.0 0.12.1
ruff 0.11.3 0.11.4
pytest-cov 6.1.0 6.1.1
boto3-stubs 1.37.27 1.37.28

Updates litellm from 1.65.3 to 1.65.4

Release notes

Sourced from litellm's releases.

v1.65.4-stable

Docker Run LiteLLM Proxy

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

pip install LiteLLM Proxy

pip install litellm==1.65.4.post1

What's Changed

... (truncated)

Commits

Updates boto3 from 1.37.27 to 1.37.28

Commits
  • 0b2c547 Merge branch 'release-1.37.28'
  • 7c64b94 Bumping version to 1.37.28
  • 4c3ddf7 Add changelog entries from botocore
  • c4a81c6 Merge branch 'release-1.37.27' into develop
  • See full diff in compare view

Updates modal from 0.73.142 to 0.73.145

Changelog

Sourced from modal's changelog.

Changelog

This changelog documents user-facing updates (features, enhancements, fixes, and deprecations) to the modal client library. Patch releases are made on every change.

The client library is still in pre-1.0 development, and sometimes breaking changes are necessary. We try to minimize them and publish deprecation warnings / migration guides in advance, typically providing a transition window of several months.

You can also refer to the 1.0 migration guide for a summary of major breaking changes that we are rolling out before releasing version 1.0.

We appreciate your patience while we speedily work towards a stable release of the client.

Latest

0.73.144 (2025-04-04)

  • Adds a context_dir parameter to modal.Image.from_dockerfile and modal.Image.dockerfile_commands. This parameter can be used to provide a local reference for relative COPY commands.

0.73.139 (2025-04-02)

  • Added modal.experimental.ipython module, which can be loaded in Jupyter notebooks with %load_ext modal.experimental.ipython. Currently it provides the %modal line magic for looking up functions:

    %modal from main/my-app import my_function, MyClass as Foo
    Now you can use my_function() and Foo in your notebook.
    my_function.remote()
    Foo().my_method.remote()

  • Removed the legacy modal.extensions.ipython module from 2022.

0.73.135 (2025-03-29)

  • Fix shutdown race bug that emitted spurious error-level logs.

0.73.132 (2025-03-28)

  • Adds the @modal.concurrent decorator, which will be replacing the beta allow_concurrent_inputs= parameter of @app.function and @app.cls for enabling input concurrency. Notably, @modal.concurrent introduces a distinction between max_inputs and target_inputs, allowing containers to burst over the concurrency level targeted by the Modal autoscaler during periods of high load.

0.73.131 (2025-03-28)

  • Instantiation of classes using keyword arguments that are not defined as as modal.parameter() will now raise an error on the calling side rather than in the receiving container. Note that this only applies if there is at least one modal.parameter() defined on the class, but this will likely apply to parameter-less classes in the future as well.

... (truncated)

Commits
  • e6b1d0e [auto-commit] [skip ci] Bump the build number
  • d6f7843 Add experimental functions for building Image without client dependencies (#3...
  • 41d5018 [auto-commit] [skip ci] Bump the build number
  • d3f70c8 Add context_dir to Docker-oriented Image methods (#3002)
  • da56e6c [auto-commit] [skip ci] Bump the build number
  • 1eee221 Honor max_inputs_outstanding field in FunctionMapResponse (#3000)
  • See full diff in compare view

Updates daytona-sdk from 0.12.0 to 0.12.1

Updates ruff from 0.11.3 to 0.11.4

Release notes

Sourced from ruff's releases.

0.11.4

Release Notes

Preview features

  • [ruff] Implement invalid-rule-code as RUF102 (#17138)
  • [syntax-errors] Detect duplicate keys in match mapping patterns (#17129)
  • [syntax-errors] Detect duplicate attributes in match class patterns (#17186)
  • [syntax-errors] Detect invalid syntax in annotations (#17101)

Bug fixes

  • [syntax-errors] Fix multiple assignment error for class fields in match patterns (#17184)
  • Don't skip visiting non-tuple slice in typing.Annotated subscripts (#17201)

Contributors

Install ruff 0.11.4

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/ruff/releases/download/0.11.4/ruff-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/astral-sh/ruff/releases/download/0.11.4/ruff-installer.ps1 | iex"

Download ruff 0.11.4

File Platform Checksum
ruff-aarch64-apple-darwin.tar.gz Apple Silicon macOS checksum
ruff-x86_64-apple-darwin.tar.gz Intel macOS checksum
ruff-aarch64-pc-windows-msvc.zip ARM64 Windows checksum
ruff-i686-pc-windows-msvc.zip x86 Windows checksum

... (truncated)

Changelog

Sourced from ruff's changelog.

0.11.4

Preview features

  • [ruff] Implement invalid-rule-code as RUF102 (#17138)
  • [syntax-errors] Detect duplicate keys in match mapping patterns (#17129)
  • [syntax-errors] Detect duplicate attributes in match class patterns (#17186)
  • [syntax-errors] Detect invalid syntax in annotations (#17101)

Bug fixes

  • [syntax-errors] Fix multiple assignment error for class fields in match patterns (#17184)
  • Don't skip visiting non-tuple slice in typing.Annotated subscripts (#17201)
Commits
  • 95d6ed4 Bump 0.11.4 (#17212)
  • acc5662 [syntax-errors] Allow yield in base classes and annotations (#17206)
  • 33a56f1 Don't skip visiting non-tuple slice in typing.Annotated subscripts (#17201)
  • 5cee346 [red-knot] mypy_primer: do not specify Python version (#17200)
  • ffa824e [red-knot] Add Type.definition method (#17153)
  • 98b95c9 Implement Invalid rule provided as rule RUF102 with --fix (#17138)
  • a4ba10f [red-knot] Add basic on-hover to playground and LSP (#17057)
  • bf03068 [red-knot] don't remove negations when simplifying constrained typevars (#17189)
  • 4f924bb [minor] Fix extra semicolon for clippy (#17188)
  • c2b2e42 [syntax-errors] Invalid syntax in annotations (#17101)
  • Additional commits viewable in compare view

Updates pytest-cov from 6.1.0 to 6.1.1

Changelog

Sourced from pytest-cov's changelog.

6.1.1 (2025-04-05)

  • Fixed breakage that occurs when --cov-context and the no_cover marker are used together.
Commits
  • 9463242 Bump version: 6.1.0 → 6.1.1
  • 7f2781b Update changelog.
  • a59548f Allow the context plugin to check if the controller is running or not. Fixes ...
  • See full diff in compare view

Updates boto3-stubs from 1.37.27 to 1.37.28

Release notes

Sourced from boto3-stubs's releases.

8.8.0 - Python 3.8 runtime is back

Changed

  • [services] install_requires section is calculated based on dependencies in use, so typing-extensions version is set properly
  • [all] Replaced typing imports with collections.abc with a fallback to typing for Python <3.9
  • [all] Added aliases for builtins.list, builtins.set, builtins.dict, and builtins.type, so Python 3.8 runtime should work as expected again (reported by @​YHallouard in #340 and @​Omri-Ben-Yair in #336)
  • [all] Unions use the same type annotations as the rest of the structures due to proper fallbacks

Fixed

  • [services] Universal input/output shapes were not replaced properly in service subresources
  • [docs] Simplified doc links rendering for services
  • [services] Cleaned up unnecessary imports in client.pyi
  • [builder] Import records with fallback are always rendered
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

Bumps the version-all group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [litellm](https://github.com/BerriAI/litellm) | `1.65.3` | `1.65.4` |
| [boto3](https://github.com/boto/boto3) | `1.37.27` | `1.37.28` |
| [modal](https://github.com/modal-labs/modal-client) | `0.73.142` | `0.73.145` |
| daytona-sdk | `0.12.0` | `0.12.1` |
| [ruff](https://github.com/astral-sh/ruff) | `0.11.3` | `0.11.4` |
| [pytest-cov](https://github.com/pytest-dev/pytest-cov) | `6.1.0` | `6.1.1` |
| [boto3-stubs](https://github.com/youtype/mypy_boto3_builder) | `1.37.27` | `1.37.28` |


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

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

Updates `modal` from 0.73.142 to 0.73.145
- [Changelog](https://github.com/modal-labs/modal-client/blob/main/CHANGELOG.md)
- [Commits](modal-labs/modal-client@v0.73.142...v0.73.145)

Updates `daytona-sdk` from 0.12.0 to 0.12.1

Updates `ruff` from 0.11.3 to 0.11.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.11.3...0.11.4)

Updates `pytest-cov` from 6.1.0 to 6.1.1
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-cov@v6.1.0...v6.1.1)

Updates `boto3-stubs` from 1.37.27 to 1.37.28
- [Release notes](https://github.com/youtype/mypy_boto3_builder/releases)
- [Commits](https://github.com/youtype/mypy_boto3_builder/commits)

---
updated-dependencies:
- dependency-name: litellm
  dependency-version: 1.65.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: boto3
  dependency-version: 1.37.28
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: modal
  dependency-version: 0.73.145
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: daytona-sdk
  dependency-version: 0.12.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: ruff
  dependency-version: 0.11.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: pytest-cov
  dependency-version: 6.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-all
- dependency-name: boto3-stubs
  dependency-version: 1.37.28
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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 Apr 7, 2025
@enyst enyst enabled auto-merge (squash) April 7, 2025 16:53
@enyst enyst merged commit 69d4a8d into main Apr 7, 2025
24 checks passed
@enyst enyst deleted the dependabot/pip/version-all-56b150d6fc branch April 7, 2025 17:21
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