@adobe/helix-shared-config 11.1.2 → 11.1.3

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
+ # [@adobe/helix-shared-config-v11.1.3](https://github.com/adobe/helix-shared/compare/@adobe/helix-shared-config-v11.1.2...@adobe/helix-shared-config-v11.1.3) (2025-04-10)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * match all path segment chars ([540863e](https://github.com/adobe/helix-shared/commit/540863e4eb3e3c671fbd2b009846c2095f0d2fd7))
7
+
1
8
  # [@adobe/helix-shared-config-v11.1.2](https://github.com/adobe/helix-shared/compare/@adobe/helix-shared-config-v11.1.1...@adobe/helix-shared-config-v11.1.2) (2025-03-31)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-shared-config",
3
- "version": "11.1.2",
3
+ "version": "11.1.3",
4
4
  "description": "Shared modules of the Helix Project - config",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -33,7 +33,7 @@ export class ModifiersConfig {
33
33
  static globToRegExp(glob) {
34
34
  const reString = glob
35
35
  .replaceAll('**', '|')
36
- .replaceAll('*', '[0-9a-z-.]*')
36
+ .replaceAll('*', '[^/]*')
37
37
  .replaceAll('|', '.*');
38
38
  return new RegExp(`^${reString}$`);
39
39
  }