fix: convert relative links to absolute URLs in changelog docs#373
Merged
Conversation
Replace relative links (../CONTRIBUTING.md, ../AGENTS.md) with absolute GitHub URLs to fix mkdocs strict mode build failures. MkDocs cannot resolve links to files outside the docs directory. Also fix MD013 line length violations. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
|
Claude finished @davidpoblador's task —— View job Code Review Progress
|
davidpoblador
pushed a commit
that referenced
this pull request
Nov 6, 2025
🤖 I have created a release *beep* *boop* --- ## [2.13.5](v2.13.4...v2.13.5) (2025-11-06) ### Bug Fixes * convert relative links to absolute URLs in changelog docs ([#373](#373)) ([a3ab5cb](a3ab5cb)) * include chore commits in changelog ([#379](#379)) ([44ffea3](44ffea3)) * include refactor and perf commits in changelog ([#378](#378)) ([f98e9df](f98e9df)) ### Code Refactoring * remove template backwards compatibility symlink ([#377](#377)) ([3ba7e11](3ba7e11)) ### Miscellaneous Chores * add gh pr list and gh run list permissions ([#380](#380)) ([6fb0642](6fb0642)) * add permissions for uvx uv-bump and gh pr create ([#375](#375)) ([27e392a](27e392a)) * **deps:** update JavaScript and Python dependencies ([#374](#374)) ([0370036](0370036)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
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
Fix mkdocs strict mode build failures by converting relative links to absolute GitHub URLs
Problem
The docs workflow was failing with:
Solution
../CONTRIBUTING.md,../AGENTS.md) with absolute GitHub URLs--strictflag enabled for quality assuranceMkDocs cannot resolve links to files outside the docs directory, so absolute URLs are needed.
🤖 Generated with Claude Code