@adobe/spacecat-shared-data-access 3.55.0 → 3.55.1

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,9 @@
1
+ ## [@adobe/spacecat-shared-data-access-v3.55.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.55.0...@adobe/spacecat-shared-data-access-v3.55.1) (2026-04-29)
2
+
3
+ ### Bug Fixes
4
+
5
+ * BaseModel/Patcher record desync after save() causes silent sette… ([#1567](https://github.com/adobe/spacecat-shared/issues/1567)) ([c9c782d](https://github.com/adobe/spacecat-shared/commit/c9c782dab95d588852f8b2931405f0174965c346))
6
+
1
7
  ## [@adobe/spacecat-shared-data-access-v3.55.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.54.0...@adobe/spacecat-shared-data-access-v3.55.0) (2026-04-28)
2
8
 
3
9
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-data-access",
3
- "version": "3.55.0",
3
+ "version": "3.55.1",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "engines": {
@@ -180,7 +180,7 @@ class Patcher {
180
180
  && typeof this.collection.applyUpdateWatchers === 'function'
181
181
  && typeof this.collection.updateByKeys === 'function') {
182
182
  const watched = this.collection.applyUpdateWatchers(this.record, updates);
183
- this.record = watched.record;
183
+ Object.assign(this.record, watched.record);
184
184
  await this.collection.updateByKeys(keys, watched.updates);
185
185
  return;
186
186
  }