@adobe/helix-config 3.3.0 → 3.3.2
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 +1 -1
- package/src/index.js +1 -0
- package/src/storage/config-store.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [3.3.2](https://github.com/adobe/helix-config/compare/v3.3.1...v3.3.2) (2024-06-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* use correct prefix ([#112](https://github.com/adobe/helix-config/issues/112)) ([e194a57](https://github.com/adobe/helix-config/commit/e194a571cfc5f059dbd4ac193052ddd824daa34b))
|
|
7
|
+
|
|
8
|
+
## [3.3.1](https://github.com/adobe/helix-config/compare/v3.3.0...v3.3.1) (2024-06-21)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* export config merge ([#111](https://github.com/adobe/helix-config/issues/111)) ([25f9680](https://github.com/adobe/helix-config/commit/25f9680f74e9dc90a5593d042b75aa0102ebf74d))
|
|
14
|
+
|
|
1
15
|
# [3.3.0](https://github.com/adobe/helix-config/compare/v3.2.15...v3.3.0) (2024-06-21)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -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) => {
|