@prisma/query-plan-executor 7.10.0-dev.1 → 7.10.0-dev.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/dist/index.js +4 -1
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -93473,7 +93473,7 @@ __export(index_exports, {
|
|
|
93473
93473
|
module.exports = __toCommonJS(index_exports);
|
|
93474
93474
|
|
|
93475
93475
|
// package.json
|
|
93476
|
-
var version = "7.10.0-dev.
|
|
93476
|
+
var version = "7.10.0-dev.2";
|
|
93477
93477
|
|
|
93478
93478
|
// ../../node_modules/.pnpm/temporal-polyfill@0.3.0/node_modules/temporal-polyfill/chunks/internal.js
|
|
93479
93479
|
function clampProp(e2, n2, t2, o2, r2) {
|
|
@@ -106619,6 +106619,9 @@ function rewriteConnectionString(url2) {
|
|
|
106619
106619
|
if (url2.protocol === "mysql:") {
|
|
106620
106620
|
url2.protocol = "mariadb:";
|
|
106621
106621
|
}
|
|
106622
|
+
if (url2.hostname.startsWith("[") && url2.hostname.endsWith("]")) {
|
|
106623
|
+
url2.hostname = encodeURIComponent(url2.hostname.slice(1, -1));
|
|
106624
|
+
}
|
|
106622
106625
|
return url2;
|
|
106623
106626
|
}
|
|
106624
106627
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/query-plan-executor",
|
|
3
|
-
"version": "7.10.0-dev.
|
|
3
|
+
"version": "7.10.0-dev.2",
|
|
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",
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"hono": "^4.12.23",
|
|
20
20
|
"temporal-polyfill": "0.3.0",
|
|
21
21
|
"zod": "4.1.3",
|
|
22
|
-
"@prisma/adapter-
|
|
23
|
-
"@prisma/adapter-
|
|
24
|
-
"@prisma/
|
|
25
|
-
"@prisma/
|
|
26
|
-
"@prisma/adapter-
|
|
22
|
+
"@prisma/adapter-pg": "7.10.0-dev.2",
|
|
23
|
+
"@prisma/adapter-mariadb": "7.10.0-dev.2",
|
|
24
|
+
"@prisma/adapter-mssql": "7.10.0-dev.2",
|
|
25
|
+
"@prisma/client-engine-runtime": "7.10.0-dev.2",
|
|
26
|
+
"@prisma/driver-adapter-utils": "7.10.0-dev.2"
|
|
27
27
|
},
|
|
28
28
|
"files": [
|
|
29
29
|
"dist"
|