@adobe/helix-config-storage 1.8.5 → 1.8.6
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 +7 -0
- package/package.json +1 -1
- package/src/config-store.js +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.8.6](https://github.com/adobe/helix-config-storage/compare/v1.8.5...v1.8.6) (2024-10-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* allow crud of deep public objects ([#50](https://github.com/adobe/helix-config-storage/issues/50)) ([6dbfd8e](https://github.com/adobe/helix-config-storage/commit/6dbfd8efedb793f966f17882a8a7c2f4aafa1cab))
|
|
7
|
+
|
|
1
8
|
## [1.8.5](https://github.com/adobe/helix-config-storage/compare/v1.8.4...v1.8.5) (2024-10-19)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/config-store.js
CHANGED
|
@@ -70,7 +70,7 @@ const FRAGMENTS_COMMON = {
|
|
|
70
70
|
members: 'object',
|
|
71
71
|
},
|
|
72
72
|
},
|
|
73
|
-
public: '
|
|
73
|
+
public: '*',
|
|
74
74
|
robots: 'object',
|
|
75
75
|
};
|
|
76
76
|
|
|
@@ -120,6 +120,10 @@ export function getFragmentInfo(type, relPath) {
|
|
|
120
120
|
};
|
|
121
121
|
for (const part of parts) {
|
|
122
122
|
let next = fragment[part];
|
|
123
|
+
if (next === '*') {
|
|
124
|
+
fragment = '*';
|
|
125
|
+
break;
|
|
126
|
+
}
|
|
123
127
|
if (!next) {
|
|
124
128
|
next = fragment['.param'];
|
|
125
129
|
if (!next) {
|