@ui5/task-adaptation 1.0.20 → 1.0.21
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
CHANGED
|
@@ -2,7 +2,13 @@
|
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
4
4
|
|
|
5
|
-
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-task-adaptation/compare/v1.0.
|
|
5
|
+
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-task-adaptation/compare/v1.0.21...HEAD).
|
|
6
|
+
|
|
7
|
+
<a name="v1.0.21"></a>
|
|
8
|
+
## [v1.0.21] - 2024-01-03
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
- Download app source did not parse json [`dbe7bbb`](https://github.com/SAP/ui5-task-adaptation/commit/dbe7bbba4ac14a36431986658881e087d40e1541)
|
|
11
|
+
|
|
6
12
|
|
|
7
13
|
<a name="v1.0.20"></a>
|
|
8
14
|
## [v1.0.20] - 2024-01-02
|
|
@@ -58,6 +64,7 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-task
|
|
|
58
64
|
<a name="v1.0.0"></a>
|
|
59
65
|
## v1.0.0 - 2020-12-09
|
|
60
66
|
|
|
67
|
+
[v1.0.21]: https://github.com/SAP/ui5-task-adaptation/compare/v1.0.20...v1.0.21
|
|
61
68
|
[v1.0.20]: https://github.com/SAP/ui5-task-adaptation/compare/v1.0.19...v1.0.20
|
|
62
69
|
[v1.0.19]: https://github.com/SAP/ui5-task-adaptation/compare/v1.0.18...v1.0.19
|
|
63
70
|
[v1.0.18]: https://github.com/SAP/ui5-task-adaptation/compare/v1.0.17...v1.0.18
|
|
@@ -47,7 +47,7 @@ class AbapRepoManager {
|
|
|
47
47
|
const { destination, appName } = this.configuration;
|
|
48
48
|
const encodedAppName = encodeURIComponent(appName);
|
|
49
49
|
const uri = `https://${destination}.dest/sap/opu/odata/UI5/ABAP_REPOSITORY_SRV/Repositories('${encodedAppName}')?DownloadFiles=RUNTIME&CodePage=UTF8`;
|
|
50
|
-
const data = await requestUtil_1.default.get(uri,
|
|
50
|
+
const data = await requestUtil_1.default.get(uri, {}, auth);
|
|
51
51
|
if (data?.d?.ZipArchive.length > 0) {
|
|
52
52
|
const buffer = Buffer.from(data.d.ZipArchive, "base64");
|
|
53
53
|
return (0, zipUtil_1.unzipZipEntries)(buffer);
|
package/package.json
CHANGED