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 5 updates #6547

Merged
merged 1 commit into from
Jan 30, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 30, 2025

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

Package From To
fastapi 0.115.7 0.115.8
boto3 1.36.8 1.36.9
modal 0.72.58 0.73.2
runloop-api-client 0.13.0 0.15.0
jupyterlab 4.3.4 4.3.5

Updates fastapi from 0.115.7 to 0.115.8

Release notes

Sourced from fastapi's releases.

0.115.8

Fixes

  • 🐛 Fix OAuth2PasswordRequestForm and OAuth2PasswordRequestFormStrict fixed grant_type "password" RegEx. PR #9783 by @​skarfie123.

Refactors

Docs

Translations

  • 🌐 Add Japanese translation for docs/ja/docs/environment-variables.md. PR #13226 by @​k94-ishi.
  • 🌐 Add Russian translation for docs/ru/docs/advanced/async-tests.md. PR #13227 by @​Rishat-F.
  • 🌐 Update Russian translation for docs/ru/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md. PR #13252 by @​Rishat-F.
  • 🌐 Add Russian translation for docs/ru/docs/tutorial/bigger-applications.md. PR #13154 by @​alv2017.

Internal

  • ⬆️ Add support for Python 3.13. PR #13274 by @​tiangolo.
  • ⬆️ Upgrade AnyIO max version for tests, new range: >=3.2.1,<5.0.0. PR #13273 by @​tiangolo.
  • 🔧 Update Sponsors badges. PR #13271 by @​tiangolo.
  • ♻️ Fix notify_translations.py empty env var handling for PR label events vs workflow_dispatch. PR #13272 by @​tiangolo.
  • ♻️ Refactor and move scripts/notify_translations.py, no need for a custom GitHub Action. PR #13270 by @​tiangolo.
  • 🔨 Update FastAPI People Experts script, refactor and optimize data fetching to handle rate limits. PR #13267 by @​tiangolo.
  • ⬆ Bump pypa/gh-action-pypi-publish from 1.12.3 to 1.12.4. PR #13251 by @​dependabot[bot].
