Skip to content

Commit

Permalink
Merge pull request #902 from globus/release-3.32.0
Browse files Browse the repository at this point in the history
Release v3.32.0
  • Loading branch information
ada-globus authored Nov 10, 2023
2 parents 95e6854 + 0bdf926 commit 6962c60
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 69 deletions.
63 changes: 0 additions & 63 deletions changelog.d/20231103_125150_sirosen_auth_method_changelog.rst

This file was deleted.

This file was deleted.

75 changes: 75 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,81 @@ to a major new version of the SDK.

.. scriv-insert-here
.. _changelog-3.32.0:

v3.32.0 (2023-11-09)
--------------------

Added
~~~~~

.. note::
These changes pertain to methods of the client objects in the SDK which
interact with Globus Auth client registration.
To disambiguate, we refer to the Globus Auth entities below as "Globus Auth
clients" or specify "in Globus Auth", as appropriate.

- Globus Auth clients objects now have methods for interacting with client and
project APIs. (:pr:`884`)

- ``NativeAppAuthClient.create_native_app_instance`` creates a new native app
instance in Globus Auth for a client.

- ``ConfidentialAppAuthClient.create_child_client`` creates a child client in
Globus Auth for a confidential app.

- ``AuthClient.get_project`` looks up a project.

- ``AuthClient.get_policy`` looks up a policy document.

- ``AuthClient.get_policies`` lists all policies in all projects for which
the current user is an admin.

- ``AuthClient.create_policy`` creates a new policy.

- ``AuthClient.update_policy`` updates an existing policy.

- ``AuthClient.delete_policy`` deletes a policy.

- ``AuthClient.get_client`` looks up a Globus Auth client by ID or FQDN.

- ``AuthClient.get_clients`` lists all Globus Auth clients for which the
current user is an admin.

- ``AuthClient.create_client`` creates a new client in Globus Auth.

- ``AuthClient.update_client`` updates an existing client in Globus Auth.

- ``AuthClient.delete_client`` deletes a client in Globus Auth.

- ``AuthClient.get_client_credentials`` lists all client credentials for a
given Globus Auth client.

- ``AuthClient.create_client_credential`` creates a new client credential for
a given Globus Auth client.

- ``AuthClient.delete_client_credential`` deletes a client credential.

- ``AuthClient.get_scope`` looks up a scope.

- ``AuthClient.get_scopes`` lists all scopes in all projects for which the
current user is an admin.

- ``AuthClient.create_scope`` creates a new scope.

- ``AuthClient.update_scope`` updates an existing scope.

- ``AuthClient.delete_scope`` deletes a scope.

- A helper object has been defined for dependent scope manipulation via the
scopes APIs, ``globus_sdk.DependentScopeSpec`` (:pr:`884`)

Fixed
~~~~~

- When serializing ``TransferTimer`` data, do not convert to UTC if the input
was a valid datetime with an offset. (:pr:`900`)

.. _changelog-3.31.0:

v3.31.0 (2023-11-01)
Expand Down
2 changes: 1 addition & 1 deletion src/globus_sdk/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# single source of truth for package version,
# see https://packaging.python.org/en/latest/single_source_version/
__version__ = "3.31.0"
__version__ = "3.32.0"

0 comments on commit 6962c60

Please sign in to comment.