cry-synced-db-client 0.1.121 → 0.1.122
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/VERSIONS.md +14 -0
- package/package.json +3 -2
package/VERSIONS.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Versions
|
|
2
|
+
|
|
3
|
+
## 0.1.122 (2026-04-08)
|
|
4
|
+
|
|
5
|
+
- Ensure `_id` is never falsy (undefined/null/0/"") in `upsert`, `insert`, and `save`
|
|
6
|
+
- `upsert`/`insert`: falsy `_id` replaced with new ObjectId before any operation
|
|
7
|
+
- `save`: falsy `_id` stripped from update partial to prevent overwriting valid id
|
|
8
|
+
|
|
9
|
+
## 0.1.120 (2026-04-08)
|
|
10
|
+
|
|
11
|
+
- Ping failure message now includes the REST endpoint URL: "Ping to [URL] failed - staying offline"
|
|
12
|
+
- Ebus-proxy WebSocket connect/disconnect status messages logged on startup and reconnect
|
|
13
|
+
- Added `endpoint` property to `I_RestInterface` and `I_ServerUpdateNotifier` interfaces (for diagnostics/logging)
|
|
14
|
+
- Fixed `getDirty()` test assertions that assumed absent collections have `.length === 0`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cry-synced-db-client",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.122",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
15
|
-
"dist"
|
|
15
|
+
"dist",
|
|
16
|
+
"VERSIONS.md"
|
|
16
17
|
],
|
|
17
18
|
"scripts": {
|
|
18
19
|
"clean": "rm -rf dist",
|