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
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,8 @@ jobs:
run: pnpm lint:framework-vocabulary
- name: Check upgrade-instruction coverage
run: pnpm check:upgrade-coverage --mode pr
- name: Check error-reference completeness
run: pnpm check:error-reference
- name: Check release notes
run: pnpm check:release-notes --mode pr

Expand Down
2 changes: 1 addition & 1 deletion docs/Error Handling.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This document defines shared error concepts for Prisma Next so we can be consistent across packages and planes (CLI, migration planning, query planning, runtime execution).

See [ADR 239 — Errors are structural envelopes with dotted namespace codes](architecture%20docs/adrs/ADR%20239%20-%20Errors%20are%20structural%20envelopes%20with%20dotted%20namespace%20codes.md) for the concrete code format, namespace list, and the `StructuredError` mechanism that implements the taxonomy below.
See [ADR 239 — Errors are structural envelopes with dotted namespace codes](architecture%20docs/adrs/ADR%20239%20-%20Errors%20are%20structural%20envelopes%20with%20dotted%20namespace%20codes.md) for the concrete code format, namespace list, and the `StructuredError` mechanism that implements the taxonomy below. The [error reference](reference/error-reference.md) lists every published code; CI keeps it complete (`pnpm check:error-reference`).

## Goals

Expand Down
1 change: 1 addition & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ This directory contains the primary documentation for the repository.
## Reference

- [Glossary](./glossary.md) — user-facing terminology (source of truth for naming)
- [Error reference](./reference/error-reference.md) — every published `NAMESPACE.SUBCODE` error code; completeness enforced by `pnpm check:error-reference`
- [Commands](./commands/README.md) — command docs and entry points
- [Reference docs](./reference/) — conventions and patterns used across the codebase
- [Codec authoring guide](./reference/codec-authoring-guide.md) — class-based codecs (`CodecImpl`, `CodecDescriptorImpl`) and column helpers
Expand Down
Loading
Loading