@cubejs-backend/mssql-driver 0.33.16 → 0.33.17

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
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.33.17](https://github.com/cube-js/cube/compare/v0.33.16...v0.33.17) (2023-05-29)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **mssql-driver:** Server crashes on streaming errors ([2e81345](https://github.com/cube-js/cube/commit/2e81345059c14c0880e8b7d1bde7c9d04e497bfa))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [0.33.16](https://github.com/cube-js/cube/compare/v0.33.15...v0.33.16) (2023-05-28)
7
18
 
8
19
 
@@ -124,6 +124,9 @@ class MSSqlDriver extends BaseDriver {
124
124
  request.on('error', (err) => {
125
125
  reject(err);
126
126
  });
127
+ stream.on('error', (err) => {
128
+ reject(err);
129
+ })
127
130
  });
128
131
  return {
129
132
  rowStream: stream,
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@cubejs-backend/mssql-driver",
3
3
  "description": "Cube.js MS SQL database driver",
4
4
  "author": "Cube Dev, Inc.",
5
- "version": "0.33.16",
5
+ "version": "0.33.17",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/cube-js/cube.git",
@@ -20,5 +20,5 @@
20
20
  "publishConfig": {
21
21
  "access": "public"
22
22
  },
23
- "gitHead": "a30fe6b716e211104addbf1ce840a275c8fef50d"
23
+ "gitHead": "51e3a298b10d96b7e6fae6fbdd7bf9733675a554"
24
24
  }