@eui/tools 6.21.2 → 6.21.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/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.21.
|
|
1
|
+
6.21.3
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.21.3 (2024-10-11)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **deps:**
|
|
6
|
+
* composite core taken from last ACC for TRN when no preprod env is set for SEDIA and non-MWP hosts - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([55f0ce7b](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/55f0ce7b6b927d9ae340ea1f32f0f7053e8f8117))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.21.2 (2024-10-07)
|
|
2
11
|
|
|
3
12
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -228,12 +228,21 @@ module.exports.getCompositeDeps = (
|
|
|
228
228
|
* overridden by : hotfixDependencies if any
|
|
229
229
|
*/
|
|
230
230
|
if (envTarget === 'TRN') {
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
231
|
+
if (hasPreprod) {
|
|
232
|
+
return getCompositeDepsByEnv(
|
|
233
|
+
compositePath,
|
|
234
|
+
envTarget,
|
|
235
|
+
envsMetadata,
|
|
236
|
+
'PROD', 'TRN'
|
|
237
|
+
);
|
|
238
|
+
} else {
|
|
239
|
+
return getCompositeDepsByEnv(
|
|
240
|
+
compositePath,
|
|
241
|
+
envTarget,
|
|
242
|
+
envsMetadata,
|
|
243
|
+
'ACC', 'TRN'
|
|
244
|
+
);
|
|
245
|
+
}
|
|
237
246
|
}
|
|
238
247
|
|
|
239
248
|
/**
|