@prisma/migrate 7.9.0-dev.5 → 7.9.0-dev.7

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/bin.js CHANGED
@@ -67,7 +67,7 @@ var import_config = require("@prisma/config");
67
67
  var import_debug = __toESM(require("@prisma/debug"));
68
68
  var import_engines_version = require("@prisma/engines-version");
69
69
  var import_internals = require("@prisma/internals");
70
- var version = "7.9.0-dev.5";
70
+ var version = "7.9.0-dev.7";
71
71
  process.on("uncaughtException", (e) => {
72
72
  console.log(e);
73
73
  });
@@ -16,11 +16,11 @@ var __copyProps = (to, from, except, desc) => {
16
16
  return to;
17
17
  };
18
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
- var chunk_QVMYNWAN_exports = {};
20
- __export(chunk_QVMYNWAN_exports, {
19
+ var chunk_5JVYZEWJ_exports = {};
20
+ __export(chunk_5JVYZEWJ_exports, {
21
21
  require_lib: () => require_lib2
22
22
  });
23
- module.exports = __toCommonJS(chunk_QVMYNWAN_exports);
23
+ module.exports = __toCommonJS(chunk_5JVYZEWJ_exports);
24
24
  var import_chunk_2ESYSVXG = require("./chunk-2ESYSVXG.js");
25
25
  var require_postgres_array = (0, import_chunk_2ESYSVXG.__commonJS)({
26
26
  "../../node_modules/.pnpm/postgres-array@2.0.0/node_modules/postgres-array/index.js"(exports) {
@@ -322,11 +322,12 @@ var require_postgres_interval = (0, import_chunk_2ESYSVXG.__commonJS)({
322
322
  }
323
323
  });
324
324
  var require_postgres_bytea = (0, import_chunk_2ESYSVXG.__commonJS)({
325
- "../../node_modules/.pnpm/postgres-bytea@1.0.0/node_modules/postgres-bytea/index.js"(exports, module2) {
325
+ "../../node_modules/.pnpm/postgres-bytea@1.0.1/node_modules/postgres-bytea/index.js"(exports, module2) {
326
326
  "use strict";
327
+ var bufferFrom = Buffer.from || Buffer;
327
328
  module2.exports = function parseBytea(input) {
328
329
  if (/^\\x/.test(input)) {
329
- return new Buffer(input.substr(2), "hex");
330
+ return bufferFrom(input.substr(2), "hex");
330
331
  }
331
332
  var output = "";
332
333
  var i = 0;
@@ -350,7 +351,7 @@ var require_postgres_bytea = (0, import_chunk_2ESYSVXG.__commonJS)({
350
351
  }
351
352
  }
352
353
  }
353
- return new Buffer(output, "binary");
354
+ return bufferFrom(output, "binary");
354
355
  };
355
356
  }
356
357
  });
@@ -32,12 +32,12 @@ __export(setupCockroach_exports, {
32
32
  tearDownCockroach: () => tearDownCockroach
33
33
  });
34
34
  module.exports = __toCommonJS(setupCockroach_exports);
35
- var import_chunk_QVMYNWAN = require("../chunk-QVMYNWAN.js");
35
+ var import_chunk_5JVYZEWJ = require("../chunk-5JVYZEWJ.js");
36
36
  var import_chunk_2ESYSVXG = require("../chunk-2ESYSVXG.js");
37
37
  var import_internals = require("@prisma/internals");
38
38
  var import_fs = __toESM(require("fs"));
39
39
  var import_path = __toESM(require("path"));
40
- var import_pg = (0, import_chunk_2ESYSVXG.__toESM)((0, import_chunk_QVMYNWAN.require_lib)());
40
+ var import_pg = (0, import_chunk_2ESYSVXG.__toESM)((0, import_chunk_5JVYZEWJ.require_lib)());
41
41
  async function setupCockroach(options) {
42
42
  const { connectionString } = options;
43
43
  const { dirname } = options;
@@ -33,12 +33,12 @@ __export(setupPostgres_exports, {
33
33
  tearDownPostgres: () => tearDownPostgres
34
34
  });
35
35
  module.exports = __toCommonJS(setupPostgres_exports);
36
- var import_chunk_QVMYNWAN = require("../chunk-QVMYNWAN.js");
36
+ var import_chunk_5JVYZEWJ = require("../chunk-5JVYZEWJ.js");
37
37
  var import_chunk_2ESYSVXG = require("../chunk-2ESYSVXG.js");
38
38
  var import_promises = __toESM(require("node:fs/promises"));
39
39
  var import_node_path = __toESM(require("node:path"));
40
40
  var import_internals = require("@prisma/internals");
41
- var import_pg = (0, import_chunk_2ESYSVXG.__toESM)((0, import_chunk_QVMYNWAN.require_lib)());
41
+ var import_pg = (0, import_chunk_2ESYSVXG.__toESM)((0, import_chunk_5JVYZEWJ.require_lib)());
42
42
  async function setupPostgres(options) {
43
43
  const { connectionString } = options;
44
44
  const { dirname } = options;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/migrate",
3
- "version": "7.9.0-dev.5",
3
+ "version": "7.9.0-dev.7",
4
4
  "description": "This package is intended for Prisma's internal use",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/migrate/src/index.d.ts",
@@ -44,7 +44,7 @@
44
44
  "tempy": "1.0.1",
45
45
  "ts-pattern": "5.6.2",
46
46
  "typescript": "5.4.5",
47
- "@prisma/adapter-libsql": "7.9.0-dev.5"
47
+ "@prisma/adapter-libsql": "7.9.0-dev.7"
48
48
  },
49
49
  "peerDependencies": {
50
50
  "@prisma/internals": "*"
@@ -52,13 +52,13 @@
52
52
  "dependencies": {
53
53
  "@prisma/engines-version": "7.8.0-6.3c6e192761c0362d496ed980de936e2f3cebcd3a",
54
54
  "prompts": "2.4.2",
55
- "@prisma/client-generator-registry": "7.9.0-dev.5",
56
- "@prisma/config": "7.9.0-dev.5",
57
- "@prisma/debug": "7.9.0-dev.5",
58
- "@prisma/generator": "7.9.0-dev.5",
59
- "@prisma/get-platform": "7.9.0-dev.5",
60
- "@prisma/driver-adapter-utils": "7.9.0-dev.5",
61
- "@prisma/internals": "7.9.0-dev.5"
55
+ "@prisma/client-generator-registry": "7.9.0-dev.7",
56
+ "@prisma/config": "7.9.0-dev.7",
57
+ "@prisma/driver-adapter-utils": "7.9.0-dev.7",
58
+ "@prisma/get-platform": "7.9.0-dev.7",
59
+ "@prisma/internals": "7.9.0-dev.7",
60
+ "@prisma/debug": "7.9.0-dev.7",
61
+ "@prisma/generator": "7.9.0-dev.7"
62
62
  },
63
63
  "files": [
64
64
  "README.md",