diff --git a/changelog.adoc b/changelog.adoc index bb019020..a9c5ad83 100644 --- a/changelog.adoc +++ b/changelog.adoc @@ -2,9 +2,42 @@ // scriv-insert-here +== 3.9.0 (2022-10-13) + +Bugfixes: + +* Fix a bug in text output for `globus transfer --dry-run` which crashed with a + `KeyError` if `--external-checksum` was omitted + +Enhancements: + +* A new command, `globus flows list`, allows users to list Flow objects in + Globus Flows + +* New commands for creating Globus Connect Personal endpoints and collections +** `globus gcp create mapped` creates a GCP Mapped Collection +** `globus gcp create guest` creates a GCP Guest Collection + +In GCP, the Mapped Collection and Endpoint are synonymous. Therefore, +`globus gcp create mapped` replaces the functionality previously only available +via `globus endpoint create --personal`. + +NOTE: Neither of the `globus gcp create` commands automatically installs Globus +Connect Personal on the local machine. These commands complement and interact with +an existing installation. + +Other: + +* `globus endpoint create` is now documented as deprecated. Users are + encouraged to use `globus gcp create` for Globus Connect Personal, + and the Globus Connect Server CLI for Globus Connect Server + +* `globus endpoint create` no longer accepts `--no-default-directory` as an + option. It previously did nothing when used. + == 3.8.0 (2022-08-31) -## Enhancements +Enhancements: * The globus CLI is now faster to start in many cases. Tab completions are most significantly improved, but other commands may demonstrate an improvement as @@ -18,11 +51,11 @@ == 3.7.0 (2022-08-05) -## Bugfixes +Bugfixes: * Fix `globus session update` help text not handling missing domain errors from Transfer -## Enhancements +Enhancements: * `globus group member invite` now supports provisioning new identities in Globus Auth in order to support inviting new users who have not created diff --git a/changelog.d/20220914_214457_sirosen_fix_xfer_dryrun.md b/changelog.d/20220914_214457_sirosen_fix_xfer_dryrun.md deleted file mode 100644 index df11978d..00000000 --- a/changelog.d/20220914_214457_sirosen_fix_xfer_dryrun.md +++ /dev/null @@ -1,4 +0,0 @@ -### Bugfixes - -* Fix a bug in text output for `globus transfer --dry-run` which crashed with a - `KeyError` if `--external-checksum` was omitted diff --git a/changelog.d/20220916_134333_sirosen_gcp_commands.md b/changelog.d/20220916_134333_sirosen_gcp_commands.md deleted file mode 100644 index bd304a04..00000000 --- a/changelog.d/20220916_134333_sirosen_gcp_commands.md +++ /dev/null @@ -1,21 +0,0 @@ -### Enhancements - -* New commands for creating Globus Connect Personal endpoints and collections -** `globus gcp create mapped` creates a GCP Mapped Collection -** `globus gcp create guest` creates a GCP Guest Collection - -In GCP, the Mapped Collection and Endpoint are synonymous. Therefore, -`globus gcp create mapped` replaces the functionality previously only available -via `globus endpoint create --personal`. - -NOTE: Neither of the `globus gcp create` commands automatically installs Globus -Connect Personal on the local machine. These commands complement and interact with -an existing installation. - -### Other - -* `globus endpoint create` is now documented as deprecated. Users are - encouraged to use `globus gcp create` for Globus Connect Personal, - and the Globus Connect Server CLI for Globus Connect Server -* `globus endpoint create` no longer accepts `--no-default-directory` as an - option. It previously did nothing when used. diff --git a/changelog.d/20221013_171820_sirosen_paginated_flow_list.md b/changelog.d/20221013_171820_sirosen_paginated_flow_list.md deleted file mode 100644 index 8a734ac9..00000000 --- a/changelog.d/20221013_171820_sirosen_paginated_flow_list.md +++ /dev/null @@ -1,4 +0,0 @@ -### Enhancements - -* A new command, `globus flows list`, allows users to list Flow objects in - Globus Flows diff --git a/src/globus_cli/version.py b/src/globus_cli/version.py index 5cd7ba66..ddbf95a8 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.8.0" +__version__ = "3.9.0" # app name to send as part of SDK requests app_name = f"Globus CLI v{__version__}"