@ui5/task-adaptation 1.4.0 → 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 +8 -1
- package/dist/bundle.js +2032 -97
- package/dist/util/commonUtil.js +3 -0
- package/dist/util/requestUtil.js +1 -1
- package/package.json +4 -3
- 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,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.4.
|
|
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
|
+
|
|
6
12
|
|
|
7
13
|
<a name="v1.4.0"></a>
|
|
8
14
|
## [v1.4.0] - 2024-09-25
|
|
@@ -100,6 +106,7 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-task
|
|
|
100
106
|
<a name="v1.0.0"></a>
|
|
101
107
|
## v1.0.0 - 2020-12-09
|
|
102
108
|
|
|
109
|
+
[v1.4.1]: https://github.com/SAP/ui5-task-adaptation/compare/v1.4.0...v1.4.1
|
|
103
110
|
[v1.4.0]: https://github.com/SAP/ui5-task-adaptation/compare/v1.3.3...v1.4.0
|
|
104
111
|
[v1.3.3]: https://github.com/SAP/ui5-task-adaptation/compare/v1.3.2...v1.3.3
|
|
105
112
|
[v1.3.2]: https://github.com/SAP/ui5-task-adaptation/compare/v1.3.1...v1.3.2
|