@qualithm/arrow-flight-sql-js 1.6.0 → 1.6.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/README.md +9 -1
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -14,6 +14,7 @@ SQL-specific functionality on top of Arrow Flight for database interactions. Bui
|
|
|
14
14
|
- Database metadata queries (catalogs, schemas, tables, keys)
|
|
15
15
|
- Query cancellation
|
|
16
16
|
- TypeScript-first with comprehensive type definitions
|
|
17
|
+
- Cross-runtime: Bun, Node.js 20+, Deno
|
|
17
18
|
- Streaming results with async iterables
|
|
18
19
|
- Comprehensive error handling with typed error codes
|
|
19
20
|
- ESM-only, tree-shakeable
|
|
@@ -126,7 +127,7 @@ See the [examples](./examples) directory for complete, runnable demonstrations.
|
|
|
126
127
|
|
|
127
128
|
### Prerequisites
|
|
128
129
|
|
|
129
|
-
- [Bun](https://bun.sh/) (recommended)
|
|
130
|
+
- [Bun](https://bun.sh/) (recommended), Node.js 20+, or [Deno](https://deno.land/)
|
|
130
131
|
|
|
131
132
|
### Setup
|
|
132
133
|
|
|
@@ -150,6 +151,13 @@ bun test
|
|
|
150
151
|
FLIGHT_HOST=localhost FLIGHT_PORT=50051 bun run test:integration
|
|
151
152
|
```
|
|
152
153
|
|
|
154
|
+
### Benchmarks
|
|
155
|
+
|
|
156
|
+
```bash
|
|
157
|
+
# Requires running Arrow Flight SQL server
|
|
158
|
+
FLIGHT_HOST=localhost FLIGHT_PORT=50051 bun run bench
|
|
159
|
+
```
|
|
160
|
+
|
|
153
161
|
### Linting & Formatting
|
|
154
162
|
|
|
155
163
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qualithm/arrow-flight-sql-js",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"description": "Arrow Flight SQL client for JavaScript and TypeScript runtimes.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -68,18 +68,19 @@
|
|
|
68
68
|
"apache-arrow": ">=17.0.0"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@qualithm/arrow-flight-js": "1.7.0",
|
|
72
|
-
"apache-arrow": "21.1.0",
|
|
73
71
|
"@eslint/js": "10.0.1",
|
|
74
|
-
"
|
|
75
|
-
"ts-proto": "2.11.2",
|
|
72
|
+
"@qualithm/arrow-flight-js": "1.7.0",
|
|
76
73
|
"@types/bun": "1.3.9",
|
|
74
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
75
|
+
"apache-arrow": "21.1.0",
|
|
77
76
|
"eslint": "10.0.2",
|
|
78
77
|
"eslint-plugin-simple-import-sort": "12.1.1",
|
|
79
78
|
"eslint-plugin-unused-imports": "4.4.1",
|
|
80
79
|
"globals": "17.3.0",
|
|
80
|
+
"grpc-tools": "1.13.1",
|
|
81
81
|
"jiti": "2.6.1",
|
|
82
82
|
"prettier": "3.8.1",
|
|
83
|
+
"ts-proto": "2.11.2",
|
|
83
84
|
"typedoc": "0.28.17",
|
|
84
85
|
"typescript": "5.9.3",
|
|
85
86
|
"typescript-eslint": "8.56.1",
|