@eui/tools 5.2.7 → 5.2.10
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 +28 -0
- package/package.json +1 -1
- package/sandbox.js +9 -7
- package/scripts/csdr/init/resources/13.x/yarn.lock +4508 -0
- package/scripts/csdr/install/composite-core.js +4 -0
- package/scripts/csdr/metadata/package-history.js +47 -2
- package/scripts/csdr/release/package/common.js +7 -2
- package/scripts/utils/build/app/build-app-utils.js +1 -1
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.2.
|
|
1
|
+
5.2.10
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
## 5.2.10 (2022-05-19)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* force updated yarn.lock - EUI-4106 [EUI-4106](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4106) ([f9cfaefe](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/f9cfaefe906201751caa33c29752011c65bb2a60))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 5.2.9 (2022-05-19)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* adapted optimized build to only TRN and PROD for MWP - forced yarn.lock in v13 builds for eUI build failure - EUI-4106 [EUI-4106](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4106) ([730cb1a2](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/730cb1a2e2fde1677f2f03605e5a0255f9f75654))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
19
|
+
## 5.2.8 (2022-05-16)
|
|
20
|
+
|
|
21
|
+
##### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* **other:**
|
|
24
|
+
* add logging of deps from current env if compositeType provided - EUI-5632 [EUI-5632](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-5632) ([9132b579](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/9132b57958eea09219e3d212d112c243f892ba44))
|
|
25
|
+
* envTarget composite fix - EUI-4106 [EUI-4106](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4106) ([127f4656](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/127f46568a51dc26da767c08425519777908553c))
|
|
26
|
+
|
|
27
|
+
* * *
|
|
28
|
+
* * *
|
|
1
29
|
## 5.2.7 (2022-05-13)
|
|
2
30
|
|
|
3
31
|
##### Chores
|
package/package.json
CHANGED
package/sandbox.js
CHANGED
|
@@ -843,24 +843,26 @@ const versionUtils = require('./scripts/csdr/version/version-utils');
|
|
|
843
843
|
// METADATA ESTING
|
|
844
844
|
// --------------------
|
|
845
845
|
const pkg = configUtils.packages.getPackage('cc-task-details-eui10-remote-el-ui');
|
|
846
|
-
const envTarget = '
|
|
846
|
+
const envTarget = 'INT';
|
|
847
847
|
|
|
848
848
|
let versionsMetadata, envsMetadata;
|
|
849
849
|
|
|
850
850
|
Promise.resolve()
|
|
851
|
-
//
|
|
851
|
+
// .then(() => {
|
|
852
|
+
// return installUtils.remotes.getDeps(pkg, envTarget, 'regio');
|
|
853
|
+
// })
|
|
854
|
+
// .then((deps) => {
|
|
855
|
+
// console.log(deps);
|
|
856
|
+
// })
|
|
852
857
|
.then(() => {
|
|
853
|
-
return versionUtils.packageRemote.getNewVersion(pkg, envTarget);
|
|
854
|
-
|
|
855
|
-
.then((version) => {
|
|
856
|
-
console.log(version);
|
|
858
|
+
// return versionUtils.packageRemote.getNewVersion(pkg, envTarget);
|
|
859
|
+
return metadataUtils.packageHistory.generateDiffReport(pkg, envTarget);
|
|
857
860
|
})
|
|
858
861
|
|
|
859
862
|
|
|
860
863
|
|
|
861
864
|
|
|
862
865
|
|
|
863
|
-
|
|
864
866
|
// const pkg = configUtils.packages.getPackage('opsys-epc-esub-bo-ui', true);
|
|
865
867
|
|
|
866
868
|
// Promise.resolve()
|