@eui/tools 4.21.16 → 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.
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
4.21.
|
|
1
|
+
4.21.17
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
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
|
+
* * *
|
|
1
10
|
## 4.21.16 (2022-04-20)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -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,
|
|
31
|
+
return gitUtils.cloneRepo(configOptions.DEVOPS_METADATA_REPOSITORY, configOptions.DEVOPS_METADATA_PATH, false, noHistory);
|
|
32
32
|
})
|
|
33
33
|
.catch((e) => {
|
|
34
34
|
throw e;
|