@adobe/helix-config-storage 2.8.3 → 2.8.5
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/config-store.js +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [2.8.5](https://github.com/adobe/helix-config-storage/compare/v2.8.4...v2.8.5) (2025-09-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update dependency @adobe/helix-shared-config to v11.1.10 ([#176](https://github.com/adobe/helix-config-storage/issues/176)) ([13bb4ef](https://github.com/adobe/helix-config-storage/commit/13bb4ef5a2064e6a59ff3940c4f486b9f7280ea0))
|
|
7
|
+
|
|
8
|
+
## [2.8.4](https://github.com/adobe/helix-config-storage/compare/v2.8.3...v2.8.4) (2025-09-05)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* redact secrets in versions ([#174](https://github.com/adobe/helix-config-storage/issues/174)) ([eed0f89](https://github.com/adobe/helix-config-storage/commit/eed0f8972f89b52618a036066a3d04f8f8d2a400))
|
|
14
|
+
|
|
1
15
|
## [2.8.3](https://github.com/adobe/helix-config-storage/compare/v2.8.2...v2.8.3) (2025-09-01)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
package/src/config-store.js
CHANGED
|
@@ -585,7 +585,9 @@ export class ConfigStore {
|
|
|
585
585
|
return this.listVersions(ctx);
|
|
586
586
|
}
|
|
587
587
|
if (relPath.startsWith('versions/')) {
|
|
588
|
-
|
|
588
|
+
const vs = await this.getVersion(ctx, Number.parseInt(relPath.substring('versions/'.length), 10));
|
|
589
|
+
redact(vs.data, null);
|
|
590
|
+
return vs;
|
|
589
591
|
}
|
|
590
592
|
|
|
591
593
|
const storage = HelixStorage.fromContext(ctx).configBus();
|