@adobe/helix-config-storage 1.15.0 → 1.15.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 +3 -3
- package/src/config-store.js +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.15.2](https://github.com/adobe/helix-config-storage/compare/v1.15.1...v1.15.2) (2025-02-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update external fixes ([#93](https://github.com/adobe/helix-config-storage/issues/93)) ([b29ef4a](https://github.com/adobe/helix-config-storage/commit/b29ef4a8f76d6279d7a56adca602bd6b5da77ba7))
|
|
7
|
+
|
|
8
|
+
## [1.15.1](https://github.com/adobe/helix-config-storage/compare/v1.15.0...v1.15.1) (2025-02-13)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* keep secrets when updating entire site config ([#92](https://github.com/adobe/helix-config-storage/issues/92)) ([f12fdd3](https://github.com/adobe/helix-config-storage/commit/f12fdd3df2b47bf2f541c4c5316429a9814b30d8))
|
|
14
|
+
|
|
1
15
|
# [1.15.0](https://github.com/adobe/helix-config-storage/compare/v1.14.7...v1.15.0) (2025-02-06)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-config-storage",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.2",
|
|
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.6",
|
|
54
|
-
"semantic-release": "24.2.
|
|
54
|
+
"semantic-release": "24.2.3",
|
|
55
55
|
"xml2js": "0.6.2"
|
|
56
56
|
},
|
|
57
57
|
"lint-staged": {
|
|
@@ -66,6 +66,6 @@
|
|
|
66
66
|
"@adobe/helix-shared-utils": "3.0.2",
|
|
67
67
|
"ajv": "8.17.1",
|
|
68
68
|
"ajv-formats": "3.0.1",
|
|
69
|
-
"jose": "5.
|
|
69
|
+
"jose": "5.10.0"
|
|
70
70
|
}
|
|
71
71
|
}
|
package/src/config-store.js
CHANGED
|
@@ -551,6 +551,13 @@ export class ConfigStore {
|
|
|
551
551
|
if (!config.limits && old?.limits) {
|
|
552
552
|
config.limits = old.limits;
|
|
553
553
|
}
|
|
554
|
+
// never allow to update secrets or tokens in overall global update
|
|
555
|
+
if (old?.secrets) {
|
|
556
|
+
config.secrets = old.secrets;
|
|
557
|
+
}
|
|
558
|
+
if (old?.tokens) {
|
|
559
|
+
config.tokens = old.tokens;
|
|
560
|
+
}
|
|
554
561
|
}
|
|
555
562
|
|
|
556
563
|
if (this.type !== 'org') {
|