@sap/datasphere-cli 2023.19.0 → 2023.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +40 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,46 @@ All notable changes to this project SAP Datasphere Command-Line Interface (DS CL
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## 2023.25.0
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- The defined HTTP protocol was not applied to calculated authorization URL and token URL. No matter which HTTP protocol (`http` or `https`) was used, the automatically calculated authorization URL and token URL always used the `https` protocol.
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- HTTPS proxy support via environment variable `https_proxy`. When using an HTTPS proxy to communicate with the public internet, you can configure the environment variable `https_proxy`. The CLI uses the value from the environment variable to establish a correct connection to the HTTPS proxy.
|
|
17
|
+
|
|
18
|
+
- Support for response header `x-sap-datasphere-cli-file-name`. When the user adds option `--output` and provides a path to a file location, this value is always used to store the response data, no matter whether response header `x-sap-datasphere-cli-file-name` is present. If the user adds option `--output` without providing a path to a file location and the response header `x-sap-datasphere-cli-file-name` is present, the response data is stored in the location mentioned in `x-sap-datasphere-cli-file-name`. In all other cases, the response data is printed to the console.
|
|
19
|
+
|
|
20
|
+
## 2023.24.0
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- Trailing single quotes (`'`) were removed from option values even though there was no leading single quote. This version contains a fix that trailing single quotes are only removed if there is a leading single quote.
|
|
25
|
+
|
|
26
|
+
Trailing single quote is not removed: `some 'value'` stays `some 'value'`.
|
|
27
|
+
|
|
28
|
+
Trailing single quote is removed: `'some value'` becomes `some value`.
|
|
29
|
+
|
|
30
|
+
- The help output did not mention the correct CLI name. Instead the output showed the name 'terminal'.
|
|
31
|
+
|
|
32
|
+
```javascript
|
|
33
|
+
Usage: terminal [options] [command]
|
|
34
|
+
|
|
35
|
+
Command-Line Interface for SAP Datasphere.
|
|
36
|
+
...
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Since this version, the name is shown correctly.
|
|
40
|
+
|
|
41
|
+
```javascript
|
|
42
|
+
Usage: datasphere [options] [command]
|
|
43
|
+
|
|
44
|
+
Command-Line Interface for SAP Datasphere.
|
|
45
|
+
...
|
|
46
|
+
```
|
|
47
|
+
|
|
8
48
|
## 2023.19.0
|
|
9
49
|
|
|
10
50
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap/datasphere-cli",
|
|
3
|
-
"version": "2023.
|
|
3
|
+
"version": "2023.25.0",
|
|
4
4
|
"description": "Command-Line Interface for SAP Datasphere.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"author": "SAP SE",
|
|
@@ -19,6 +19,6 @@
|
|
|
19
19
|
"datasphere-cli"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@sap/cli-core": "2023.
|
|
22
|
+
"@sap/cli-core": "2023.24.0"
|
|
23
23
|
}
|
|
24
24
|
}
|