@eui/tools 6.11.29 → 6.11.31
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/.version.properties +1 -1
- package/CHANGELOG.md +18 -0
- package/package.json +1 -1
- package/scripts/csdr/init/resources/13.x/resolutions.json +2 -1
- package/scripts/csdr/init/resources/14.x/resolutions.json +2 -1
- package/scripts/csdr/init/resources/15.x/resolutions.json +2 -1
- package/scripts/csdr/init/resources/16.x/resolutions.json +1 -0
- package/scripts/utils/pre-build/injection/routes-replacement.js +6 -0
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.11.
|
|
1
|
+
6.11.31
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.11.31 (2023-06-07)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* security patch for fast-xml-parser in 13 14 15 16 resolutions - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([369f3a71](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/369f3a715889b1901d51bfdbd8bf3fd4f57b6c54))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.11.30 (2023-06-06)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* adapted routes replacements for additional props on routes - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([dad517c6](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/dad517c6dd7c55159a2432db8a924d78dc836fd6))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.11.29 (2023-06-06)
|
|
2
20
|
|
|
3
21
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -476,6 +476,12 @@ const processRoutesConfig = (project, envTarget, build, routesFile, routesFileCo
|
|
|
476
476
|
r.menuLinkDefs.forEach((md) => {
|
|
477
477
|
if (md.url === link.url) {
|
|
478
478
|
routeDef = md;
|
|
479
|
+
if (link.id) {
|
|
480
|
+
routeDef.id = link.id;
|
|
481
|
+
}
|
|
482
|
+
if (link.optional) {
|
|
483
|
+
routeDef.optional = link.optional;
|
|
484
|
+
}
|
|
479
485
|
return;
|
|
480
486
|
}
|
|
481
487
|
});
|