@xata.io/drizzle 0.0.0-alpha.vd517ef1d09d0bc27c092515901493ff0d6787462 → 0.0.0-alpha.vd55dd6f7afc464505760801805bea18b601997ff

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.
@@ -6,12 +6,12 @@
6
6
  src/index.ts → dist/index.cjs, dist/index.mjs...
7
7
  (!) Unresolved dependencies
8
8
  https://rollupjs.org/troubleshooting/#warning-treating-module-as-external-dependency
9
- drizzle-orm (imported by "src/http/session.ts", "src/http/driver.ts" and "src/shared/utils.ts")
10
- drizzle-orm/pg-core (imported by "src/http/session.ts" and "src/http/driver.ts")
11
- created dist/index.cjs, dist/index.mjs in 582ms
9
+ drizzle-orm (imported by "src/http/driver.ts", "src/http/session.ts" and "src/shared/utils.ts")
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 414ms
12
12
  
13
13
  src/index.ts → dist/index.d.ts...
14
- created dist/index.d.ts in 6.4s
14
+ created dist/index.d.ts in 5.6s
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 38ms
22
+ created dist/pg.cjs, dist/pg.mjs in 73ms
23
23
  
24
24
  src/pg/index.ts → dist/pg.d.ts...
25
- created dist/pg.d.ts in 1.6s
25
+ created dist/pg.d.ts in 1.4s
package/CHANGELOG.md CHANGED
@@ -1,13 +1,17 @@
1
1
  # @xata.io/drizzle
2
2
 
3
- ## 0.0.0-alpha.vd517ef1d09d0bc27c092515901493ff0d6787462
3
+ ## 0.0.0-alpha.vd55dd6f7afc464505760801805bea18b601997ff
4
+
5
+ ### Major Changes
6
+
7
+ - [#1533](https://github.com/xataio/client-ts/pull/1533) [`9d6fe62`](https://github.com/xataio/client-ts/commit/9d6fe626700d7112517bb72c9c51541976eb086f) Thanks [@eemmiillyy](https://github.com/eemmiillyy)! - Version 1.0
4
8
 
5
9
  ### Patch Changes
6
10
 
7
11
  - Force canary build
8
12
 
9
- - Updated dependencies [[`cc673c9`](https://github.com/xataio/client-ts/commit/cc673c9a7885351082020e360630eab5db78c652)]:
10
- - @xata.io/client@0.0.0-alpha.vd517ef1d09d0bc27c092515901493ff0d6787462
13
+ - Updated dependencies [[`cc673c9`](https://github.com/xataio/client-ts/commit/cc673c9a7885351082020e360630eab5db78c652), [`9d6fe62`](https://github.com/xataio/client-ts/commit/9d6fe626700d7112517bb72c9c51541976eb086f)]:
14
+ - @xata.io/client@0.0.0-alpha.vd55dd6f7afc464505760801805bea18b601997ff
11
15
 
12
16
  ## 0.0.22
13
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xata.io/drizzle",
3
- "version": "0.0.0-alpha.vd517ef1d09d0bc27c092515901493ff0d6787462",
3
+ "version": "0.0.0-alpha.vd55dd6f7afc464505760801805bea18b601997ff",
4
4
  "description": "",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -23,7 +23,7 @@
23
23
  "url": "https://github.com/xataio/client-ts/issues"
24
24
  },
25
25
  "dependencies": {
26
- "@xata.io/client": "0.0.0-alpha.vd517ef1d09d0bc27c092515901493ff0d6787462"
26
+ "@xata.io/client": "0.0.0-alpha.vd55dd6f7afc464505760801805bea18b601997ff"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/pg": "^8.11.6",
@@ -80,8 +80,7 @@ describe.concurrent.each([{ type: 'pg' }, { type: 'http' }])('Drizzle $type', ({
80
80
  beforeAll(async () => {
81
81
  await api.databases.createDatabase({
82
82
  pathParams: { workspaceId: workspace, dbName: database },
83
- body: { region, branchName: 'main' },
84
- headers: { 'X-Features': 'feat-pgroll-migrations=1' }
83
+ body: { region, branchName: 'main', postgresEnabled: true }
85
84
  });
86
85
 
87
86
  await waitForReplication();