@eui/tools 6.12.36 → 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.36
1
+ 6.12.37
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
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
+ * * *
1
10
  ## 6.12.36 (2023-08-03)
2
11
 
3
12
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.12.36",
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