@prisma/query-plan-executor 6.18.0-dev.10 → 6.18.0-dev.11
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/dist/index.js +7 -1
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -109115,7 +109115,7 @@ function isPromiseLike(value) {
|
|
|
109115
109115
|
}
|
|
109116
109116
|
|
|
109117
109117
|
// package.json
|
|
109118
|
-
var version = "6.18.0-dev.
|
|
109118
|
+
var version = "6.18.0-dev.11";
|
|
109119
109119
|
|
|
109120
109120
|
// src/utils/error.ts
|
|
109121
109121
|
function extractErrorFromUnknown(value) {
|
|
@@ -109873,6 +109873,11 @@ function parseConnectionString(connectionString) {
|
|
|
109873
109873
|
config3.options = config3.options || {};
|
|
109874
109874
|
config3.options.trustServerCertificate = trustServerCertificate.toLowerCase() === "true";
|
|
109875
109875
|
}
|
|
109876
|
+
const multiSubnetFailover = firstKey(parameters, "multiSubnetFailover");
|
|
109877
|
+
if (multiSubnetFailover !== null) {
|
|
109878
|
+
config3.options = config3.options || {};
|
|
109879
|
+
config3.options.multiSubnetFailover = multiSubnetFailover.toLowerCase() === "true";
|
|
109880
|
+
}
|
|
109876
109881
|
const connectionLimit = firstKey(parameters, "connectionLimit");
|
|
109877
109882
|
if (connectionLimit !== null) {
|
|
109878
109883
|
config3.pool = config3.pool || {};
|
|
@@ -110022,6 +110027,7 @@ var handledParameters = [
|
|
|
110022
110027
|
"initial catalog",
|
|
110023
110028
|
"isolationLevel",
|
|
110024
110029
|
"loginTimeout",
|
|
110030
|
+
"multiSubnetFailover",
|
|
110025
110031
|
"password",
|
|
110026
110032
|
"poolTimeout",
|
|
110027
110033
|
"pwd",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/query-plan-executor",
|
|
3
|
-
"version": "6.18.0-dev.
|
|
3
|
+
"version": "6.18.0-dev.11",
|
|
4
4
|
"description": "This package is intended for Prisma's internal use",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -20,11 +20,11 @@
|
|
|
20
20
|
"temporal-polyfill": "0.3.0",
|
|
21
21
|
"vitest": "3.2.4",
|
|
22
22
|
"zod": "4.1.3",
|
|
23
|
-
"@prisma/adapter-pg": "6.18.0-dev.
|
|
24
|
-
"@prisma/adapter-mariadb": "6.18.0-dev.
|
|
25
|
-
"@prisma/client-engine-runtime": "6.18.0-dev.
|
|
26
|
-
"@prisma/adapter-
|
|
27
|
-
"@prisma/
|
|
23
|
+
"@prisma/adapter-pg": "6.18.0-dev.11",
|
|
24
|
+
"@prisma/adapter-mariadb": "6.18.0-dev.11",
|
|
25
|
+
"@prisma/client-engine-runtime": "6.18.0-dev.11",
|
|
26
|
+
"@prisma/driver-adapter-utils": "6.18.0-dev.11",
|
|
27
|
+
"@prisma/adapter-mssql": "6.18.0-dev.11"
|
|
28
28
|
},
|
|
29
29
|
"files": [
|
|
30
30
|
"dist"
|