@adobe/helix-config-storage 1.8.4 → 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 +14 -0
- package/package.json +4 -4
- package/src/config-store.js +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
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
|
+
|
|
8
|
+
## [1.8.5](https://github.com/adobe/helix-config-storage/compare/v1.8.4...v1.8.5) (2024-10-19)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update adobe fixes ([3663615](https://github.com/adobe/helix-config-storage/commit/3663615b7312b2eccaeb5f0295832821bf547ca5))
|
|
14
|
+
|
|
1
15
|
## [1.8.4](https://github.com/adobe/helix-config-storage/compare/v1.8.3...v1.8.4) (2024-10-15)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-config-storage",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.6",
|
|
4
4
|
"description": "Helix Config Storage",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"types": "src/index.d.ts",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"mocha-multi-reporters": "1.5.1",
|
|
52
52
|
"mocha-suppress-logs": "0.5.1",
|
|
53
53
|
"nock": "13.5.5",
|
|
54
|
-
"semantic-release": "24.1.
|
|
54
|
+
"semantic-release": "24.1.3",
|
|
55
55
|
"xml2js": "0.6.2"
|
|
56
56
|
},
|
|
57
57
|
"lint-staged": {
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
62
|
"@adobe/fetch": "4.1.9",
|
|
63
|
-
"@adobe/helix-shared-config": "11.0.
|
|
64
|
-
"@adobe/helix-shared-git": "3.0.
|
|
63
|
+
"@adobe/helix-shared-config": "11.0.6",
|
|
64
|
+
"@adobe/helix-shared-git": "3.0.15",
|
|
65
65
|
"@adobe/helix-shared-storage": "1.1.0",
|
|
66
66
|
"@adobe/helix-shared-utils": "3.0.2",
|
|
67
67
|
"ajv": "8.17.1",
|
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) {
|