Skip to content

Commit

Permalink
Bump versions for 2.16.0 release, update release doc, and add auto ta…
Browse files Browse the repository at this point in the history
…g push
  • Loading branch information
LeiGlobus committed Mar 27, 2024
1 parent aff0ebc commit ea65883
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 35 deletions.
5 changes: 0 additions & 5 deletions changelog.d/20240306_142334_chris_login_command.rst

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions changelog.d/20240321_121200_kevin_update_parsl.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.15.0"
__version__ = "2.16.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.15.0",
"globus-compute-sdk==2.16.0",
"globus-compute-common==0.3.0",
"globus-identity-mapping==0.3.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.15.0"
__version__ = "2.16.0"


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

.. scriv-insert-here
.. _changelog-2.16.0:

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

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

- Added ``login`` command to ``globus-compute-endpoint`` CLI. This command triggers the
existing login flow that is automatically triggered when starting an endpoint.

- Added the following arguments to ``globus-compute-endpoint configure``, which allow
on-the-fly creation of Globus authentication policies while configuring Compute
endpoints. See ``globus-compute-endpoint configure --help`` for more details.

- ``--auth-policy-project-id``
- ``--auth-policy-display-name``
- ``--auth-policy-description``
- ``--allowed-domains``
- ``--excluded-domains``
- ``--auth-timeout``

Changed
^^^^^^^

- Endpoint ``LoginManager`` s now request the ``AuthScopes.manage_projects`` scope, in
order to create auth projects during the auth policy creation flow.

- The minimum version of ``globus-sdk`` that is compatible with ``globus-compute-sdk``
and ``globus-compute-endpoint`` is now 3.35.0.

- Update Parsl from ``2024.3.4`` to ``2024.3.18``

.. _changelog-2.15.0:

globus-compute-sdk & globus-compute-endpoint v2.15.0
Expand Down

0 comments on commit ea65883

Please sign in to comment.