Skip to content

Commit

Permalink
Bump versions and changelog for v2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rjmello committed Oct 12, 2023
1 parent 841ee17 commit 1bfa3e9
Show file tree
Hide file tree
Showing 11 changed files with 35 additions and 27 deletions.
5 changes: 0 additions & 5 deletions changelog.d/20230928_123020_30907815+rjmello_HEAD.rst

This file was deleted.

11 changes: 0 additions & 11 deletions changelog.d/20231002_152607_30907815+rjmello_HEAD.rst

This file was deleted.

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.5.0a0"
__version__ = "2.5.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.5.0a0",
"globus-compute-sdk==2.5.0",
"globus-compute-common==0.3.0a2",
# table printing used in list-endpoints
"texttable>=1.6.4,<2",
Expand Down
2 changes: 1 addition & 1 deletion compute_funcx/endpoint/funcx_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.5.0a0"
__version__ = "2.5.0"

VERSION = __version__

Expand Down
2 changes: 1 addition & 1 deletion compute_funcx/endpoint/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import find_packages, setup

REQUIRES = [
"globus-compute-endpoint==2.5.0a0",
"globus-compute-endpoint==2.5.0",
]

version_ns = {}
Expand Down
2 changes: 1 addition & 1 deletion compute_funcx/sdk/funcx/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.5.0a0"
__version__ = "2.5.0"

DEPRECATION_FUNCX = """
The funcX SDK has been renamed to Globus Compute SDK and the new package is
Expand Down
2 changes: 1 addition & 1 deletion compute_funcx/sdk/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import find_packages, setup

REQUIRES = [
"globus-compute-sdk==2.5.0a0",
"globus-compute-sdk==2.5.0",
]


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.5.0a0"
__version__ = "2.5.0"


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

.. scriv-insert-here
.. _changelog-2.5.0:

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

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

- Endpoint admins can now define a Globus authentication policy directly in an
endpoint's configuration or by using the ``--auth-policy`` flag when running
the ``globus-compute-endpoint configure`` command.

Users are evaluated against the policy when submitting tasks, retrieving endpoint
information, etc. For more information regarding Globus authentication policies,
visit https://docs.globus.org/api/auth/developer-guide/#authentication-policies.
Please note that we do not currently support HA policies.

Bug Fixes
^^^^^^^^^

- Defining ``worker_ports``, ``worker_port_range``, or ``interchange_port_range``
in an endpoint's YAML config no longer raises an error.

Security
^^^^^^^^

- Add a Dependabot config to keep GitHub action versions updated.

.. _changelog-2.4.0:

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

0 comments on commit 1bfa3e9

Please sign in to comment.