@eui/tools 5.1.8 → 5.1.11
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
|
-
5.1.
|
|
1
|
+
5.1.11
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
## 5.1.11 (2022-04-28)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* app getCurrent version wrong declaration - EUI-5632 [EUI-5632](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-5632) ([28321e68](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/28321e68886f814f49462dec3bf6bfd60fc63088))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 5.1.10 (2022-04-28)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* force rebuild - EUI-5632 [EUI-5632](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-5632) ([ce8a71a4](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/ce8a71a4d01b70b12b40851cdb62a59ea481050c))
|
|
16
|
+
##### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **other:**
|
|
19
|
+
* wrong git package call - EUI-5632 [EUI-5632](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-5632) ([a8dfa84b](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/a8dfa84bec87bf6f3bf995aee6e1933c2fc8c30b))
|
|
20
|
+
|
|
21
|
+
* * *
|
|
22
|
+
* * *
|
|
1
23
|
## 5.1.8 (2022-04-28)
|
|
2
24
|
|
|
3
25
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -504,7 +504,7 @@ module.exports.commitMetadata = (pkg, version) => {
|
|
|
504
504
|
.then(() => {
|
|
505
505
|
utils.tools.logTitle('Commiting metadata info');
|
|
506
506
|
|
|
507
|
-
return
|
|
507
|
+
return utils.git.commitAndPush(
|
|
508
508
|
'master',
|
|
509
509
|
`chore: update metadata for ${pkg.name}-${version}`,
|
|
510
510
|
configOptions.DEVOPS_METADATA_PATH
|
|
@@ -10,6 +10,8 @@ const moment = require('moment');
|
|
|
10
10
|
// local
|
|
11
11
|
const tools = require('../../utils/tools');
|
|
12
12
|
|
|
13
|
+
// inner
|
|
14
|
+
const appCommon = require('./app-common');
|
|
13
15
|
|
|
14
16
|
// fetch args
|
|
15
17
|
const { dryRun } = tools.getArgs();
|
|
@@ -21,7 +23,7 @@ const { dryRun } = tools.getArgs();
|
|
|
21
23
|
module.exports.getNewVersion = (project, isSnapshot, isSupportBranch) => {
|
|
22
24
|
return Promise.resolve()
|
|
23
25
|
.then(() => {
|
|
24
|
-
return
|
|
26
|
+
return appCommon.getCurrentVersion(project);
|
|
25
27
|
})
|
|
26
28
|
.then((version) => {
|
|
27
29
|
// if the project has specific version strategy defined
|