@eui/tools 4.19.17 → 4.19.18

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
- 4.19.17
1
+ 4.19.18
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 4.19.18 (2022-03-09)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * support/develop snapshot carret resolution - EUI-4107 [EUI-4107](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4107) ([340146a1](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/340146a1237e36eeaec01d3ef9c2c8990772d718))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 4.19.17 (2022-03-09)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "4.19.17",
3
+ "version": "4.19.18",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -465,7 +465,8 @@ module.exports.getPackageVersionsByMajor = (pkg, major) => {
465
465
  if (pkgVersions) {
466
466
  return pkgVersions.filter((v) => {
467
467
  return (v.version.split('.')[0] === major && v.version.indexOf('snapshot') === -1) ||
468
- (v.version.split('.')[0] === major && pkg.build && pkg.build.isNextMajorSnapshotAllowed);
468
+ (v.version.split('.')[0] === major && pkg.build && pkg.build.isNextMajorSnapshotAllowed) ||
469
+ (v.version.split('.')[0] === major && pkg.build && pkg.build.supportSnapshotBranch);
469
470
  })
470
471
  }
471
472
  }