Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/has_changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with: # do a deep fetch to allow merge-base and diff
fetch-depth: 0
- name: check PR adds a news file
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_to_pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
id-token: write

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: "3.11"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_to_test_pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
id-token: write

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: "3.11"
Expand Down
16 changes: 0 additions & 16 deletions .github/workflows/readthedocs-pr-links.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/update_pr_references.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
update_pr_numbers_in_change_fragments:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
fetch-depth: 0
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
Expand Down
10 changes: 10 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,16 @@ Breaking Changes

- Updated MappedCollectionDoc and GuestCollectionDoc with MissingType. (:pr:`1189`)

.. _changelog-3.63.0:

v3.63.0 (2025-09-04)
====================
- Renamed the ``GroupsClient`` method ``set_subscription_admin_verified_id`` to
``set_subscription_admin_verified``. (:pr:`1302`)

- ``GroupsClient.set_subscription_admin_verified_id`` still exists but emits a
deprecation warning.

.. _changelog-3.62.0:

v3.62.0 (2025-07-31)
Expand Down
2 changes: 1 addition & 1 deletion src/globus_sdk/exc/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def __init__(self, r: requests.Response, *args: t.Any, **kwargs: t.Any) -> None:
self._parse_response()

if sys.version_info >= (3, 11):
self.add_note(
self.add_note( # pylint: disable=no-member
(
"This exception was caused by an API error. "
"The response body is as follows:\n\n"
Expand Down
2 changes: 1 addition & 1 deletion src/globus_sdk/services/groups/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ def batch_membership_action(
f"/v2/groups/{group_id}", data=actions, query_params=query_params
)

def set_subscription_admin_verified_id(
def set_subscription_admin_verified(
self,
group_id: uuid.UUID | str,
subscription_id: uuid.UUID | str | None,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
from globus_sdk.testing import get_last_request, load_response


def test_set_subscription_admin_verified_id(groups_client):
meta = load_response(groups_client.set_subscription_admin_verified_id).metadata
def test_set_subscription_admin_verified(groups_client):
meta = load_response(groups_client.set_subscription_admin_verified).metadata

res = groups_client.set_subscription_admin_verified_id(
res = groups_client.set_subscription_admin_verified(
group_id=meta["group_id"],
subscription_id=meta["subscription_id"],
)
Expand Down
Loading