Skip to content

Conversation

ericHgorski
Copy link
Contributor

@ericHgorski ericHgorski commented Mar 5, 2025

Description

Updates links from v0.47.0-rc1 to v0.50 to reflect the latest maintained version of the SDK. This change ensures that users are directed to the most up-to-date documentation and code references.

Author Checklist

All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues.

I have...

  • included the correct type prefix in the PR title, you can find examples of the prefixes below:
  • confirmed ! in the type prefix if API or client breaking change
  • targeted the correct branch (see PR Targeting)
  • provided a link to the relevant issue or specification
  • reviewed "Files changed" and left comments if necessary
  • included the necessary unit and integration tests
  • added a changelog entry to CHANGELOG.md
  • updated the relevant documentation or specification, including comments for documenting Go code
  • confirmed all CI checks have passed

Reviewers Checklist

All items are required. Please add a note if the item is not applicable and please add
your handle next to the items reviewed if you only reviewed selected items.

Please see Pull Request Reviewer section in the contributing guide for more information on how to review a pull request.

I have...

  • confirmed the correct type prefix in the PR title
  • confirmed all author checklist items have been addressed
  • reviewed state machine logic, API design and naming, documentation is accurate, tests and test coverage

Summary by CodeRabbit

  • Documentation
    • Updated documentation across multiple guides to reference the new version (v0.50.x) instead of the previous release (v0.47.0-rc1).
    • Revised links and examples to ensure users are directed to the current and accurate resources.

Copy link
Contributor

coderabbitai bot commented Mar 5, 2025

📝 Walkthrough

Walkthrough

This pull request updates version references in several documentation files. Changes update URLs and version numbers from 0.47.0-rc1 (or similar) to 0.50.0 in files such as UPGRADING.md, various README.md files in the depinject, x/auth, x/evidence, and x/group modules, and in the internal ORM documentation. No functional or code declarations were modified; the updates strictly ensure that documentation points to the correct version of the Cosmos SDK.

Changes

File(s) Change Summary
UPGRADING.md Updated version references for SimApp's app wiring (configuration file and app.go) from 0.47.0-rc1 to 0.50.0.
depinject/README.md, depinject/appconfig/README.md Updated version mentions and URL links for the example interface and configuration from 0.47.0-rc1 to 0.50.0.
x/auth/tx/README.md, x/auth/vesting/README.md Revised URLs to reflect the new version; all references updated from 0.47.0-rc1 to 0.50.0.
x/evidence/README.md Modified URLs for the evidence module, changing the version display from 0.50 to 0.50.0 and updating references accordingly.
x/group/README.md, x/group/internal/orm/README.md Adjusted multiple URL references within group and ORM documentation to point to version 0.50.0 in place of 0.47.0-rc1.

Possibly related PRs

Suggested labels

backport/v0.52.x

Suggested reviewers

  • julienrbrt
  • tac0turtle
  • aljo242

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.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@ericHgorski ericHgorski changed the title Eric/docs version updates docs: update version references Mar 5, 2025
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
x/group/internal/orm/README.md (1)

124-124: Consider Revising for Clarity
The sentence:
"Secondary indexes rely on an indexIterator that can strip the RowID from the full index key in order to get the underlying value in the table prefix store."
might be simplified for improved readability. For example, consider:

"Secondary indexes use an indexIterator to extract the RowID from the full index key and retrieve the corresponding value from the prefix store."

🧰 Tools
🪛 LanguageTool

[style] ~124-~124: Consider a shorter alternative to avoid wordiness.
Context: ...rip the RowID from the full index key in order to get the underlying value in the table p...

(IN_ORDER_TO_PREMIUM)

📜 Review details

Configuration used: .coderabbit.yml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 44bd60f and 849e850.

📒 Files selected for processing (8)
  • UPGRADING.md (1 hunks)
  • depinject/README.md (1 hunks)
  • depinject/appconfig/README.md (1 hunks)
  • x/auth/tx/README.md (1 hunks)
  • x/auth/vesting/README.md (3 hunks)
  • x/evidence/README.md (2 hunks)
  • x/group/README.md (15 hunks)
  • x/group/internal/orm/README.md (6 hunks)
