@eui/tools 6.15.2 → 6.15.4

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.15.2
1
+ 6.15.4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 6.15.4 (2023-12-17)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * backend metadata missing moment import - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([b81d5301](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/b81d5301523ca1ea87081a9d3036dbd592813b3b))
7
+
8
+ * * *
9
+ * * *
10
+ ## 6.15.3 (2023-12-16)
11
+
12
+ ##### Bug Fixes
13
+
14
+ * **other:**
15
+ * wrong property used for diffReport slack msg - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([58eb4fd9](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/58eb4fd95ebed3efe668619e7550634af2c792ad))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.15.2 (2023-12-16)
2
20
 
3
21
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.15.2",
3
+ "version": "6.15.4",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -2,6 +2,7 @@
2
2
 
3
3
  // GLOBAL
4
4
  const path = require('path');
5
+ const moment = require('moment');
5
6
 
6
7
  // LOCAL
7
8
  const tools = require('../../utils/tools');
@@ -236,7 +236,7 @@ const sendPackageDiffReportMessage = (diffMetadata, slackHook, slackChannel) =>
236
236
 
237
237
  if (diffMetadata.length !== 0) {
238
238
  metadataText = diffMetadata.map((pkg) => {
239
- return `${pkg.package} ---> from [${pkg.old}] to [${pkg.new}]`
239
+ return `${pkg.npmPkg} ---> from [${pkg.old}] to [${pkg.new}]`
240
240
  }).join('\n ');
241
241
  }
242
242