@xata.io/drizzle 0.0.0-alpha.vee1f39742cd543fbe093d8b45a00750baae5eb86 → 0.0.0-alpha.vee60d01f8d9f562a061b11c1d2bcbbd7066089e0

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.
@@ -8,10 +8,10 @@
8
8
  https://rollupjs.org/troubleshooting/#warning-treating-module-as-external-dependency
9
9
  drizzle-orm (imported by "src/http/driver.ts", "src/http/session.ts" and "src/shared/utils.ts")
10
10
  drizzle-orm/pg-core (imported by "src/http/driver.ts" and "src/http/session.ts")
11
- created dist/index.cjs, dist/index.mjs in 369ms
11
+ created dist/index.cjs, dist/index.mjs in 490ms
12
12
  
13
13
  src/index.ts → dist/index.d.ts...
14
- created dist/index.d.ts in 7s
14
+ created dist/index.d.ts in 7.3s
15
15
  
16
16
  src/pg/index.ts → dist/pg.cjs, dist/pg.mjs...
17
17
  (!) Unresolved dependencies
@@ -19,7 +19,7 @@
19
19
  drizzle-orm (imported by "src/pg/driver.ts", "src/pg/session.ts" and "src/shared/utils.ts")
20
20
  drizzle-orm/pg-core (imported by "src/pg/driver.ts" and "src/pg/session.ts")
21
21
  pg (imported by "src/pg/session.ts")
22
- created dist/pg.cjs, dist/pg.mjs in 36ms
22
+ created dist/pg.cjs, dist/pg.mjs in 35ms
23
23
  
24
24
  src/pg/index.ts → dist/pg.d.ts...
25
- created dist/pg.d.ts in 1.7s
25
+ created dist/pg.d.ts in 1.5s
package/CHANGELOG.md CHANGED
@@ -1,13 +1,13 @@
1
1
  # @xata.io/drizzle
2
2
 
3
- ## 0.0.0-alpha.vee1f39742cd543fbe093d8b45a00750baae5eb86
3
+ ## 0.0.0-alpha.vee60d01f8d9f562a061b11c1d2bcbbd7066089e0
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Force canary build
8
8
 
9
9
  - Updated dependencies []:
10
- - @xata.io/client@0.0.0-alpha.vee1f39742cd543fbe093d8b45a00750baae5eb86
10
+ - @xata.io/client@0.0.0-alpha.vee60d01f8d9f562a061b11c1d2bcbbd7066089e0
11
11
 
12
12
  ## 0.0.23
13
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xata.io/drizzle",
3
- "version": "0.0.0-alpha.vee1f39742cd543fbe093d8b45a00750baae5eb86",
3
+ "version": "0.0.0-alpha.vee60d01f8d9f562a061b11c1d2bcbbd7066089e0",
4
4
  "description": "",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -23,12 +23,12 @@
23
23
  "url": "https://github.com/xataio/client-ts/issues"
24
24
  },
25
25
  "dependencies": {
26
- "@xata.io/client": "0.0.0-alpha.vee1f39742cd543fbe093d8b45a00750baae5eb86"
26
+ "@xata.io/client": "0.0.0-alpha.vee60d01f8d9f562a061b11c1d2bcbbd7066089e0"
27
27
  },
28
28
  "devDependencies": {
29
- "@types/pg": "^8.11.8",
29
+ "@types/pg": "^8.11.10",
30
30
  "drizzle-orm": "^0.33.0",
31
- "pg": "^8.12.0"
31
+ "pg": "^8.13.0"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "drizzle-orm": "*"
@@ -76,14 +76,13 @@ function getDrizzleClient(type: string, database: string, branch: string) {
76
76
  }
77
77
  }
78
78
 
79
- describe.concurrent.each([{ type: 'pg' }, { type: 'http' }])('Drizzle $type', ({ type }) => {
79
+ describe.skip.concurrent.each([{ type: 'pg' }, { type: 'http' }])('Drizzle $type', ({ type }) => {
80
80
  const dbName = `${database}-${type}`;
81
81
 
82
82
  beforeAll(async () => {
83
83
  await api.databases.createDatabase({
84
84
  pathParams: { workspaceId: workspace, dbName },
85
- body: { region, branchName: 'main' },
86
- headers: { 'X-Features': 'feat-pgroll-migrations=1' }
85
+ body: { region, branchName: 'main', postgresEnabled: true }
87
86
  });
88
87
 
89
88
  await waitForReplication(dbName);