@adobe/helix-config 5.4.8 → 5.4.9

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [5.4.9](https://github.com/adobe/helix-config/compare/v5.4.8...v5.4.9) (2025-07-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * filter empty group entries ([#298](https://github.com/adobe/helix-config/issues/298)) ([1510199](https://github.com/adobe/helix-config/commit/1510199d2a6054ad815c25f743cb16e75fc79510))
7
+
1
8
  ## [5.4.8](https://github.com/adobe/helix-config/compare/v5.4.7...v5.4.8) (2025-06-30)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-config",
3
- "version": "5.4.8",
3
+ "version": "5.4.9",
4
4
  "description": "Helix Config",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -35,21 +35,21 @@
35
35
  "reporter-options": "configFile=.mocha-multi.json"
36
36
  },
37
37
  "devDependencies": {
38
- "@adobe/eslint-config-helix": "3.0.5",
39
- "@eslint/config-helpers": "0.2.3",
38
+ "@adobe/eslint-config-helix": "3.0.6",
39
+ "@eslint/config-helpers": "0.3.0",
40
40
  "@semantic-release/changelog": "6.0.3",
41
41
  "@semantic-release/git": "10.0.1",
42
- "@semantic-release/npm": "12.0.1",
42
+ "@semantic-release/npm": "12.0.2",
43
43
  "c8": "10.1.3",
44
44
  "eslint": "9.4.0",
45
45
  "husky": "9.1.7",
46
46
  "junit-report-builder": "5.1.1",
47
47
  "lint-staged": "16.1.2",
48
- "mocha": "11.7.0",
48
+ "mocha": "11.7.1",
49
49
  "mocha-multi-reporters": "1.5.1",
50
- "mocha-suppress-logs": "0.5.1",
50
+ "mocha-suppress-logs": "0.6.0",
51
51
  "nock": "13.5.6",
52
- "semantic-release": "24.2.5"
52
+ "semantic-release": "24.2.6"
53
53
  },
54
54
  "lint-staged": {
55
55
  "*.js": "eslint",
@@ -411,7 +411,9 @@ async function loadGroup(ctx, siteConfig, path) {
411
411
  return [];
412
412
  }
413
413
  ctx.log.info('loaded user sheet from %s. %d users', key, users.default.data.length);
414
- return users.default.data.map((row) => ModifiersConfig.toLowerKeys(row).user);
414
+ return users.default.data
415
+ .map((row) => ModifiersConfig.toLowerKeys(row).user)
416
+ .filter((entry) => !!entry);
415
417
  }
416
418
 
417
419
  /**