Skip to content

Commit

Permalink
Bump versions and changelog for release v2.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rjmello committed Aug 21, 2024
1 parent a1b05eb commit bf39ee3
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 30 deletions.
13 changes: 0 additions & 13 deletions changelog.d/20240811_174452_chris_remove_whitelist.rst

This file was deleted.

This file was deleted.

9 changes: 0 additions & 9 deletions changelog.d/20240814_145223_30907815+rjmello.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.27.0a0"
__version__ = "2.27.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.27.0a0",
"globus-compute-sdk==2.27.0",
"globus-compute-common==0.4.1",
"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.27.0a0"
__version__ = "2.27.0"


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

.. scriv-insert-here
.. _changelog-2.27.0:

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

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

- Added ``Client.get_allowed_functions`` for retrieving the list of functions that are
allowed to be executed on an endpoint.

Removed
^^^^^^^

- The ``add_to_whitelist``, ``delete_from_whitelist``, and ``get_whitelist`` functions
have been removed from the ``Client``. Use the ``allowed_functions`` endpoint config
option instead of the add/remove functions, and ``Client.get_allowed_functions``
instead of ``get_whitelist``.

- Remove forgotten ``webockets`` dependency from setup requirements; the SDK
does not use the websockets library as of :ref:`v2.3.0 changelog-2.3.0`.

Deprecated
^^^^^^^^^^

- The ``HighThroughputEngine`` is now marked for deprecation. All users should migrate to
``GlobusComputeEngine``.

To help with migration, we suggest checking out our many `endpoint configuration examples
<https://globus-compute.readthedocs.io/en/stable/endpoints/endpoint_examples.html>`_, all
of which use ``GlobusComputeEngine``.

.. _changelog-2.26.0:

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

0 comments on commit bf39ee3

Please sign in to comment.