@adobe/helix-config-storage 2.10.6 → 2.10.8

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,17 @@
1
+ ## [2.10.8](https://github.com/adobe/helix-config-storage/compare/v2.10.7...v2.10.8) (2026-02-25)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * ignore version id when comparing ([#224](https://github.com/adobe/helix-config-storage/issues/224)) ([0cda22f](https://github.com/adobe/helix-config-storage/commit/0cda22f1b4d44f44c13e32645c9b30d9fb837b53))
7
+
8
+ ## [2.10.7](https://github.com/adobe/helix-config-storage/compare/v2.10.6...v2.10.7) (2026-01-14)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** update dependency @adobe/helix-shared-process-queue to v3.1.5 ([#214](https://github.com/adobe/helix-config-storage/issues/214)) ([d8f77fc](https://github.com/adobe/helix-config-storage/commit/d8f77fc14dab67720e90d050e3971238b299cea4))
14
+
1
15
  ## [2.10.6](https://github.com/adobe/helix-config-storage/compare/v2.10.5...v2.10.6) (2026-01-06)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-config-storage",
3
- "version": "2.10.6",
3
+ "version": "2.10.8",
4
4
  "description": "Helix Config Storage",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -36,11 +36,11 @@
36
36
  "reporter-options": "configFile=.mocha-multi.json"
37
37
  },
38
38
  "devDependencies": {
39
- "@adobe/eslint-config-helix": "3.0.15",
40
- "@eslint/config-helpers": "0.5.0",
39
+ "@adobe/eslint-config-helix": "3.0.21",
40
+ "@eslint/config-helpers": "0.5.2",
41
41
  "@semantic-release/changelog": "6.0.3",
42
42
  "@semantic-release/git": "10.0.1",
43
- "@semantic-release/npm": "13.1.3",
43
+ "@semantic-release/npm": "13.1.4",
44
44
  "ajv-cli": "5.0.0",
45
45
  "c8": "10.1.3",
46
46
  "eslint": "9.4.0",
@@ -52,7 +52,7 @@
52
52
  "mocha-multi-reporters": "1.5.1",
53
53
  "mocha-suppress-logs": "0.6.0",
54
54
  "nock": "13.5.6",
55
- "semantic-release": "25.0.2",
55
+ "semantic-release": "25.0.3",
56
56
  "xml2js": "0.6.2"
57
57
  },
58
58
  "lint-staged": {
@@ -63,7 +63,7 @@
63
63
  "@adobe/fetch": "^4.2.0",
64
64
  "@adobe/helix-shared-config": "^11.1.4",
65
65
  "@adobe/helix-shared-git": "^3.0.18",
66
- "@adobe/helix-shared-process-queue": "3.1.4",
66
+ "@adobe/helix-shared-process-queue": "3.1.5",
67
67
  "@adobe/helix-shared-storage": "^1.4.0",
68
68
  "@adobe/helix-shared-string": "^2.1.0",
69
69
  "@adobe/helix-shared-utils": "^3.0.2",
@@ -486,9 +486,11 @@ export class ConfigStore {
486
486
  oldConfig = JSON.parse(buf);
487
487
  modified = !isDeepEqual({
488
488
  ...oldConfig,
489
+ version: 'ignore',
489
490
  lastModified: 'ignore',
490
491
  }, {
491
492
  ...config,
493
+ version: 'ignore',
492
494
  lastModified: 'ignore',
493
495
  });
494
496
  config.created = oldConfig.created;