✅ Files skipped from review due to trivial changes (7)
  • depinject/appconfig/README.md
  • depinject/README.md
  • x/auth/vesting/README.md
  • UPGRADING.md
  • x/auth/tx/README.md
  • x/evidence/README.md
  • x/group/README.md
🧰 Additional context used
📓 Path-based instructions (1)
`**/*.md`: "Assess the documentation for misspellings, gramm...

**/*.md: "Assess the documentation for misspellings, grammatical errors, missing documentation and correctness"

  • x/group/internal/orm/README.md
🪛 LanguageTool
x/group/internal/orm/README.md

[style] ~124-~124: Consider a shorter alternative to avoid wordiness.
Context: ...rip the RowID from the full index key in order to get the underlying value in the table p...

(IN_ORDER_TO_PREMIUM)

⏰ Context from checks skipped due to timeout of 90000ms (7)
  • GitHub Check: repo-analysis
  • GitHub Check: main
  • GitHub Check: Check up to date mocks
  • GitHub Check: build (arm64)
  • GitHub Check: runtime-v2
  • GitHub Check: build (amd64)
  • GitHub Check: Summary
🔇 Additional comments (11)
x/group/internal/orm/README.md (11)

24-25: Updated URL for Table Reference
The URL now points to the correct version (v0.50.0) of the table implementation. This update correctly reflects the documentation change required.


45-46: Updated URL for AutoUInt64Table Reference
The URL for the AutoUInt64Table has been updated to v0.50.0 and accurately references the intended code lines.


59-60: Updated URL for PrimaryKeyed Reference
The URL now correctly points to the PrimaryKeyed implementation in the new version (v0.50.0). It is consistent with the overall update across the documentation.


78-79: Updated URL for Secondary Index in Types
The URL reference to the secondary index in types.go (lines L88-L93) is updated to v0.50.0 as required. The update is clear and correct.


86-87: Updated URL for MultiKeyIndex Reference
The link now correctly references the multi-key index implementation (index.go L26-L32) at version v0.50.0.


92-93: Updated URL for MultiKeyIndex Details
The URL for the additional multi-key index details (lines L15-L20) has been updated to v0.50.0 and is consistent with the other changes.


96-97: Updated URL for Indexer Reference
The URL for the indexer implementation (indexer.go L15-L19) is updated to v0.50.0, ensuring that users are directed to the correct version.


115-116: Updated URL for Iterator Implementation in Types
The URL referencing the iterator implementation in types.go (lines L77-L85) now reflects the new version v0.50.0 accurately.


121-122: Updated URL for Table Iterator Reference
The URL for the table iterator (table.go L287-L291) has been updated to v0.50.0 and is correct.


127-128: Updated URL for Index Iterator Reference
The URL pointing to the index iterator details (index.go L233-L239) is updated to version v0.50.0 and is consistent with the documentation updates.


138-139: Updated URL for Iterator in Iterator.go
The URL for the iterator implementation (iterator.go L102-L220) now uses v0.50.0, ensuring the documentation directs users to the most current version.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
x/group/internal/orm/README.md (1)

124-124: Consider Simplifying Wording
The sentence describing the indexIterator on line 124 is somewhat wordy. Consider rephrasing for clarity—for example:
"Secondary indexes use an indexIterator to extract the underlying table prefix value from the RowID."

🧰 Tools
🪛 LanguageTool

[style] ~124-~124: Consider a shorter alternative to avoid wordiness.
Context: ...rip the RowID from the full index key in order to get the underlying value in the table p...

(IN_ORDER_TO_PREMIUM)

📜 Review details

Configuration used: .coderabbit.yml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 849e850 and f6000d6.

📒 Files selected for processing (8)
  • UPGRADING.md (1 hunks)
  • depinject/README.md (1 hunks)
  • depinject/appconfig/README.md (1 hunks)
  • x/auth/tx/README.md (1 hunks)
  • x/auth/vesting/README.md (3 hunks)
  • x/evidence/README.md (2 hunks)
  • x/group/README.md (15 hunks)
  • x/group/internal/orm/README.md (6 hunks)
🚧 Files skipped from review as they are similar to previous changes (7)
  • depinject/README.md
  • depinject/appconfig/README.md
  • x/auth/vesting/README.md
  • UPGRADING.md
  • x/evidence/README.md
  • x/auth/tx/README.md
  • x/group/README.md
🧰 Additional context used
📓 Path-based instructions (1)
`**/*.md`: "Assess the documentation for misspellings, gramm...

**/*.md: "Assess the documentation for misspellings, grammatical errors, missing documentation and correctness"

  • x/group/internal/orm/README.md
🪛 LanguageTool
x/group/internal/orm/README.md

[style] ~124-~124: Consider a shorter alternative to avoid wordiness.
Context: ...rip the RowID from the full index key in order to get the underlying value in the table p...

(IN_ORDER_TO_PREMIUM)

⏰ Context from checks skipped due to timeout of 90000ms (3)
  • GitHub Check: build (arm64)
  • GitHub Check: build (amd64)
  • GitHub Check: Summary
🔇 Additional comments (11)
x/group/internal/orm/README.md (11)

24-24: Table Reference URL Update Verification
The URL for the table reference has been updated to v0.50.x and now points to table.go#L30-L36. Please verify that this updated link accurately reflects the intended source code region.


45-45: AutoUInt64Table URL Updated
The link for AutoUInt64Table now correctly points to version v0.50.x in auto_uint64.go#L15-L18. Ensure the referenced code lines match the expected content.


59-59: PrimaryKeyed Interface Reference Update
The URL for the PrimaryKeyTable’s PrimaryKeyed interface has been updated to v0.50.x (lines L30-L44). Please confirm that the link directs readers to the complete and correct context.


78-78: Secondary Index URL Update
The URL in the secondary index section now targets version v0.50.x in types.go#L88-L93. This change aligns with the PR objective; please verify its accuracy.


86-86: MultiKeyIndex URL Update
The URL for the MultiKeyIndex section has been updated to point to version v0.50.x (lines L26-L32). The reference appears correct—please double-check its functionality.


92-92: MultiKeyIndex Additional Reference Update
The subsequent URL update in index.go now covers lines L15-L20 under version v0.50.x. Please review that this link serves its intended purpose.


96-96: Indexer URL Update Verification
The URL for the Indexer in indexer.go has been updated to version v0.50.x (lines L15-L19). Confirm that the referenced section correctly documents the desired functionality.


115-115: Iterator Reference URL Confirmation
The updated URL for the iterator in types.go (lines L77-L85) now points to v0.50.x. Verify that this link correctly corresponds to the intended iterator documentation.


121-121: Table Iterator URL Updated
The URL for the table’s iterator has been updated to version v0.50.x (lines L287-L291 in table.go). Please ensure it directs users to the appropriate source segment.


127-127: Index Iterator URL Update
The updated URL for the index iterator in index.go now reflects version v0.50.x (lines L233-L239). Confirm that this link is both functional and accurate.


138-138: Pagination Iterator URL Update
The URL for the pagination iterator in iterator.go has been updated to v0.50.x (lines L102-L220). Please verify the correctness of this reference in the context of pagination.

@aljo242 aljo242 merged commit 5411e73 into main Mar 5, 2025
68 checks passed
@aljo242 aljo242 deleted the eric/docs-version-updates branch March 5, 2025 16:47
mergify bot pushed a commit that referenced this pull request Mar 5, 2025
(cherry picked from commit 5411e73)

# Conflicts:
#	UPGRADING.md
#	x/evidence/README.md
aljo242 pushed a commit that referenced this pull request Mar 5, 2025
Co-authored-by: plubber <[email protected]>
Co-authored-by: Alex | Interchain Labs <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants