Skip to content

Commit

Permalink
Merge pull request #889 from sirosen/release-3.30.0
Browse files Browse the repository at this point in the history
Release v3.30.0
  • Loading branch information
sirosen authored Oct 27, 2023
2 parents 60206bd + a0b7e6f commit 841f214
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 21 deletions.
5 changes: 0 additions & 5 deletions changelog.d/20231016_114115_sirosen_add_ls_params.rst

This file was deleted.

9 changes: 0 additions & 9 deletions changelog.d/20231025_122826_sirosen_introduce_missingtype.rst

This file was deleted.

5 changes: 0 additions & 5 deletions changelog.d/20231025_125551_sirosen_introduce_missingtype.rst

This file was deleted.

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

.. scriv-insert-here
.. _changelog-3.30.0:

v3.30.0 (2023-10-27)
--------------------

Added
~~~~~

- ``TransferClient.operation_ls`` now supports the ``limit`` and ``offset``
parameters (:pr:`868`)

- A new sentinel value, ``globus_sdk.MISSING``, has been introduced.
It is used for method calls which need to distinguish missing parameters from
an explicit ``None`` used to signify ``null`` (:pr:`885`)

- ``globus_sdk.MISSING`` is now supported in payload data for all methods, and
will be automatically removed from the payload before sending to the server

Changed
~~~~~~~

- ``GroupPolicies`` objects now treat an explicit instantiation with
``high_assurance_timeout=None`` as setting the timeout to ``null`` (:pr:`885`)

.. _changelog-3.29.0:

v3.29.0 (2023-10-12)
Expand Down
2 changes: 1 addition & 1 deletion src/globus_sdk/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def __repr__(self) -> str:
# users should typically not use this value directly, but it is part of the public SDK
# interfaces along with its type for annotation purposes
#
# *new after v3.29.0*
# *new in version 3.30.0*
MISSING = MissingType()


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.29.0"
__version__ = "3.30.0"

0 comments on commit 841f214

Please sign in to comment.