@gizmodata/gizmosql-mcp 0.4.3 → 0.4.4

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.4.4] - 2026-09-09
11
+
12
+ ### Changed
13
+ - Requires `@gizmodata/gizmosql-client` >= 2.2.1, which bundles gizmosql-adbc
14
+ v2.0.13: parameterized DDL/DML sent through `execute_statement` with bound
15
+ parameters now executes immediately instead of running lazily on the server,
16
+ where it could be silently lost or interrupted by the client's own cancel.
17
+
10
18
  ## [0.4.3] - 2026-09-09
11
19
 
12
20
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizmodata/gizmosql-mcp",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Model Context Protocol (MCP) server and Claude Desktop extension for GizmoSQL",
5
5
  "author": "GizmoData LLC",
6
6
  "license": "Apache-2.0",
@@ -50,7 +50,7 @@
50
50
  "prepublishOnly": "npm run typecheck && npm run lint:ci && npm test"
51
51
  },
52
52
  "dependencies": {
53
- "@gizmodata/gizmosql-client": "^2.2.0",
53
+ "@gizmodata/gizmosql-client": "^2.2.1",
54
54
  "@modelcontextprotocol/sdk": "^1.30.0",
55
55
  "apache-arrow": "^21.0.0",
56
56
  "jose": "^6.2.12",
@@ -66,6 +66,6 @@
66
66
  "typescript-eslint": "^8.0.0"
67
67
  },
68
68
  "allowScripts": {
69
- "@gizmodata/gizmosql-client@2.2.0": true
69
+ "@gizmodata/gizmosql-client@2.2.1": true
70
70
  }
71
71
  }