@eui/tools 6.21.62 → 6.21.63

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.21.62
1
+ 6.21.63
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.21.63 (2025-04-10)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * metadata diffs when no previous version if found for remote on new env build - EUI-10199 [EUI-10199](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-10199) ([075b8678](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/075b8678006b940dd739506b45da1c57bc4ad93c))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.21.62 (2025-04-08)
2
11
 
3
12
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.21.62",
3
+ "version": "6.21.63",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -48,7 +48,7 @@ const getDiffBetweenBuildVersions = (pkg, fromBuildMetadata, toBuildMetadata) =>
48
48
 
49
49
  if (!fromBuildMetadata) {
50
50
  tools.logWarning('No previous metadata found for package...skipping');
51
- return null;
51
+ return [];
52
52
  }
53
53
 
54
54
  return Promise.resolve()
@@ -102,7 +102,7 @@ const getDiffByEnvTarget = (pkg, envTarget) => {
102
102
 
103
103
  if (!fromVersion || !toVersion) {
104
104
  tools.logWarning('WARNING: could not find versions matching for generating diff report');
105
- return null;
105
+ return [];
106
106
  } else {
107
107
  return getDiffBetweenBuildVersions(pkg, fromVersion, toVersion);
108
108
  }