@eui/tools 6.14.18 → 6.14.19

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
- 6.14.18
1
+ 6.14.19
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.14.19 (2023-12-14)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * missing argument for release app-group - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([ed46d002](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/ed46d002c4daacdf2f2a100e983d1788d0bc10fd))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.14.18 (2023-12-13)
2
11
 
3
12
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.14.18",
3
+ "version": "6.14.19",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -132,7 +132,7 @@ module.exports.run = () => {
132
132
  const projects = configUtils.projects.getCsdrProjectsGroupForEuiVersion(projectsGroup, euiVersion);
133
133
 
134
134
  return projects.reduce((promise, project) => {
135
- return promise.then(() => releaseProject(project, isSnapshot, isSupportBranch, branch));
135
+ return promise.then(() => releaseProject(project, isSnapshot, isSupportBranch, isSupportSnapshotBranch, branch));
136
136
  }, Promise.resolve());
137
137
  })
138
138
 
@@ -145,7 +145,7 @@ module.exports.run = () => {
145
145
 
146
146
 
147
147
 
148
- const releaseProject = (projectName, isSnapshot, isSupportBranch, branch) => {
148
+ const releaseProject = (projectName, isSnapshot, isSupportBranch, isSupportSnapshotBranch, branch) => {
149
149
  const { dryRun } = utils.tools.getArgs();
150
150
 
151
151
  // fetch the project config based on group name