From 94020cd3e1dcde0f01ca46f08f8fb2f61bdb2f7a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 19 Jul 2026 12:15:56 +0000 Subject: [PATCH] chore: version packages --- .changeset/ban-bare-conform-zod-import.md | 5 ----- CHANGELOG.md | 6 ++++++ package.json | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 .changeset/ban-bare-conform-zod-import.md diff --git a/.changeset/ban-bare-conform-zod-import.md b/.changeset/ban-bare-conform-zod-import.md deleted file mode 100644 index 85ead21..0000000 --- a/.changeset/ban-bare-conform-zod-import.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@gaia-react/lint': minor ---- - -Ban the bare `@conform-to/zod` import specifier via `no-restricted-imports` in the base config. The bare specifier targets Zod v3 and throws at RUNTIME — uncaught by typecheck, lint, and build — so a wrong import previously shipped silently and only failed in the running app. Import from `@conform-to/zod/v4` instead. The ban uses exact-match `paths`, so the distinct `@conform-to/zod/v4` specifier is unaffected; test and story files keep the ban alongside their existing server-only/`internals` import restrictions. Consumers with a bare `@conform-to/zod` import will see a new lint error on upgrade. diff --git a/CHANGELOG.md b/CHANGELOG.md index 5625404..206b3a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # @gaia-react/lint +## 1.10.0 + +### Minor Changes + +- [#38](https://github.com/gaia-react/lint/pull/38) [`7bf6cec`](https://github.com/gaia-react/lint/commit/7bf6cec060655c1bd6044cc5d5f37ba366929ff4) Thanks [@stevensacks](https://github.com/stevensacks)! - Ban the bare `@conform-to/zod` import specifier via `no-restricted-imports` in the base config. The bare specifier targets Zod v3 and throws at RUNTIME — uncaught by typecheck, lint, and build — so a wrong import previously shipped silently and only failed in the running app. Import from `@conform-to/zod/v4` instead. The ban uses exact-match `paths`, so the distinct `@conform-to/zod/v4` specifier is unaffected; test and story files keep the ban alongside their existing server-only/`internals` import restrictions. Consumers with a bare `@conform-to/zod` import will see a new lint error on upgrade. + ## 1.9.0 ### Minor Changes diff --git a/package.json b/package.json index fb364e2..1f32645 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@gaia-react/lint", - "version": "1.9.0", + "version": "1.10.0", "description": "GAIA's opinionated lint configuration.", "type": "module", "main": "./dist/index.js",