@qualithm/arrow-flight-sql-js 1.6.2 → 1.6.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/README.md +4 -0
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Arrow Flight SQL JS
2
2
 
3
+ [![CI](https://github.com/qualithm/arrow-flight-sql-js/actions/workflows/ci.yaml/badge.svg)](https://github.com/qualithm/arrow-flight-sql-js/actions/workflows/ci.yaml)
4
+ [![codecov](https://codecov.io/gh/qualithm/arrow-flight-sql-js/graph/badge.svg)](https://codecov.io/gh/qualithm/arrow-flight-sql-js)
5
+ [![npm](https://img.shields.io/npm/v/@qualithm/arrow-flight-sql-js)](https://www.npmjs.com/package/@qualithm/arrow-flight-sql-js)
6
+
3
7
  Arrow Flight SQL client for JavaScript and TypeScript runtimes.
4
8
 
5
9
  SQL-specific functionality on top of Arrow Flight for database interactions. Built on
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qualithm/arrow-flight-sql-js",
3
- "version": "1.6.2",
3
+ "version": "1.6.4",
4
4
  "description": "Arrow Flight SQL client for JavaScript and TypeScript runtimes.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -56,6 +56,7 @@
56
56
  "proto:generate": "grpc_tools_node_protoc --plugin=protoc-gen-ts_proto=./node_modules/.bin/protoc-gen-ts_proto --proto_path=./proto --ts_proto_out=./src/generated --ts_proto_opt=outputServices=grpc-js,esModuleInterop=true,importSuffix=.js,env=node,useExactTypes=false,snakeToCamel=true,outputPartialMethods=true,enumsAsLiterals=true proto/arrow/flight/protocol/sql/FlightSql.proto",
57
57
  "start": "bun run src/index.ts",
58
58
  "test:coverage": "vitest run --coverage",
59
+ "test:coverage:unit": "vitest run --coverage src/__tests__/unit",
59
60
  "test:integration": "vitest run src/__tests__/integration",
60
61
  "test:unit": "vitest run src/__tests__/unit",
61
62
  "test:watch": "vitest",
@@ -69,7 +70,7 @@
69
70
  },
70
71
  "devDependencies": {
71
72
  "@eslint/js": "10.0.1",
72
- "@qualithm/arrow-flight-js": "1.7.0",
73
+ "@qualithm/arrow-flight-js": "1.7.2",
73
74
  "@types/bun": "1.3.9",
74
75
  "@vitest/coverage-v8": "^4.0.18",
75
76
  "apache-arrow": "21.1.0",