docs: fix three dead links to the Cosmos SDK documentation - #169
Open
boleklebovski wants to merge 1 commit into
Open
docs: fix three dead links to the Cosmos SDK documentation#169boleklebovski wants to merge 1 commit into
boleklebovski wants to merge 1 commit into
Conversation
`docs.cosmos.network` retired the /main/ tree and the old /v0.45/ HTML pages. Repointed at the versioned /sdk/v0.50/ docs, which are live and match the SDK version these pages describe. Signed-off-by: boleklebovski <160799963+boleklebovski@users.noreply.github.com>
|
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
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.
Problem
Three links to the Cosmos SDK documentation are dead (404):
developers/developer-guides/tools/oracles/connect/introduction.mdxhttps://docs.cosmos.network/main/build/abci/vote-extensionsdevelopers/running-nodes/manual-setup/cosmovisor.mdxhttps://docs.cosmos.network/main/tooling/cosmovisordevelopers/running-nodes/manual-setup/cosmovisor.mdxhttps://docs.cosmos.network/v0.45/run-node/cosmovisor.htmldocs.cosmos.networkretired the/main/...tree and the old/v0.45/...HTML pages. Readers following the Cosmovisor setup instructions — the one page that tells a node operator how to install the tool — currently land on a 404 twice.Change
Repointed all three at the versioned SDK docs, which are live and match the SDK version this documentation targets (the Connect page explicitly says "Cosmos SDK version 0.50"):
https://docs.cosmos.network/sdk/v0.50/build/abci/vote-extensionshttps://docs.cosmos.network/sdk/v0.50/build/tooling/cosmovisorI used the versioned
/sdk/v0.50/...paths rather than/sdk/latest/...deliberately:latesthas been reorganised and does not carry these paths, whereasv0.50does and is the version this page describes. Each replacement URL was requested individually and returns200.Note that both Cosmovisor links now resolve to the same page — upstream merged the "about" and "install" content into a single Cosmovisor document, so there is no longer a separate install page to point the second link at.
Verification
404,404,404. New URLs:200,200.prettier --check(proseWrap: always,printWidth: 80), which is whatnpm run format:checkruns in CI. Only the one line that needed it was reflowed; the long link lines are single unbreakable tokens that prettier leaves intact.Note
Low Risk
Documentation link updates only; no runtime, auth, or application code changes.
Overview
Fixes three broken Cosmos SDK doc URLs that returned 404 after
docs.cosmos.networkretired/main/...and old/v0.45/...pages.The Connect oracle intro now points Vote Extensions at
/sdk/v0.50/build/abci/vote-extensions, matching the page’s stated SDK 0.50 target. The Cosmovisor node-setup page updates both the tool link and the install instructions link to/sdk/v0.50/build/tooling/cosmovisor(upstream merged install content into one doc, so both references share the same URL). One line on the Cosmovisor page was re-wrapped for Prettier prose rules.Reviewed by Cursor Bugbot for commit 9567350. Bugbot is set up for automated code reviews on this repo. Configure here.