@eui/tools 5.1.6 → 5.1.9

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
- 5.1.6
1
+ 5.1.9
package/CHANGELOG.md CHANGED
@@ -1,3 +1,30 @@
1
+ ## 5.1.9 (2022-04-28)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * 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))
7
+
8
+ * * *
9
+ * * *
10
+ ## 5.1.8 (2022-04-28)
11
+
12
+ ##### Bug Fixes
13
+
14
+ * **other:**
15
+ * backend package release remove install - EUI-5632 [EUI-5632](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-5632) ([8c2408d7](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/8c2408d78940101fa165ef31b62aa08a6982af8f))
16
+
17
+ * * *
18
+ * * *
19
+ ## 5.1.7 (2022-04-28)
20
+
21
+ ##### Bug Fixes
22
+
23
+ * **other:**
24
+ * wrong call to app.getCurrentVersion - broken generateDiffReport for master remote release - EUI-5632 [EUI-5632](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-5632) ([1a6d6328](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/1a6d63285136f0aa8ade7e526a5bc90562c76af3))
25
+
26
+ * * *
27
+ * * *
1
28
  ## 5.1.6 (2022-04-28)
2
29
 
3
30
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.1.6",
3
+ "version": "5.1.9",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -504,7 +504,7 @@ module.exports.commitMetadata = (pkg, version) => {
504
504
  .then(() => {
505
505
  utils.tools.logTitle('Commiting metadata info');
506
506
 
507
- return gitUtils.commitAndPush(
507
+ return utils.git.commitAndPush(
508
508
  'master',
509
509
  `chore: update metadata for ${pkg.name}-${version}`,
510
510
  configOptions.DEVOPS_METADATA_PATH
@@ -87,8 +87,8 @@ module.exports.run = () => {
87
87
  if (pkg.remote) {
88
88
  return innerRemote.install(pkg, envTarget, compositeType);
89
89
 
90
- } else if (pkg.backend) {
91
- return innerBackend.install(pkg);
90
+ // } else if (pkg.backend) {
91
+ // return innerBackend.install(pkg);
92
92
 
93
93
  } else {
94
94
  return innerUi.install(pkg);
@@ -169,14 +169,14 @@ module.exports.run = () => {
169
169
 
170
170
  // STORING PACKAGE HISTORY
171
171
  .then(() => {
172
- if (isMaster && pkg.remote) {
173
- return innerCommon.generateDiffReport(pkg, pkgVersion);
172
+ if (branches.isMaster && pkg.remote) {
173
+ return innerCommon.generateDiffReport(pkg, newVersion);
174
174
  }
175
175
  })
176
176
 
177
177
  // COMMITING METADATA
178
178
  .then(() => {
179
- return innerCommon.commitMetadata(pkg, pkgVersion);
179
+ return innerCommon.commitMetadata(pkg, newVersion);
180
180
  })
181
181
 
182
182