diff --git a/changelog.adoc b/changelog.adoc index 3fb98b9f9..ff402fba3 100644 --- a/changelog.adoc +++ b/changelog.adoc @@ -2,6 +2,32 @@ // scriv-insert-here +== 3.19.0 (2023-11-10) + +Bugfixes: + +* Fix the rendering of timedeltas in CLI output for `globus timer` commands. + +Enhancements: + +* Add new commands to support pausing (`globus timer pause`) and resuming + (`globus timer resume`) **timers**. + +* A hint is now printed to stderr (interactive usage only) when + `globus flows run show-logs` is run on a **run** with the `INACTIVE` status, + informing users that the log will not grow until the **run** resumes. + +* **Timer** types (like "Transfer") are identified more accurately. + +* Show the status of the timer when running `globus timer delete`. + This clarifies whether the **timer** is immediately deleted or in a + `delete_pending` state. + +* `globus timer resume` and `globus flows run resume` have new functionality + for handling session-related errors (e.g. high-assurance timeouts), enabling + them to prompt the user in the event that a **timer** or **run** is inactive + due to a session error. + == 3.18.0 (2023-08-30) Bugfixes: diff --git a/changelog.d/20230822_165412_ada_sc_21799.md b/changelog.d/20230822_165412_ada_sc_21799.md deleted file mode 100644 index ba103066d..000000000 --- a/changelog.d/20230822_165412_ada_sc_21799.md +++ /dev/null @@ -1,4 +0,0 @@ -### Enhancements - -* Add new commands to support pausing (`globus timer pause`) and resuming - (`globus timer resume`) Timers jobs. diff --git a/changelog.d/20230912_151825_sirosen_warn_inactive_run_logs.md b/changelog.d/20230912_151825_sirosen_warn_inactive_run_logs.md deleted file mode 100644 index 1250b9ecb..000000000 --- a/changelog.d/20230912_151825_sirosen_warn_inactive_run_logs.md +++ /dev/null @@ -1,5 +0,0 @@ -### Enhancements - -* A hint is now printed to stderr (interactive usage only) when - `globus flows run show-logs` is run on a *run* with the `INACTIVE` status, - informing users that the log will not grow until the *run* resumes diff --git a/changelog.d/20231009_093456_sirosen_fix_test_warnings.md b/changelog.d/20231009_093456_sirosen_fix_test_warnings.md deleted file mode 100644 index 7d172bfec..000000000 --- a/changelog.d/20231009_093456_sirosen_fix_test_warnings.md +++ /dev/null @@ -1,3 +0,0 @@ -### Bugfixes - -* Fix the rendering of timedeltas in CLI output for `globus timer` commands diff --git a/changelog.d/20231017_170040_kurtmckee_id_transfer_timers_better.md b/changelog.d/20231017_170040_kurtmckee_id_transfer_timers_better.md deleted file mode 100644 index 945953d2b..000000000 --- a/changelog.d/20231017_170040_kurtmckee_id_transfer_timers_better.md +++ /dev/null @@ -1,3 +0,0 @@ -### Enhancements - -* Timer types (like "Transfer") are identified more accurately. diff --git a/changelog.d/20231023_074126_kurtmckee_show_deleted_timer_status.md b/changelog.d/20231023_074126_kurtmckee_show_deleted_timer_status.md deleted file mode 100644 index 256f36288..000000000 --- a/changelog.d/20231023_074126_kurtmckee_show_deleted_timer_status.md +++ /dev/null @@ -1,5 +0,0 @@ -### Enhancements - -* Show the status of the timer when running `globus timer delete`. - - This clarifies whether the timer is immediately deleted or in a `delete_pending` state. diff --git a/changelog.d/20231031_164554_sirosen_handle_session_gares.md b/changelog.d/20231031_164554_sirosen_handle_session_gares.md deleted file mode 100644 index 96e4ae10d..000000000 --- a/changelog.d/20231031_164554_sirosen_handle_session_gares.md +++ /dev/null @@ -1,6 +0,0 @@ -### Enhancements - -* `globus timer resume` and `globus flows run resume` have new functionality - for handling session-related errors (e.g. high-assurance timeouts), enabling - them to prompt the user in the event that a **timer** or **run** is inactive - due to a session error. diff --git a/src/globus_cli/version.py b/src/globus_cli/version.py index b2fd2309d..8b4dcd0f7 100644 --- a/src/globus_cli/version.py +++ b/src/globus_cli/version.py @@ -7,7 +7,7 @@ # single source of truth for package version, # see https://packaging.python.org/en/latest/single_source_version/ -__version__ = "3.18.0" +__version__ = "3.19.0" # app name to send as part of SDK requests app_name = f"Globus CLI v{__version__}"