Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/ban-bare-conform-zod-import.md

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down