Skip to content

Commit afe6317

Browse files
0xcadamsrhbuckley
authored andcommitted
chore: update deps (rocicorp#223)
1 parent c505e31 commit afe6317

File tree

7 files changed

+732
-522
lines changed

7 files changed

+732
-522
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ coverage/
44
.DS_Store
55

66
*.tsbuildinfo
7-
./nested/
7+
./nested/
8+
.vscode/settings.json

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ You can also control optional outputs from the generator:
9696
- **--skip-declare**: Skip generating the module augmentation for default types in Zero.
9797
- **--enable-legacy-mutators**: Enable legacy CRUD mutators (sets `enableLegacyMutators` to `true` in the generated schema).
9898
- **--enable-legacy-queries**: Enable legacy CRUD queries (sets `enableLegacyQueries` to `true` in the generated schema).
99+
- **--suppress-defaults-warning**: Hide warnings for columns with database default values. By default, drizzle-zero warns when columns use database defaults (`.default()` or `.defaultFn()`) since these won't be available on the Zero client.
99100

100101
For more information on disabling legacy mutators and queries, see the [Zero documentation](https://zero.rocicorp.dev/docs/custom-mutators#disabling-crud-mutators).
101102

db/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
"drizzle-zero": "workspace:*"
1616
},
1717
"devDependencies": {
18-
"@testcontainers/postgresql": "^11.9.0",
19-
"@types/pg": "^8.15.6",
20-
"@vitest/browser": "^4.0.15",
18+
"@testcontainers/postgresql": "^11.11.0",
19+
"@types/pg": "^8.16.0",
20+
"@vitest/browser": "^4.0.16",
2121
"drizzle-kit": "^0.31.8",
2222
"pg": "^8.16.3",
23-
"postgres": "^3.4.7",
23+
"postgres": "^3.4.8",
2424
"prettier": "^3.7.4",
25-
"testcontainers": "^11.9.0",
26-
"zod": "^4.1.13"
25+
"testcontainers": "^11.11.0",
26+
"zod": "^4.3.5"
2727
}
2828
}

integration/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"dependencies": {
1212
"@drizzle-zero/custom-types": "workspace:*",
1313
"@drizzle-zero/db": "workspace:*",
14-
"@hono/node-server": "^1.19.6",
14+
"@hono/node-server": "^1.19.7",
1515
"drizzle-zero": "workspace:*",
16-
"hono": "^4.10.7",
17-
"zod": "^4.1.13"
16+
"hono": "^4.11.3",
17+
"zod": "^4.3.5"
1818
}
1919
}

no-config-integration/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"dependencies": {
1212
"@drizzle-zero/custom-types": "workspace:*",
1313
"@drizzle-zero/db": "workspace:*",
14-
"@hono/node-server": "^1.19.6",
14+
"@hono/node-server": "^1.19.7",
1515
"drizzle-zero": "workspace:*",
16-
"hono": "^4.10.7",
17-
"zod": "^4.1.13"
16+
"hono": "^4.11.3",
17+
"zod": "^4.3.5"
1818
}
1919
}

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "drizzle-zero",
3-
"version": "0.17.0",
3+
"version": "0.17.3",
44
"description": "Generate Zero schemas from Drizzle ORM schemas",
55
"type": "module",
66
"scripts": {
@@ -85,26 +85,26 @@
8585
},
8686
"devDependencies": {
8787
"@rocicorp/prettier-config": "^0.4.0",
88-
"@rocicorp/zero": "0.25.1",
88+
"@rocicorp/zero": "0.25.7",
8989
"@ts-morph/common": "^0.28.1",
90-
"@types/node": "^24.10.1",
91-
"@types/pg": "^8.15.6",
90+
"@types/node": "^25.0.3",
91+
"@types/pg": "^8.16.0",
9292
"@types/pluralize": "^0.0.33",
9393
"@types/ws": "^8.18.1",
94-
"@vitest/browser": "^4.0.15",
95-
"@vitest/coverage-v8": "4.0.15",
96-
"@vitest/ui": "^4.0.15",
94+
"@vitest/browser": "^4.0.16",
95+
"@vitest/coverage-v8": "4.0.16",
96+
"@vitest/ui": "^4.0.16",
9797
"drizzle-kit": "^0.31.8",
9898
"drizzle-orm": "^1.0.0-beta.2",
9999
"oxlint": "^1.31.0",
100-
"oxlint-tsgolint": "^0.8.3",
100+
"oxlint-tsgolint": "^0.10.1",
101101
"prettier": "^3.7.4",
102102
"tsup": "^8.5.1",
103103
"tsx": "^4.21.0",
104104
"typescript": "^5.9.3",
105-
"vite-tsconfig-paths": "^5.1.4",
106-
"vitest": "^4.0.15",
107-
"ws": "^8.18.3"
105+
"vite-tsconfig-paths": "^6.0.3",
106+
"vitest": "^4.0.16",
107+
"ws": "^8.19.0"
108108
},
109109
"pnpm": {
110110
"onlyBuiltDependencies": [
@@ -118,4 +118,4 @@
118118
},
119119
"packageManager": "pnpm@10.18.3",
120120
"prettier": "@rocicorp/prettier-config"
121-
}
121+
}

0 commit comments

Comments
 (0)