File tree 2 files changed +37
-1
lines changed
2 files changed +37
-1
lines changed Original file line number Diff line number Diff line change 1
1
= CLI Changelog
2
2
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
+
3
39
== 1.11.0
4
40
5
41
Enhancements:
Original file line number Diff line number Diff line change 2
2
3
3
# single source of truth for package version,
4
4
# see https://packaging.python.org/en/latest/single_source_version/
5
- __version__ = "1.11 .0"
5
+ __version__ = "1.12 .0"
6
6
7
7
# app name to send as part of SDK requests
8
8
app_name = "Globus CLI v{}" .format (__version__ )
You can’t perform that action at this time.
0 commit comments