@eui/tools 6.21.96 → 6.21.98
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.98
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.21.98 (2025-07-08)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* adapted migration script - MWP-11955 [MWP-11955](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11955) ([0842ca85](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/0842ca858570b9f84c3736e59572837372b4bd97))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.21.97 (2025-07-08)
|
|
11
|
+
|
|
12
|
+
##### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* migrate script - MWP-11955 [MWP-11955](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11955) ([1481823f](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/1481823fe61febe25631b62415a4e131208d651d))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.21.96 (2025-07-07)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
|
@@ -56,6 +56,8 @@ module.exports.migrate = (pkg) => {
|
|
|
56
56
|
|
|
57
57
|
// REMOTE CREATION
|
|
58
58
|
|
|
59
|
+
const remotesTriggerPath = path.join(process.cwd(), 'remotes-trigger');
|
|
60
|
+
|
|
59
61
|
if (!tools.isDirExists(remotesTriggerPath)) {
|
|
60
62
|
return;
|
|
61
63
|
}
|
|
@@ -108,11 +110,8 @@ module.exports.migrate = (pkg) => {
|
|
|
108
110
|
|
|
109
111
|
|
|
110
112
|
tools.logInfo('Initializing remote trigger repository');
|
|
111
|
-
|
|
112
|
-
const remotesTriggerPath = path.join(process.cwd(), 'remotes-trigger');
|
|
113
113
|
|
|
114
114
|
|
|
115
|
-
|
|
116
115
|
tools.copydirFiles(path.join(__dirname, 'skeleton', 'remote-trigger'), path.join(remotesTriggerPath, newRemoteName));
|
|
117
116
|
tools.replaceInFileSync(path.join(remotesTriggerPath, newRemoteName, '.gitlab-ci.yml'), '@module.remote.name@', newRemoteName);
|
|
118
117
|
|
|
@@ -123,6 +122,11 @@ module.exports.migrate = (pkg) => {
|
|
|
123
122
|
tools.logInfo('Importing existing medata for remote');
|
|
124
123
|
|
|
125
124
|
const remoteMedatadataEnvs = path.join(process.cwd(), 'packages', 'devops-metadata', `${currentRemoteName}-envs-metadata.json`);
|
|
125
|
+
|
|
126
|
+
if (!tools.isFileExists(remoteMedatadataEnvs)) {
|
|
127
|
+
return;
|
|
128
|
+
}
|
|
129
|
+
|
|
126
130
|
const remoteMedatadataVersions = path.join(process.cwd(), 'packages', 'devops-metadata', `${currentRemoteName}-versions-metadata.json`);
|
|
127
131
|
const remoteMedatadataHistory = path.join(process.cwd(), 'packages', 'devops-metadata', `${currentRemoteName}-history-metadata-v2.json`);
|
|
128
132
|
|