musora-content-services 2.160.2 → 2.160.3
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
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [2.160.3](https://github.com/railroadmedia/musora-content-services/compare/v2.160.2...v2.160.3) (2026-05-14)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* do immediate push after record repair ([#975](https://github.com/railroadmedia/musora-content-services/issues/975)) ([c087536](https://github.com/railroadmedia/musora-content-services/commit/c08753659fb5b1342ae8499fbf296ed4a2197625))
|
|
11
|
+
|
|
5
12
|
### [2.160.2](https://github.com/railroadmedia/musora-content-services/compare/v2.160.1...v2.160.2) (2026-05-14)
|
|
6
13
|
|
|
7
14
|
|
package/package.json
CHANGED
|
@@ -63,4 +63,11 @@ export async function repairStaleSyncedRecords(storesRegistry: Record<string, Sy
|
|
|
63
63
|
|
|
64
64
|
SyncTelemetry.getInstance()?.log('[SyncManager] repaired stale synced records', { records: repairedByTable })
|
|
65
65
|
await db.write(() => db.localStorage.set(CLEANUP_FLAG_KEY, '1'))
|
|
66
|
+
|
|
67
|
+
for (const table of SYNC_TABLES) {
|
|
68
|
+
const store = storesRegistry[table]
|
|
69
|
+
if (!store) continue
|
|
70
|
+
|
|
71
|
+
await store.pushUnsyncedWithRetry()
|
|
72
|
+
}
|
|
66
73
|
}
|