docs: fix broken documentation links in README#2866
Merged
melloware merged 1 commit intoorval-labs:masterfrom Jan 27, 2026
Merged
docs: fix broken documentation links in README#2866melloware merged 1 commit intoorval-labs:masterfrom
melloware merged 1 commit intoorval-labs:masterfrom
Conversation
Update v8 migration guide links to include /docs prefix. The links were pointing to /versions/v8 instead of /docs/versions/v8 after the documentation restructure.
melloware
approved these changes
Jan 27, 2026
soufDev
pushed a commit
to soufDev/orval
that referenced
this pull request
Jan 27, 2026
Update v8 migration guide links to include /docs prefix. The links were pointing to /versions/v8 instead of /docs/versions/v8 after the documentation restructure.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes broken documentation links in README that were pointing to incorrect URLs after the documentation restructure.
The v8 migration guide links were missing the /docs prefix in the URL path, causing 404 errors when users tried to access the
migration documentation.
Problem
After the documentation site was migrated from Next.js to TanStack Start + Fumadocs (PR #2856), the URL structure changed from
orval.dev/versions/v8toorval.dev/docs/versions/v8.The README.md in the root directory still contained the old links without the /docs prefix, resulting in broken links that led to
404 pages instead of the v8 migration guide.
Changes