@zvndev/powdb-client 0.17.0 → 0.18.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,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.18.1 - 2026-07-21
4
+
5
+ - Version-alignment release in lockstep with workspace v0.18.1 (engine
6
+ correctness patch: SQL qualified-ref resolution, planner range bounds,
7
+ plan-cache literal ordering, live-backup lock, `not` precedence, nested
8
+ float fidelity). Servers now send error class 8 (constraint_violation) for
9
+ unique violations, which this client already mapped. No TypeScript API
10
+ changes.
11
+
12
+ ## 0.18.0 - 2026-07-20
13
+
14
+ - Version-alignment release in lockstep with workspace v0.18.0 (nested
15
+ projections: a PowQL projection field can embed a correlated child query and
16
+ return a native JSON array of shaped child objects per parent row). The
17
+ nested column arrives as an ordinary JSON value, so existing JSON handling
18
+ applies unchanged. No TypeScript API changes.
19
+
3
20
  ## 0.17.0 - 2026-07-19
4
21
 
5
22
  - **Typed wire error codes.** Servers >= 0.17.0 append a stable one-byte error
@@ -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.17.0";
22
+ export declare const CLIENT_VERSION = "0.18.1";
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.17.0";
62
+ exports.CLIENT_VERSION = "0.18.1";
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.17.0";
22
+ export declare const CLIENT_VERSION = "0.18.1";
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.17.0";
25
+ export const CLIENT_VERSION = "0.18.1";
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zvndev/powdb-client",
3
- "version": "0.17.0",
3
+ "version": "0.18.1",
4
4
  "description": "TypeScript client for PowDB (PowQL wire protocol)",
5
5
  "type": "module",
6
6
  "packageManager": "pnpm@10.29.3",
@@ -19,7 +19,12 @@
19
19
  }
20
20
  }
21
21
  },
22
- "files": ["dist", "README.md", "LICENSE", "CHANGELOG.md"],
22
+ "files": [
23
+ "dist",
24
+ "README.md",
25
+ "LICENSE",
26
+ "CHANGELOG.md"
27
+ ],
23
28
  "license": "MIT",
24
29
  "repository": {
25
30
  "type": "git",
@@ -51,7 +56,9 @@
51
56
  "@types/node": ">=18"
52
57
  },
53
58
  "peerDependenciesMeta": {
54
- "@types/node": { "optional": true }
59
+ "@types/node": {
60
+ "optional": true
61
+ }
55
62
  },
56
63
  "scripts": {
57
64
  "build": "npm run build:esm && npm run build:cjs",