Commits
  • 7128971 🔖 Release version 0.115.8
  • 55f8a44 📝 Update release notes
  • 83ab6ac 📝 Change the word "unwrap" to "unpack" in `docs/en/docs/tutorial/extra-models...
  • 3d02a92 📝 Update release notes
  • 1b00f8a ✅ Simplify tests for body_multiple_params (#13237)
  • d97647f 📝 Update release notes
  • 9667ce8 📝 Update Request Body's tutorial002 to deal with tax=0 case (#13230)
  • 0541693 📝 Update release notes
  • 041b2e1 📝 Update release notes
  • 30b270b ♻️ Move duplicated code portion to a static method in the APIKeyBase super ...
  • Additional commits viewable in compare view

Updates boto3 from 1.36.8 to 1.36.9

Commits

Updates modal from 0.72.58 to 0.73.2

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.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.
  • Minor change to MODAL_AUTOMOUNT=0: When running/deploying using a module path (e.g. modal run mypak.mymod), all non .pyc files of the source package (mypak in this case) are now included in the function's container. Previously, only the function's home .py module file + any __init__.py files in its package structure were included. Note that this is only for MODAL_AUTOMOUNT=0. To get full control over which source files are included with your functions, you can set include_source=False on your function (see above) and manually specify the files to include using the ignore argument to Image.add_local_python_source.

0.72.56 (2025-01-28)

  • Deprecated .lookup methods on Modal objects. Users are encouraged to use .from_name instead. In most cases this will be a simple name substitution. See the 1.0 migration guide for more information.

0.72.54 (2025-01-28)

  • Fixes bug introduced in v0.72.48 where modal run didn't work with files having global Function.from_name()/Function.lookup()/Cls.from_name()/Cls.lookup() calls.

0.72.48 (2025-01-24)

  • Fixes a CLI bug where you couldn't reference functions via a qualified app, e.g. mymodule::{app_variable}.{function_name}.
  • The modal run, modal serve and modal shell commands get more consistent error messages in cases where the passed app or function reference isn't resolvable to something that the current command expects.
  • Removes the deprecated __getattr__, __setattr__, __getitem__ and __setitem__ methods from modal.App

... (truncated)

Commits
  • 6ea9a9c [auto-commit] [skip ci] Bump the build number
  • 84b4545 Rename parameterized to parametrized everywhere (#2822)
  • bed8a5d [auto-commit] [skip ci] Bump the build number
  • 539ddf8 modal run now runs a single local entrypoints/function in target module (#2814)
  • c2c7a69 [auto-commit] [skip ci] Bump the build number
  • 7858ac1 include_source as in-source option replacing MODAL_AUTOMOUNT (#2804)
  • See full diff in compare view

Updates runloop-api-client from 0.13.0 to 0.15.0

Release notes

Sourced from runloop-api-client's releases.

v0.15.0

0.15.0 (2025-01-29)

Full Changelog: v0.14.0...v0.15.0

Features

v0.14.0

0.14.0 (2025-01-29)

Full Changelog: v0.13.0...v0.14.0

Features

Bug Fixes

  • tests: make test_get_platform less flaky (#500) (394d017)

Chores

Documentation

Changelog

Sourced from runloop-api-client's changelog.

0.15.0 (2025-01-29)

Full Changelog: v0.14.0...v0.15.0

Features

0.14.0 (2025-01-29)

Full Changelog: v0.13.0...v0.14.0

Features

Bug Fixes

  • tests: make test_get_platform less flaky (#500) (394d017)

Chores

Documentation

Commits

Updates jupyterlab from 4.3.4 to 4.3.5

Release notes

Sourced from jupyterlab's releases.

v4.3.5

4.3.5

(Full Changelog)

Bugs fixed

Documentation improvements

Contributors to this release

(GitHub contributors page for this release)

@​afshin | @​andreytaboola | @​bollwyvl | @​brichet | @​Darshan808 | @​davidbrochart | @​echarles | @​fcollonval | @​github-actions | @​hxrshxz | @​ianthomas23 | @​JasonWeill | @​jtpio | @​jupyterlab-probot | @​krassowski | @​lumberbot-app | @​meeseeksmachine | @​SylvainCorlay

Changelog

Sourced from jupyterlab's changelog.

4.3.5

(Full Changelog)

Bugs fixed

Documentation improvements

Contributors to this release

(GitHub contributors page for this release)

@​afshin | @​andreytaboola | @​bollwyvl | @​brichet | @​Darshan808 | @​davidbrochart | @​echarles | @​fcollonval | @​github-actions | @​hxrshxz | @​ianthomas23 | @​JasonWeill | @​jtpio | @​jupyterlab-probot | @​krassowski | @​lumberbot-app | @​meeseeksmachine | @​SylvainCorlay

Commits
  • 92c0e2d [ci skip] Publish 4.3.5
  • f8d4b0a Backport PR #17158: Fix scrolling and selection restoration on undo/redo (#17...
  • dc18c4d Backport PR #17238: Fix windowing crash due to out-of-bounds access (#17240)
  • fc34de7 Backport PR #17173 on branch 4.3.x (Increase color contrast of operators in c...
  • f2f1278 Backport PR #17214: Fix disabling Fuzzy Filtering in the File Browser (#17236)
  • 6cf9aa7 Backport PR #17220: Fix display of tooltip/title for terminal and kernel sess...
  • 4cf6083 Backport PR #17203: Fix for inconsistent tab closure in "Close All Tabs" oper...
  • d44d4cb Backport PR #17156: Fix emission of lastCell from notebook run actions (#17...
  • dfcf532 Backport PR #17195: Fix "running" prompt state with server-side execution (#1...
  • 81735b1 Backport PR #17153: Improve contrast for 'Add' button in Keyboard Shortcuts U...
  • Additional commits viewable in compare view

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 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [fastapi](https://github.com/fastapi/fastapi) | `0.115.7` | `0.115.8` |
| [boto3](https://github.com/boto/boto3) | `1.36.8` | `1.36.9` |
| [modal](https://github.com/modal-labs/modal-client) | `0.72.58` | `0.73.2` |
| [runloop-api-client](https://github.com/runloopai/api-client-python) | `0.13.0` | `0.15.0` |
| [jupyterlab](https://github.com/jupyterlab/jupyterlab) | `4.3.4` | `4.3.5` |



Updates `fastapi` from 0.115.7 to 0.115.8
- [Release notes](https://github.com/fastapi/fastapi/releases)
- [Commits](fastapi/fastapi@0.115.7...0.115.8)

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

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

Updates `runloop-api-client` from 0.13.0 to 0.15.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.13.0...v0.15.0)

Updates `jupyterlab` from 4.3.4 to 4.3.5
- [Release notes](https://github.com/jupyterlab/jupyterlab/releases)
- [Changelog](https://github.com/jupyterlab/jupyterlab/blob/@jupyterlab/[email protected]/CHANGELOG.md)
- [Commits](https://github.com/jupyterlab/jupyterlab/compare/@jupyterlab/[email protected]...@jupyterlab/[email protected])

---
updated-dependencies:
- dependency-name: fastapi
  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-minor
  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: jupyterlab
  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 Jan 30, 2025
@enyst enyst merged commit 8f881c4 into main Jan 30, 2025
26 checks passed
@enyst enyst deleted the dependabot/pip/version-all-a2f1285c25 branch January 30, 2025 16:52
zchn pushed a commit to zchn/OpenHands that referenced this pull request Feb 4, 2025
…ates (All-Hands-AI#6547)

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

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@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