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

bump versions and collect changelog for V2.32.0 release #1738

Merged
merged 2 commits into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions changelog.d/20241114_172127_chris_remove_tty_checks.rst

This file was deleted.

This file was deleted.

This file was deleted.

9 changes: 0 additions & 9 deletions changelog.d/20241126_104747_LeiGlobus_bump_parsl_11_25.rst

This file was deleted.

2 changes: 1 addition & 1 deletion compute_endpoint/globus_compute_endpoint/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# single source of truth for package version,
# see https://packaging.python.org/en/latest/single_source_version/
__version__ = "2.31.0"
__version__ = "2.32.0"

# TODO: remove after a `globus-compute-sdk` release
# this is needed because it's imported by `globus-compute-sdk` to do the version check
Expand Down
2 changes: 1 addition & 1 deletion compute_endpoint/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
REQUIRES = [
"requests>=2.31.0,<3",
"globus-sdk", # version will be bounded by `globus-compute-sdk`
"globus-compute-sdk==2.31.0",
"globus-compute-sdk==2.32.0",
"globus-compute-common==0.5.0",
"globus-identity-mapping==0.4.0",
# table printing used in list-endpoints
Expand Down
2 changes: 1 addition & 1 deletion compute_sdk/globus_compute_sdk/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# single source of truth for package version,
# see https://packaging.python.org/en/latest/single_source_version/
__version__ = "2.31.0"
__version__ = "2.32.0"


def compare_versions(
Expand Down
34 changes: 34 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,40 @@ Changelog

.. scriv-insert-here

.. _changelog-2.32.0:

globus-compute-sdk & globus-compute-endpoint v2.32.0
----------------------------------------------------

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

- Added ipv6 support for GlobusComputeEngine by upgrading Parsl to 2024.11.25

Bug Fixes
^^^^^^^^^

- ``Client.logout()`` no longer raises an ``AttributeError``.

Changed
^^^^^^^

- Bumped dependency on ``globus-sdk-python`` to at least `version 3.47.0 <https://github.com/globus/globus-sdk-python/releases/tag/3.47.0>`_.
This version includes changes to detect ``EOFErrors`` when logging in with the command
line, obviating the need for existing ``globus-compute-sdk`` code that checks if a
user is in an interactive terminal before logging in. The old Compute code raised a
``RuntimeError`` in that scenario; the new code raises a
``globus_sdk.login_flows.CommandLineLoginFlowEOFError`` if Python's ``input``
function raises an ``EOFError`` - which, in Compute, can happen if a previously
command-line-authenticated endpoint tries to re-authenticate but no longer has access
to a STDIN.

- Bumped ``jsonschema`` version to at least 4.21, but relax the upper bound to
version 5 so as to allow other projects to coexist in the same virtual
environment more easily.

- Bumped ``parsl`` dependency version to `2024.11.25 <https://pypi.org/project/parsl/2024.11.25/>`_.

.. _changelog-2.31.0:

globus-compute-sdk & globus-compute-endpoint v2.31.0
Expand Down
Loading