Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 27, 2025

Bumps the python-updates group with 1 update: globus-compute-sdk.

Updates globus-compute-sdk from 3.16.1 to 4.0.0

Release notes

Sourced from globus-compute-sdk's releases.

4.0.0

What's Changed

Full Changelog: globus/globus-compute@3.16.1...4.0.0

Changelog

Sourced from globus-compute-sdk's changelog.

globus-compute-sdk & globus-compute-endpoint v4.0.0

New Functionality ^^^^^^^^^^^^^^^^^

  • With this release, we are moving from the existing "Multi-User Endpoint" / "Single-User Endpoint" dichotomy to a unified model where every endpoint supports configuration templates.

  • Existing endpoints that do not support configuration templates can be migrated using the new migrate-to-template-capable command in the globus-compute-endpoint CLI.

  • Created the :class:~globus_compute_sdk.serialize.AllCodeStrategies serialization strategy to replace :class:~globus_compute_sdk.serialize.CombinedCode. This new combination strategy attempts each sub-strategy on a given Python function in a specific order to minimize deserialization issues.

  • Created the :class:~globus_compute_sdk.serialize.AllDataStrategies serialization strategy to serialize Python objects by attempting multiple strategies in sequence. As with :class:~globus_compute_sdk.serialize.AllCodeStrategies, it tries the simpler strategy (:class:~globus_compute_sdk.serialize.JSONData) first.

  • Added a return_dict argument to the :class:~globus_compute_sdk.ShellFunction class constructor that indicates whether to return a JSON-serializable dict (True) or a :class:~globus_compute_sdk.ShellResult object (False). The default is False.

    Example:

    .. code-block:: python :emphasize-lines: 3, 8

    from globus_compute_sdk import Executor, ShellFunction

    func = ShellFunction("echo '{message}'", return_dict=True) with Executor(endpoint_id="...") as ex: for msg in ("hello", "hola", "bonjour"): fut = ex.submit(func, message=msg) res = future.result() assert isinstance(res, dict) assert msg in res["stdout"]

  • The globus-compute-diagnostic command now also include a summary of disk usage for each endpoint in the Globus Compute home directory (default ~/.globus_compute)

Bug Fixes ^^^^^^^^^

... (truncated)

Commits
  • de52d14 Bump versions for release of 4.0.0
  • 5d18328 Bump versions for 4.0.0a2 alpha release
  • 4b46c71 Use length delimiters for combo strategies
  • ead258f Bump versions for alpha release 4.0.0a1
  • 1418bd2 Recommend AllCodeStrategies
  • 1718a73 Revert changes to default serialization strategies
  • 07aa0a3 Merge pull request #1969 from globus/v3.16.1
  • 5ab4204 Resolve merge conflicts with main
  • 4034c67 Merge branch 'main' into v3.16.1
  • fa8d228 Merge pull request #1966 from globus/consistent_dill_version-sc-45288
  • Additional commits viewable in compare view

Dependabot compatibility score

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 python-updates group with 1 update: [globus-compute-sdk](https://github.com/globus/globus-compute).


Updates `globus-compute-sdk` from 3.16.1 to 4.0.0
- [Release notes](https://github.com/globus/globus-compute/releases)
- [Changelog](https://github.com/globus/globus-compute/blob/main/docs/changelog.rst)
- [Commits](globus/globus-compute@3.16.1...4.0.0)

---
updated-dependencies:
- dependency-name: globus-compute-sdk
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-updates
...

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 Oct 27, 2025
@codecov
Copy link

codecov bot commented Oct 27, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 78.08%. Comparing base (d74e5f1) to head (2967160).
⚠️ Report is 5 commits behind head on develop.

Additional details and impacted files
@@             Coverage Diff             @@
##           develop    #1607      +/-   ##
===========================================
- Coverage    78.19%   78.08%   -0.11%     
===========================================
  Files           76       76              
  Lines         7580     7580              
  Branches      1119     1119              
===========================================
- Hits          5927     5919       -8     
- Misses        1452     1456       +4     
- Partials       201      205       +4     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

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