@adobe/helix-config 3.3.1 → 3.3.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 +14 -0
- package/package.json +2 -2
- package/src/storage/config-store.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [3.3.3](https://github.com/adobe/helix-config/compare/v3.3.2...v3.3.3) (2024-06-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update dependency jose to v5.4.1 ([2e8a7e1](https://github.com/adobe/helix-config/commit/2e8a7e1beef771b7014fd51f27dc54103a544cd9))
|
|
7
|
+
|
|
8
|
+
## [3.3.2](https://github.com/adobe/helix-config/compare/v3.3.1...v3.3.2) (2024-06-21)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* use correct prefix ([#112](https://github.com/adobe/helix-config/issues/112)) ([e194a57](https://github.com/adobe/helix-config/commit/e194a571cfc5f059dbd4ac193052ddd824daa34b))
|
|
14
|
+
|
|
1
15
|
## [3.3.1](https://github.com/adobe/helix-config/compare/v3.3.0...v3.3.1) (2024-06-21)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-config",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.3",
|
|
4
4
|
"description": "Helix Config",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"types": "src/index.d.ts",
|
|
@@ -66,6 +66,6 @@
|
|
|
66
66
|
"@adobe/helix-shared-utils": "3.0.2",
|
|
67
67
|
"ajv": "8.16.0",
|
|
68
68
|
"ajv-formats": "3.0.1",
|
|
69
|
-
"jose": "5.4.
|
|
69
|
+
"jose": "5.4.1"
|
|
70
70
|
}
|
|
71
71
|
}
|
|
@@ -188,7 +188,7 @@ export class ConfigStore {
|
|
|
188
188
|
|
|
189
189
|
async #list(ctx) {
|
|
190
190
|
const storage = HelixStorage.fromContext(ctx).configBus();
|
|
191
|
-
const key =
|
|
191
|
+
const key = `orgs/${this.org}/${this.type}/`;
|
|
192
192
|
const list = await storage.list(key);
|
|
193
193
|
return {
|
|
194
194
|
[this.type]: list.map((entry) => {
|