@eui/tools 4.21.14 → 4.21.17

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.
@@ -1 +1 @@
1
- 4.21.14
1
+ 4.21.17
package/CHANGELOG.md CHANGED
@@ -1,3 +1,34 @@
1
+ ## 4.21.17 (2022-04-20)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * adapted devops-metadata not using shallow clone on release - EUI-4106 [EUI-4106](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4106) ([aa08b8b7](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/aa08b8b7eb890740575ed3ab72f4a5c8aa626095))
7
+
8
+ * * *
9
+ * * *
10
+ ## 4.21.16 (2022-04-20)
11
+
12
+ ##### Chores
13
+
14
+ * **other:**
15
+ * EUI-5854 Update Camunda Maven Template [EUI-5854](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-5854) ([3c1233db](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/3c1233db5b5d62defbfef2804398216c894762dc))
16
+ ##### Bug Fixes
17
+
18
+ * **typo:**
19
+ * EUI-5854 property missing parents [EUI-5854](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-5854) ([e9241580](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/e9241580849bfe194ce3dadf16d9da1b7bdbb443))
20
+
21
+ * * *
22
+ * * *
23
+ ## 4.21.15 (2022-04-20)
24
+
25
+ ##### Bug Fixes
26
+
27
+ * **deps:**
28
+ * updated moment and related for security patch - EUI-4106 [EUI-4106](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4106) ([cb4dd295](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/cb4dd295fa2dac0d77bcf428f98a7cf15c268f91))
29
+
30
+ * * *
31
+ * * *
1
32
  ## 4.21.14 (2022-04-08)
2
33
 
3
34
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "4.21.14",
3
+ "version": "4.21.17",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -21,8 +21,8 @@
21
21
  "eol": "0.9.1",
22
22
  "rimraf": "3.0.2",
23
23
  "ncp": "2.0.0",
24
- "moment": "2.29.1",
25
- "moment-timezone": "0.5.33",
24
+ "moment": "2.29.3",
25
+ "moment-timezone": "0.5.34",
26
26
  "npm-run-all": "4.1.5",
27
27
  "figures": "3.2.0",
28
28
  "xml2js": "0.4.23",
@@ -26,7 +26,7 @@ module.exports.install = (pkg) => {
26
26
 
27
27
  // cloning devops metadata repo
28
28
  .then(() => {
29
- return metadataUtils.common.cloneMetadataRepo();
29
+ return metadataUtils.common.cloneMetadataRepo(true);
30
30
  })
31
31
 
32
32
 
@@ -16,7 +16,7 @@ const innerAppHistory = require('./app-history');
16
16
  const innerAppEnvs = require('./app-envs');
17
17
 
18
18
 
19
- module.exports.cloneMetadataRepo = () => {
19
+ module.exports.cloneMetadataRepo = (noHistory = false) => {
20
20
  const configOptions = configUtils.global.getConfigOptions();
21
21
 
22
22
  tools.logTitle('Cloning devops metadata repo');
@@ -28,7 +28,7 @@ module.exports.cloneMetadataRepo = () => {
28
28
  } else {
29
29
  return Promise.resolve()
30
30
  .then(() => {
31
- return gitUtils.cloneRepo(configOptions.DEVOPS_METADATA_REPOSITORY, configOptions.DEVOPS_METADATA_PATH, false, true);
31
+ return gitUtils.cloneRepo(configOptions.DEVOPS_METADATA_REPOSITORY, configOptions.DEVOPS_METADATA_PATH, false, noHistory);
32
32
  })
33
33
  .catch((e) => {
34
34
  throw e;
@@ -44,6 +44,11 @@
44
44
  <username>@user.name@</username>
45
45
  <password>@user.password@</password>
46
46
  </server>
47
+ <server>
48
+ <id>camunda-bpm-shared-services</id>
49
+ <username>@user.name@</username>
50
+ <password>@user.password@</password>
51
+ </server>
47
52
  </servers>
48
53
 
49
54
  <mirrors>
@@ -146,6 +151,14 @@
146
151
  <releases><enabled>true</enabled></releases>
147
152
  </repository>
148
153
 
154
+ <repository>
155
+ <id>camunda-bpm-shared-services</id>
156
+ <name>Camunda BPM Shared Services</name>
157
+ <url>https://webgate.ec.europa.eu/CITnet/nexus/repository/camunda-shared-services/</url>
158
+ <releases><enabled>true</enabled></releases>
159
+ <snapshots><enabled>false</enabled></snapshots>
160
+ </repository>
161
+
149
162
  </repositories>
150
163
  </profile>
151
164
  </profiles>
@@ -8,6 +8,10 @@ const configUtils = require('../../../csdr/config/config-utils');
8
8
 
9
9
 
10
10
  const getEnvTarget = (envTarget, build) => {
11
+ if (!envTarget) {
12
+ throw 'ENV_TARGET_NOT_FOUND';
13
+ }
14
+
11
15
  let envTargetFinal = envTarget.toLowerCase();
12
16
 
13
17
  if (build) {