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 4 updates #6604

Merged
merged 2 commits into from
Feb 4, 2025

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the version-all group with 4 updates: litellm, boto3, modal and runloop-api-client.

Updates litellm from 1.60.0 to 1.60.2

Commits

Updates boto3 from 1.36.11 to 1.36.12

Commits
  • e3e8eb7 Merge branch 'release-1.36.12'
  • 62729d8 Bumping version to 1.36.12
  • a649760 Add changelog entries from botocore
  • f5b8456 Merge pull request #4421 from boto/dependabot/github_actions/actions/setup-py...
  • f65afdd Merge pull request #4422 from boto/dependabot/github_actions/aws-actions/clos...
  • e8f20a4 Merge pull request #4423 from boto/dependabot/github_actions/aws-actions/stal...
  • 06fc753 Bump aws-actions/stale-issue-cleanup
  • 45509a4 Bump aws-actions/closed-issue-message
  • 384ed11 Bump actions/setup-python from 5.3.0 to 5.4.0
  • 1a38da9 Merge branch 'release-1.36.11' into develop
  • See full diff in compare view

Updates modal from 0.73.8 to 0.73.12

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.

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

Latest

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
  • ab60e38 [auto-commit] [skip ci] Bump the build number
  • bcf8da8 Remove --timeout parameter when calling GPU checkpointing (#2832)
  • 643645b [auto-commit] [skip ci] Bump the build number
  • bdf0bd9 Adds warnings if automounts seem to be required (#2667)
  • 161fbfd [auto-commit] [skip ci] Bump the build number
  • 6951dc1 Accept variable-length arguments for custom argument parsing (#2807)
  • c85b71a [auto-commit] [skip ci] Bump the build number
  • 76a3f59 Adds experimental support for GPU memory snapshots (#2829)
  • See full diff in compare view

Updates runloop-api-client from 0.18.0 to 0.19.0

Release notes

Sourced from runloop-api-client's releases.

v0.19.0

0.19.0 (2025-02-03)

Full Changelog: v0.18.0...v0.19.0

Features

Changelog

Sourced from runloop-api-client's changelog.

0.19.0 (2025-02-03)

Full Changelog: v0.18.0...v0.19.0

Features

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

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:e43aa35-nikolaik   --name openhands-app-e43aa35   docker.all-hands.dev/all-hands-ai/openhands:e43aa35

Bumps the version-all group with 4 updates: [litellm](https://github.com/BerriAI/litellm), [boto3](https://github.com/boto/boto3), [modal](https://github.com/modal-labs/modal-client) and [runloop-api-client](https://github.com/runloopai/api-client-python).


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

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

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

Updates `runloop-api-client` from 0.18.0 to 0.19.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.18.0...v0.19.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
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Feb 4, 2025
@enyst enyst enabled auto-merge (squash) February 4, 2025 17:06
@enyst enyst merged commit 7c16ca8 into main Feb 4, 2025
14 checks passed
@enyst enyst deleted the dependabot/pip/version-all-637586269f branch February 4, 2025 17:39
zchn pushed a commit to zchn/OpenHands that referenced this pull request Feb 4, 2025
…6604)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Engel Nyst <enyst@users.noreply.github.com>
adityasoni9998 pushed a commit to adityasoni9998/OpenHands that referenced this pull request Feb 7, 2025
…6604)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Engel Nyst <enyst@users.noreply.github.com>
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