@ui5/task-adaptation 1.3.3 → 1.4.1
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 +12 -1
- package/README.md +10 -7
- package/dist/annotations/serviceRequestor.js +2 -1
- package/dist/bundle.js +2032 -97
- package/dist/model/configuration.d.ts +1 -1
- package/dist/repositories/abapProvider.d.ts +2 -4
- package/dist/repositories/abapProvider.js +20 -52
- package/dist/util/commonUtil.js +3 -0
- package/dist/util/i18nMerger.d.ts +0 -1
- package/dist/util/requestUtil.js +1 -1
- package/dist/util/zipUtil.d.ts +0 -1
- package/package.json +12 -11
- package/scripts/rollup/amdToEsm.ts +22 -0
- package/scripts/rollup/overrides/sap/base/config.js +11 -0
- package/scripts/rollup/project/ui5.yaml +1 -1
- package/scripts/rollup/ui5Resolve.ts +6 -1
- package/scripts/rollup.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,16 @@
|
|
|
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.
|
|
5
|
+
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-task-adaptation/compare/v1.4.1...HEAD).
|
|
6
|
+
|
|
7
|
+
<a name="v1.4.1"></a>
|
|
8
|
+
## [v1.4.1] - 2025-02-24
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
- Rollup ui5 1.131.1 [`a6a6142`](https://github.com/SAP/ui5-task-adaptation/commit/a6a61429e1ce43a77c5581f75f5a8e542bbebba9)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
<a name="v1.4.0"></a>
|
|
14
|
+
## [v1.4.0] - 2024-09-25
|
|
6
15
|
|
|
7
16
|
<a name="v1.3.3"></a>
|
|
8
17
|
## [v1.3.3] - 2024-09-11
|
|
@@ -97,6 +106,8 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-task
|
|
|
97
106
|
<a name="v1.0.0"></a>
|
|
98
107
|
## v1.0.0 - 2020-12-09
|
|
99
108
|
|
|
109
|
+
[v1.4.1]: https://github.com/SAP/ui5-task-adaptation/compare/v1.4.0...v1.4.1
|
|
110
|
+
[v1.4.0]: https://github.com/SAP/ui5-task-adaptation/compare/v1.3.3...v1.4.0
|
|
100
111
|
[v1.3.3]: https://github.com/SAP/ui5-task-adaptation/compare/v1.3.2...v1.3.3
|
|
101
112
|
[v1.3.2]: https://github.com/SAP/ui5-task-adaptation/compare/v1.3.1...v1.3.2
|
|
102
113
|
[v1.3.1]: https://github.com/SAP/ui5-task-adaptation/compare/v1.3.0...v1.3.1
|
package/README.md
CHANGED
|
@@ -8,15 +8,18 @@ A custom task for [ui5-builder](https://github.com/SAP/ui5-builder) that allows
|
|
|
8
8
|
|
|
9
9
|
### Configuration
|
|
10
10
|
#### ABAP Connection
|
|
11
|
-
The following connection configuration format is used to connect to ABAP repository
|
|
11
|
+
The following connection configuration format is used to connect to ABAP repository in IDE:
|
|
12
12
|
```yaml
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
13
|
+
target:
|
|
14
|
+
url: example.com,
|
|
15
|
+
authenticationType: basic | reentranceTicket,
|
|
16
|
+
ignoreCertErrors: true | false
|
|
17
|
+
```
|
|
18
|
+
and in SAP Business Application Studio:
|
|
19
|
+
```yaml
|
|
20
|
+
target:
|
|
21
|
+
destination: abc
|
|
18
22
|
```
|
|
19
|
-
In case multiple connection configuration are present, then the current environment configuration will be used. For example in above case `destination` for SAP BAS or `url` for IDE will be automaticaly used.
|
|
20
23
|
OnPremise ABAP repository requires `authenticationType: basic`, credentials should be provided in project root `.env` file:
|
|
21
24
|
```
|
|
22
25
|
FIORI_TOOLS_USER=<username>
|
|
@@ -26,7 +26,8 @@ function retryOnError(maxRetries) {
|
|
|
26
26
|
retries++;
|
|
27
27
|
}
|
|
28
28
|
else {
|
|
29
|
-
|
|
29
|
+
const message = error?.response?.data ?? error.message;
|
|
30
|
+
throw new Error(`Failed to fetch annotation by '${args[0]}': ${message}`);
|
|
30
31
|
}
|
|
31
32
|
}
|
|
32
33
|
}
|