@ui5/task-adaptation 1.4.1 → 1.4.2

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,12 +2,12 @@
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.1...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-task-adaptation/compare/v1.4.2...HEAD).
6
6
 
7
- <a name="v1.4.1"></a>
8
- ## [v1.4.1] - 2025-02-24
7
+ <a name="v1.4.2"></a>
8
+ ## [v1.4.2] - 2025-02-25
9
9
  ### Bug Fixes
10
- - Rollup ui5 1.131.1 [`a6a6142`](https://github.com/SAP/ui5-task-adaptation/commit/a6a61429e1ce43a77c5581f75f5a8e542bbebba9)
10
+ - Update axios for CF [`e0e2220`](https://github.com/SAP/ui5-task-adaptation/commit/e0e2220d3a7fe429a06e5ca842858de2c559416f)
11
11
 
12
12
 
13
13
  <a name="v1.4.0"></a>
@@ -106,7 +106,7 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-task
106
106
  <a name="v1.0.0"></a>
107
107
  ## v1.0.0 - 2020-12-09
108
108
 
109
- [v1.4.1]: https://github.com/SAP/ui5-task-adaptation/compare/v1.4.0...v1.4.1
109
+ [v1.4.2]: https://github.com/SAP/ui5-task-adaptation/compare/v1.4.0...v1.4.2
110
110
  [v1.4.0]: https://github.com/SAP/ui5-task-adaptation/compare/v1.3.3...v1.4.0
111
111
  [v1.3.3]: https://github.com/SAP/ui5-task-adaptation/compare/v1.3.2...v1.3.3
112
112
  [v1.3.2]: https://github.com/SAP/ui5-task-adaptation/compare/v1.3.1...v1.3.2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/task-adaptation",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "Custom task for ui5-builder which allows building UI5 Flexibility Adaptation Projects for SAP BTP, Cloud Foundry environment",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -6,7 +6,7 @@ metadata:
6
6
  allowSapInternal: true
7
7
  framework:
8
8
  name: SAPUI5
9
- version: 1.131.1
9
+ version: 1.131.0
10
10
  libraries:
11
11
  - name: sap.ui.fl
12
12
  - name: sap.suite.ui.generic.template
@@ -119,6 +119,7 @@ function transform(code: string, id: string) {
119
119
  function replaceRequireAsync(code: string) {
120
120
  const requireAsyncPattern = /requireAsync((.bind\(this, ")|(\("))+(?<url>[\/\w]*)"\)/mg;
121
121
  let match, defineUrls = new Array<string>(), defineVars = new Array<string>(), matches = new Map();
122
+ // eslint-disable-next-line no-cond-assign
122
123
  while (match = requireAsyncPattern.exec(code)) {
123
124
  if (match.groups?.url) {
124
125
  const varaibleName = match.groups.url.split("/").pop() + crypto.randomBytes(16).toString("hex");