Skip to content

Commit 764d9d7

Browse files
authored
Merge pull request #487 from globus/release-1.12.0
Release v1.12.0
2 parents 5f8de1d + 1ae334d commit 764d9d7

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
lines changed

changelog.adoc

+36
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,41 @@
11
= CLI Changelog
22

3+
== 1.12.0
4+
5+
Bugfixes:
6+
7+
* If a new `refresh_token` is issued when a token refreshes, it will be stored
8+
correctly.
9+
10+
* Paths being joined for `--batch` mode for `globus transfer` and
11+
`globus delete` on Windows were joined incorrectly with the platform path
12+
separator (`\`). They are now joined correctly with `/`
13+
14+
Enhancements:
15+
16+
* Error and hint outputs are styled using colors when the output is being
17+
written to a terminal.
18+
19+
** Supports macOS and Linux by default using ANSI colors.
20+
21+
** You can install colorama (`pip install colorama`) in the same
22+
environment as the CLI to get color support on Windows.
23+
24+
* Endpoints whose activation requirements do not include any myproxy
25+
requirements now give an informative error message if myproxy activation is
26+
attempted
27+
28+
* Add support for `--external-checksum` and `--checksum-algorithm` in
29+
`globus transfer` commands
30+
31+
Other:
32+
33+
* Internally, use the `globus_sdk.IdentityMap` construct, not a custom mapping type.
34+
35+
* Remove official support for python3.4, add support for python3.8
36+
37+
* Improvements to help text
38+
339
== 1.11.0
440

541
Enhancements:

globus_cli/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# single source of truth for package version,
44
# see https://packaging.python.org/en/latest/single_source_version/
5-
__version__ = "1.11.0"
5+
__version__ = "1.12.0"
66

77
# app name to send as part of SDK requests
88
app_name = "Globus CLI v{}".format(__version__)

0 commit comments

Comments
 (0)