@ui5/task-adaptation 1.5.2 → 1.5.3

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,10 @@
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.2...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-task-adaptation/compare/v1.5.3...HEAD).
6
+
7
+ <a name="v1.5.3"></a>
8
+ ## [v1.5.3] - 2025-09-29
6
9
 
7
10
  <a name="v1.5.2"></a>
8
11
  ## [v1.5.2] - 2025-08-25
@@ -125,6 +128,7 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-task
125
128
  <a name="v1.0.0"></a>
126
129
  ## v1.0.0 - 2020-12-09
127
130
 
131
+ [v1.5.3]: https://github.com/SAP/ui5-task-adaptation/compare/v1.5.2...v1.5.3
128
132
  [v1.5.2]: https://github.com/SAP/ui5-task-adaptation/compare/v1.5.1...v1.5.2
129
133
  [v1.5.1]: https://github.com/SAP/ui5-task-adaptation/compare/v1.4.3...v1.5.1
130
134
  [v1.4.3]: https://github.com/SAP/ui5-task-adaptation/compare/v1.4.2...v1.4.3
package/dist/bundle.js CHANGED
@@ -6285,7 +6285,7 @@ _Helper = {
6285
6285
  if (!mParameters) {
6286
6286
  return "";
6287
6287
  }
6288
- aKeys = Object.keys(mParameters);
6288
+ aKeys = Object.keys(mParameters).filter(sKey => !sKey.startsWith("$$"));
6289
6289
  if (aKeys.length === 0) {
6290
6290
  return "";
6291
6291
  }
@@ -6568,14 +6568,12 @@ _Helper = {
6568
6568
  },
6569
6569
  extractMergeableQueryOptions: function (mQueryOptions) {
6570
6570
  var mExtractedQueryOptions = {};
6571
- if (("$expand" in mQueryOptions)) {
6572
- mExtractedQueryOptions.$expand = mQueryOptions.$expand;
6573
- mQueryOptions.$expand = "~";
6574
- }
6575
- if (("$select" in mQueryOptions)) {
6576
- mExtractedQueryOptions.$select = mQueryOptions.$select;
6577
- mQueryOptions.$select = "~";
6578
- }
6571
+ Object.keys(mQueryOptions).forEach(function (sKey) {
6572
+ if (sKey === "$expand" || sKey === "$select") {
6573
+ mExtractedQueryOptions[sKey] = mQueryOptions[sKey];
6574
+ mQueryOptions[sKey] = "~";
6575
+ }
6576
+ });
6579
6577
  return mExtractedQueryOptions;
6580
6578
  },
6581
6579
  extractMessages: function (oError) {
@@ -7032,7 +7030,7 @@ _Helper = {
7032
7030
  return false;
7033
7031
  }
7034
7032
  iNumber = Math.abs(iNumber);
7035
- return iNumber <= 9007199254740991 && Math.floor(iNumber) === iNumber;
7033
+ return iNumber <= Number.MAX_SAFE_INTEGER && Math.floor(iNumber) === iNumber;
7036
7034
  },
7037
7035
  isSelected: function (sPropertyPath, mQueryOptions) {
7038
7036
  var sPath, sRelativePath;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/task-adaptation",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
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": {
@@ -33,10 +33,10 @@
33
33
  "author": "SAP SE",
34
34
  "license": "Apache-2.0",
35
35
  "dependencies": {
36
- "@sap-ux/axios-extension": "^1.16.6",
37
- "@sap-ux/btp-utils": "^1.0.2",
38
- "@sap-ux/store": "^0.9.1",
39
- "@sap-ux/system-access": "^0.5.11",
36
+ "@sap-ux/axios-extension": "^1.22.9",
37
+ "@sap-ux/btp-utils": "^1.1.3",
38
+ "@sap-ux/store": "^1.1.4",
39
+ "@sap-ux/system-access": "^0.6.18",
40
40
  "@sap/cf-tools": "^3.2.2",
41
41
  "@ui5/fs": "^4.0.1",
42
42
  "@ui5/logger": "^4.0.1",