@zvndev/powdb-client 0.18.0 → 0.18.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 +16 -0
- package/dist/cjs/index.d.ts +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.18.2 - 2026-07-21
|
|
4
|
+
|
|
5
|
+
- Version-alignment release in lockstep with workspace v0.18.2 (engine
|
|
6
|
+
correctness patch: PowQL single-table aliased qualified-ref resolution, and
|
|
7
|
+
two-valued filter semantics so a missing value never matches a comparison).
|
|
8
|
+
No TypeScript API changes.
|
|
9
|
+
|
|
10
|
+
## 0.18.1 - 2026-07-21
|
|
11
|
+
|
|
12
|
+
- Version-alignment release in lockstep with workspace v0.18.1 (engine
|
|
13
|
+
correctness patch: SQL qualified-ref resolution, planner range bounds,
|
|
14
|
+
plan-cache literal ordering, live-backup lock, `not` precedence, nested
|
|
15
|
+
float fidelity). Servers now send error class 8 (constraint_violation) for
|
|
16
|
+
unique violations, which this client already mapped. No TypeScript API
|
|
17
|
+
changes.
|
|
18
|
+
|
|
3
19
|
## 0.18.0 - 2026-07-20
|
|
4
20
|
|
|
5
21
|
- Version-alignment release in lockstep with workspace v0.18.0 (nested
|
package/dist/cjs/index.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ import { EventEmitter } from "node:events";
|
|
|
19
19
|
import { type NativeJson, type SyncRepairAction, type WireRetainedUnit, type WireSyncStatus, type WireValue } from "./protocol.js";
|
|
20
20
|
import { type TypedRow, type TypedSchema } from "./typed.js";
|
|
21
21
|
/** Client library version. Compared to the server's reported version. */
|
|
22
|
-
export declare const CLIENT_VERSION = "0.18.
|
|
22
|
+
export declare const CLIENT_VERSION = "0.18.2";
|
|
23
23
|
/**
|
|
24
24
|
* The maximum catalog format version this client can read. State this as the
|
|
25
25
|
* `catalogVersion` in sync pull requests: the server accepts any replica whose
|
package/dist/cjs/index.js
CHANGED
|
@@ -59,7 +59,7 @@ const errors_js_1 = require("./errors.js");
|
|
|
59
59
|
const script_js_1 = require("./script.js");
|
|
60
60
|
const typed_js_1 = require("./typed.js");
|
|
61
61
|
/** Client library version. Compared to the server's reported version. */
|
|
62
|
-
exports.CLIENT_VERSION = "0.18.
|
|
62
|
+
exports.CLIENT_VERSION = "0.18.2";
|
|
63
63
|
/**
|
|
64
64
|
* The maximum catalog format version this client can read. State this as the
|
|
65
65
|
* `catalogVersion` in sync pull requests: the server accepts any replica whose
|
package/dist/index.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ import { EventEmitter } from "node:events";
|
|
|
19
19
|
import { type NativeJson, type SyncRepairAction, type WireRetainedUnit, type WireSyncStatus, type WireValue } from "./protocol.js";
|
|
20
20
|
import { type TypedRow, type TypedSchema } from "./typed.js";
|
|
21
21
|
/** Client library version. Compared to the server's reported version. */
|
|
22
|
-
export declare const CLIENT_VERSION = "0.18.
|
|
22
|
+
export declare const CLIENT_VERSION = "0.18.2";
|
|
23
23
|
/**
|
|
24
24
|
* The maximum catalog format version this client can read. State this as the
|
|
25
25
|
* `catalogVersion` in sync pull requests: the server accepts any replica whose
|
package/dist/index.js
CHANGED
|
@@ -22,7 +22,7 @@ import { errorCodeForWireClass, isPowDBError, PowDBError, PowDBScriptError, } fr
|
|
|
22
22
|
import { splitStatements } from "./script.js";
|
|
23
23
|
import { coerceRows, } from "./typed.js";
|
|
24
24
|
/** Client library version. Compared to the server's reported version. */
|
|
25
|
-
export const CLIENT_VERSION = "0.18.
|
|
25
|
+
export const CLIENT_VERSION = "0.18.2";
|
|
26
26
|
/**
|
|
27
27
|
* The maximum catalog format version this client can read. State this as the
|
|
28
28
|
* `catalogVersion` in sync pull requests: the server accepts any replica whose
|