@adobe/helix-config-storage 2.8.3 → 2.8.4

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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## [2.8.4](https://github.com/adobe/helix-config-storage/compare/v2.8.3...v2.8.4) (2025-09-05)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * redact secrets in versions ([#174](https://github.com/adobe/helix-config-storage/issues/174)) ([eed0f89](https://github.com/adobe/helix-config-storage/commit/eed0f8972f89b52618a036066a3d04f8f8d2a400))
7
+
1
8
  ## [2.8.3](https://github.com/adobe/helix-config-storage/compare/v2.8.2...v2.8.3) (2025-09-01)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-config-storage",
3
- "version": "2.8.3",
3
+ "version": "2.8.4",
4
4
  "description": "Helix Config Storage",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -585,7 +585,9 @@ export class ConfigStore {
585
585
  return this.listVersions(ctx);
586
586
  }
587
587
  if (relPath.startsWith('versions/')) {
588
- return this.getVersion(ctx, Number.parseInt(relPath.substring('versions/'.length), 10));
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();