@eui/tools 6.12.35 → 6.12.37

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.12.35
1
+ 6.12.37
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 6.12.37 (2023-08-04)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * don't reject slack post trapping 429 cause of race-limit reached - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([962334c3](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/962334c32b21e93e5814a7c00dbdcab41af3ae67))
7
+
8
+ * * *
9
+ * * *
10
+ ## 6.12.36 (2023-08-03)
11
+
12
+ ##### Bug Fixes
13
+
14
+ * **other:**
15
+ * route replacement of custom installation - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([06f98a47](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/06f98a470edee4e2225e018f26cdcc5cf613c8e5))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.12.35 (2023-08-03)
2
20
 
3
21
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.12.35",
3
+ "version": "6.12.37",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -79,7 +79,7 @@ const sendMessageCore = (hook, channel, attachments, text = null) => {
79
79
 
80
80
  req.on('error', (e) => {
81
81
  console.log(e);
82
- reject(e);
82
+ resolve();
83
83
  });
84
84
 
85
85
  req.write(postData);
@@ -96,6 +96,7 @@ const sendMessage = (hook, channel, attachments, text = null) => {
96
96
  .catch((e) => {
97
97
  tools.logError('Error sending slack message');
98
98
  console.log(e); // do not rethrow
99
+ return Promise.resolve();
99
100
  })
100
101
  };
101
102
 
@@ -152,8 +152,8 @@ const getCustomRoutesDefs = (project) => {
152
152
  }
153
153
 
154
154
  // get routes from local packages to be installed
155
- customConfig.packages.forEach((pkgName) => {
156
- const pkg = configUtils.packages.getPackage(pkgName);
155
+ customConfig.packages.forEach((p) => {
156
+ const pkg = configUtils.packages.getPackage(p.name);
157
157
 
158
158
  tools.logInfo(`getting route def for : ${pkg.name} - ${pkg.npmPkg}`);
159
159
  const route = getRouteFromNpmPkg(pkg.npmPkg);