From 501df99fc8f4130330c6471b278c163e2d6f44ff Mon Sep 17 00:00:00 2001 From: Ada Nikolaidis Date: Mon, 5 Dec 2022 12:45:22 -0800 Subject: [PATCH] Bump version and changelog for release --- changelog.adoc | 55 +++++++++++++++++++ ...13_213932_sirosen_add_flows_api_command.md | 4 -- ...0221020_103428_aaschaer_user_credential.md | 12 ---- ...rosen_further_deprecate_endpoint_create.md | 4 -- ...20221102_023238_sirosen_add_delete_flow.md | 3 - .../20221102_031847_sirosen_add_show_flow.md | 4 -- ...10_101524_kurtmckee_support_python_3_11.md | 3 - ..._150538_kurtmckee_start_a_flow_sc_18428.md | 4 -- .../20221115_111518_aaschaer_entity_type.md | 3 - ...221117_103859_aaschaer_recursive_filter.md | 16 ------ ...205_180026_sirosen_bugfix_list_commands.md | 3 - src/globus_cli/version.py | 2 +- 12 files changed, 56 insertions(+), 57 deletions(-) delete mode 100644 changelog.d/20221013_213932_sirosen_add_flows_api_command.md delete mode 100644 changelog.d/20221020_103428_aaschaer_user_credential.md delete mode 100644 changelog.d/20221101_210125_sirosen_further_deprecate_endpoint_create.md delete mode 100644 changelog.d/20221102_023238_sirosen_add_delete_flow.md delete mode 100644 changelog.d/20221102_031847_sirosen_add_show_flow.md delete mode 100644 changelog.d/20221110_101524_kurtmckee_support_python_3_11.md delete mode 100644 changelog.d/20221114_150538_kurtmckee_start_a_flow_sc_18428.md delete mode 100644 changelog.d/20221115_111518_aaschaer_entity_type.md delete mode 100644 changelog.d/20221117_103859_aaschaer_recursive_filter.md delete mode 100644 changelog.d/20221205_180026_sirosen_bugfix_list_commands.md diff --git a/changelog.adoc b/changelog.adoc index a9c5ad836..2be187c06 100644 --- a/changelog.adoc +++ b/changelog.adoc @@ -2,6 +2,61 @@ // scriv-insert-here +== 3.10.0 (2022-12-05) + +## Bugfixes + +* Fix a bug which caused `globus list-commands` not to show proper information + +## Enhancements + +* Add the `globus api flows` command for direct interactions with the Globus + Flows service + +* Added commands for interacting with GCSv5 user credentials + * `globus endpoint user-credential list` + * `globus endpoint user-credential show` + * `globus endpoint user-credential delete` + * `globus endpoint user-credential create` + * `globus endpoint user-credential create from-json` + * `globus endpoint user-credential create posix` + * `globus endpoint user-credential create s3` + +* Added `globus endpoint storage-gateway list` + +* Add `globus flows delete` to delete a flow by ID + +* Add a new command, `globus flows show` which displays information about a + single flow + +* Add `globus flows start` as a new command for starting a flow. + +* Add `globus login --flow ` to trigger a login that asks for consent to start a flow. + +* `globus ls` has improved behavior when the `--filter` and `--recursive` options + are used in combination + + * directory names are not matched against the filter, allowing the operation to + traverse directories regardless of their names + + * the `--filter` is still applied to filenames in all directories traversed by + the `ls` operation + + * directory names can be filtered out of the text output by eliminating + lines which end in `/` + + * the behaviors of `globus ls` commands with `--recursive` or `--filter`, but not + both, are unchanged + +## Other + +* `globus endpoint create` is now hidden and displays a deprecation warning + when used + +* Support Python 3.11. + +* Endpointish now uses `entity_type` for determining EntityType + == 3.9.0 (2022-10-13) Bugfixes: diff --git a/changelog.d/20221013_213932_sirosen_add_flows_api_command.md b/changelog.d/20221013_213932_sirosen_add_flows_api_command.md deleted file mode 100644 index 641e1a872..000000000 --- a/changelog.d/20221013_213932_sirosen_add_flows_api_command.md +++ /dev/null @@ -1,4 +0,0 @@ -### Enhancements - -* Add the `globus api flows` command for direct interactions with the Globus - Flows service diff --git a/changelog.d/20221020_103428_aaschaer_user_credential.md b/changelog.d/20221020_103428_aaschaer_user_credential.md deleted file mode 100644 index 01dc19726..000000000 --- a/changelog.d/20221020_103428_aaschaer_user_credential.md +++ /dev/null @@ -1,12 +0,0 @@ -### Enhancements - -* Added commands for interacting with GCSv5 user credentials - * globus endpoint user-credential list - * globus endpoint user-credential show - * globus endpoint user-credential delete - * globus endpoint user-credential create - * globus endpoint user-credential create from-json - * globus endpoint user-credential create posix - * globus endpoint user-credential create s3 - -* Added globus endpoint storage-gateway list diff --git a/changelog.d/20221101_210125_sirosen_further_deprecate_endpoint_create.md b/changelog.d/20221101_210125_sirosen_further_deprecate_endpoint_create.md deleted file mode 100644 index 60785e55b..000000000 --- a/changelog.d/20221101_210125_sirosen_further_deprecate_endpoint_create.md +++ /dev/null @@ -1,4 +0,0 @@ -### Other - -* `globus endpoint create` is now hidden and displays a deprecation warning - when used diff --git a/changelog.d/20221102_023238_sirosen_add_delete_flow.md b/changelog.d/20221102_023238_sirosen_add_delete_flow.md deleted file mode 100644 index cdff105c0..000000000 --- a/changelog.d/20221102_023238_sirosen_add_delete_flow.md +++ /dev/null @@ -1,3 +0,0 @@ -### Enhancements - -* Add `globus flows delete` to delete a flow by ID diff --git a/changelog.d/20221102_031847_sirosen_add_show_flow.md b/changelog.d/20221102_031847_sirosen_add_show_flow.md deleted file mode 100644 index 728cbe56b..000000000 --- a/changelog.d/20221102_031847_sirosen_add_show_flow.md +++ /dev/null @@ -1,4 +0,0 @@ -### Enhancements - -* Add a new command, `globus flows show` which displays information about a - single flow diff --git a/changelog.d/20221110_101524_kurtmckee_support_python_3_11.md b/changelog.d/20221110_101524_kurtmckee_support_python_3_11.md deleted file mode 100644 index a7330297e..000000000 --- a/changelog.d/20221110_101524_kurtmckee_support_python_3_11.md +++ /dev/null @@ -1,3 +0,0 @@ -### Other - -* Support Python 3.11. diff --git a/changelog.d/20221114_150538_kurtmckee_start_a_flow_sc_18428.md b/changelog.d/20221114_150538_kurtmckee_start_a_flow_sc_18428.md deleted file mode 100644 index ff26d86de..000000000 --- a/changelog.d/20221114_150538_kurtmckee_start_a_flow_sc_18428.md +++ /dev/null @@ -1,4 +0,0 @@ -### Enhancements - -* Add `globus flow start` as a new command for starting a flow. -* Add `globus login --flow ` to trigger a login that asks for consent to start a flow. diff --git a/changelog.d/20221115_111518_aaschaer_entity_type.md b/changelog.d/20221115_111518_aaschaer_entity_type.md deleted file mode 100644 index e8b2649a9..000000000 --- a/changelog.d/20221115_111518_aaschaer_entity_type.md +++ /dev/null @@ -1,3 +0,0 @@ -### Other - -* Endpointish now uses `entity_type` for determining EntityType diff --git a/changelog.d/20221117_103859_aaschaer_recursive_filter.md b/changelog.d/20221117_103859_aaschaer_recursive_filter.md deleted file mode 100644 index 7ee3abda8..000000000 --- a/changelog.d/20221117_103859_aaschaer_recursive_filter.md +++ /dev/null @@ -1,16 +0,0 @@ -### Enhancements - -* `globus ls` has improved behavior when the `--filter` and `--recursive` options - are used in combination - - * directory names are not matched against the filter, allowing the operation to - traverse directories regardless of their names - - * the `--filter` is still applied to filenames in all directories traversed by - the `ls` operation - - * directory names can be filtered out of the text output by eliminating - lines which end in `/` - - * the behaviors of `globus ls` commands with `--recursive` or `--filter`, but not - both, are unchanged diff --git a/changelog.d/20221205_180026_sirosen_bugfix_list_commands.md b/changelog.d/20221205_180026_sirosen_bugfix_list_commands.md deleted file mode 100644 index d33f4ca33..000000000 --- a/changelog.d/20221205_180026_sirosen_bugfix_list_commands.md +++ /dev/null @@ -1,3 +0,0 @@ -### Bugfixes - -* Fix a bug which caused `globus list-commands` not to show proper information diff --git a/src/globus_cli/version.py b/src/globus_cli/version.py index a050d8c04..6d78fd7a2 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.9.0" +__version__ = "3.10.0" # app name to send as part of SDK requests app_name = f"Globus CLI v{__version__}"