Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update tooling link #21973

Merged
merged 1 commit into from
Sep 30, 2024
Merged

docs: update tooling link #21973

merged 1 commit into from
Sep 30, 2024

Conversation

Wukingbow
Copy link
Contributor

@Wukingbow Wukingbow commented Sep 30, 2024

Description

update tooling link

Summary by CodeRabbit

  • New Features

    • Introduced simulation of nested messages in transactions, enhancing testing capabilities.
    • Added support for unordered transactions, simplifying execution without nonce management.
    • Updated the x/gov module for expedited proposals and cancellations.
  • Documentation

    • Expanded guidance on using the autocli package for generating CLI interfaces.
    • Clarified the application upgrade process and integration with the upgrade Keeper.
    • Updated links in various documentation sections for improved navigation.
  • Bug Fixes

    • Corrected documentation URLs to ensure users access the correct resources.

Copy link
Contributor

coderabbitai bot commented Sep 30, 2024

📝 Walkthrough

Walkthrough

The pull request introduces significant updates to the Cosmos SDK, particularly enhancing the BaseApp and SimApp components. Key features include the simulation of nested messages in transactions, a refactor of the SimApp client package, and the introduction of unordered transactions. Additionally, the documentation has been expanded to clarify the upgrade process, and various modules have undergone structural changes to improve modularity and maintainability.

Changes

File Path Change Summary
UPGRADING.md Updates include new features for simulating nested messages, refactor of SimApp, introduction of unordered transactions, and migration to a new protobuf structure.
client/v2/README.md Enhanced documentation for the autocli package, detailing application wiring, keyring usage, signing transactions, and customization options.
docs/build/building-apps/03-app-upgrade.md Clarified upgrade process, including pre-upgrade handling and governance vote details, with added examples.
docs/build/packages/README.md Updated link for SDK tooling section for clearer navigation.
tools/cosmovisor/cmd/cosmovisor/help.go Updated URL in help text documentation for Cosmovisor configuration.
tools/cosmovisor/cmd/cosmovisor/help_test.go Modified expected URL in test for GetHelpText function.
x/upgrade/client/cli/tx.go Updated documentation string for NewCmdSubmitUpgradeProposal to reflect a new URL for binary download links.

Possibly related PRs

Suggested labels

backport/v0.52.x, C:Cosmovisor, C:x/upgrade, Type: CI

Suggested reviewers

  • sontrinh16
  • julienrbrt
  • tac0turtle

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ 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 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.

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

🧹 Outside diff range and nitpick comments (12)
tools/cosmovisor/cmd/cosmovisor/help_test.go (1)

Line range hint 11-22: Consider enhancing test coverage

While the current test checks for the presence of expected pieces in the help text, it could be improved:

  1. Add a negative test to ensure the old URL is not present in the help text.
  2. Consider checking the order of the pieces if it's important for the help text structure.

These additions would make the test more robust and catch potential regressions.

Here's a suggested improvement to the test:

func TestGetHelpText(t *testing.T) {
	expectedPieces := []string{
		"Cosmovisor",
		cosmovisor.EnvName, cosmovisor.EnvHome,
		"https://docs.cosmos.network/main/build/tooling/cosmovisor",
	}

	actual := GetHelpText()
	
	// Check for presence of expected pieces
	for _, piece := range expectedPieces {
		assert.Contains(t, actual, piece)
	}
	
	// Check that old URL is not present
	assert.NotContains(t, actual, "https://docs.cosmos.network/main/tooling/cosmovisor")
	
	// Optionally, check the order of pieces
	lastIndex := -1
	for _, piece := range expectedPieces {
		index := strings.Index(actual, piece)
		assert.Greater(t, index, lastIndex)
		lastIndex = index
	}
}
docs/build/packages/README.md (1)

12-12: Approved: Link update improves specificity.

The updated link to the SDK tooling section is more precise, which should enhance user navigation. This change aligns well with the PR objective.

Consider slightly rewording the sentence for added clarity:

-For more information on SDK tooling, see the [Tooling](https://docs.cosmos.network/main/build/tooling) section.
+For more information on SDK tooling, see the [Tooling section](https://docs.cosmos.network/main/build/tooling) under the Build category.

This minor change explicitly mentions that the Tooling section is part of the Build category, which might help users understand the documentation structure better.

docs/build/building-apps/03-app-upgrade.md (3)

Line range hint 52-70: LGTM with a suggestion: Clear explanation of app integration

The new section on "Integrating With An App" provides clear instructions and a helpful code example for implementing the PreBlocker method. The note about depinject is valuable for users of that framework.

Suggestion: Consider adding a brief explanation or link to documentation about depinject for readers who may not be familiar with it.


Line range hint 72-108: LGTM with a suggestion: Comprehensive upgrade handling explanation

The "Performing Upgrades" section provides a detailed and clear explanation of the upgrade process, with updated code examples that reflect current best practices. The balance between theoretical explanation and practical implementation is well-maintained.

Suggestion: Consider adding a brief note about potential pitfalls or common mistakes to watch out for when implementing upgrade handlers, to further enhance the section's value for developers.


Line range hint 184-265: LGTM with a suggestion: Valuable addition of Pre-Upgrade Handling information

The new "Pre-Upgrade Handling" section is a valuable addition to the document. It provides clear explanations of Cosmovisor's pre-upgrade handling feature, including a helpful table of exit status codes and their meanings. The sample code for implementing the pre-upgrade command is a great starting point for developers.

Suggestion: Consider adding a brief example scenario where pre-upgrade handling would be particularly useful, to help readers better understand when and why they might want to implement this feature.

client/v2/README.md (4)

Line range hint 244-286: Enhance the "Off-Chain" section for clarity and completeness.

The new "Off-Chain" section provides valuable information about file signing and verification functionalities. However, consider the following improvements:

  1. Add a brief explanation of why off-chain functionalities are important or useful in the context of Cosmos SDK applications.
  2. Clarify whether these commands are part of the AutoCLI feature or if they are separate functionalities.
  3. In the sign-file command example, explain what alice represents (presumably a key name).
  4. For the verify-file example, consider adding a note about what happens if the verification fails.
  5. Consider adding a link to more detailed documentation about off-chain functionalities, if available.

These additions would make the section more comprehensive and user-friendly.


Line range hint 89-97: Enhance the "Signing" section with more context and examples.

The "Signing" section provides crucial information about transaction signing in AutoCLI. To make it more comprehensive:

  1. Consider adding a brief example of how the cosmos.msg.v1.signer protobuf annotation is used in practice.
  2. Explain the implications of supporting only one signer per transaction and whether there are plans to support multiple signers in the future.
  3. If possible, provide a simple code snippet or command-line example demonstrating how signing works with AutoCLI.

These additions would give users a clearer understanding of the signing process and its current limitations.


Line range hint 134-156: Minor enhancements to the "Conventions for the Use field in Cobra" section.

The section on Cobra conventions is informative and well-structured. Consider the following minor improvements:

  1. Add a brief introduction explaining why following these conventions is important (e.g., for consistency and clarity in command-line interfaces).
  2. Consider adding a simple example that combines multiple conventions to illustrate how they work together in a complex command.
  3. If relevant, mention any AutoCLI-specific considerations or extensions to these general Cobra conventions.

These additions would further enhance the usefulness of this section for developers working with AutoCLI and Cobra.


Line range hint 1-286: Enhance overall README structure and content.

The README provides comprehensive information about AutoCLI and its features. To further improve its structure and readability:

  1. Consider adding a table of contents at the beginning for easier navigation, especially given the document's length.
  2. Ensure consistent formatting throughout the document (e.g., use of headings, code blocks, and emphasis).
  3. Consider grouping related sections together, such as all customization options under a single "Customization" heading.
  4. Add a "Troubleshooting" or "FAQ" section to address common issues or questions users might have when working with AutoCLI.
  5. If possible, include a simple end-to-end example of setting up and using AutoCLI in a basic Cosmos SDK application.

These improvements would enhance the overall user experience and make the documentation more accessible to developers of varying experience levels.

UPGRADING.md (3)

Line range hint 7-46: Consider adding a brief explanation of nested messages

The section provides valuable information about the new nested messages simulation feature. However, it would be helpful to include a brief explanation of what nested messages are and why they are important in the context of Cosmos SDK. This addition would make the documentation more accessible to developers who might be less familiar with the concept.


Line range hint 48-329: Expand on unordered transactions explanation

The introduction of unordered transactions is a significant change, but the explanation is quite brief. Consider adding more information about:

  1. The benefits of unordered transactions.
  2. Potential use cases.
  3. Any performance implications.
  4. How it affects the overall transaction flow in the SDK.

This additional information would help developers better understand the impact and advantages of this new feature.


Line range hint 388-641: Consider adding more context and examples

While the instructions for changes to transactions and modules are clear, some parts could benefit from additional context or examples:

  1. For the removal of the 'block' broadcast mode, consider explaining the implications of using 'sync' mode instead and how it might affect existing implementations.

  2. The changes to event emission in modules are significant. It might be helpful to provide a before-and-after code example to illustrate the change more clearly.

  3. For the new x/consensus module, consider adding a brief explanation of its purpose and benefits.

  4. The changes to x/gov, particularly the new minimum proposal deposit feature, could benefit from an example configuration to illustrate how chains can set this up.

Adding these details would make the upgrade process smoother for developers by providing more comprehensive guidance.

📜 Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between d5f24de and 45ad6d4.

📒 Files selected for processing (7)
  • UPGRADING.md (1 hunks)
  • client/v2/README.md (1 hunks)
  • docs/build/building-apps/03-app-upgrade.md (2 hunks)
  • docs/build/packages/README.md (1 hunks)
  • tools/cosmovisor/cmd/cosmovisor/help.go (1 hunks)
  • tools/cosmovisor/cmd/cosmovisor/help_test.go (1 hunks)
  • x/upgrade/client/cli/tx.go (1 hunks)
✅ Files skipped from review due to trivial changes (2)
  • tools/cosmovisor/cmd/cosmovisor/help.go
  • x/upgrade/client/cli/tx.go
🧰 Additional context used
📓 Path-based instructions (5)
UPGRADING.md (1)

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

client/v2/README.md (1)

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

docs/build/building-apps/03-app-upgrade.md (1)

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

docs/build/packages/README.md (1)

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

tools/cosmovisor/cmd/cosmovisor/help_test.go (2)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.


Pattern **/*_test.go: "Assess the unit test code assessing sufficient code coverage for the changes associated in the pull request"

🔇 Additional comments (8)
tools/cosmovisor/cmd/cosmovisor/help_test.go (1)

15-15: LGTM! Verify URL consistency across the codebase.

The URL update aligns with the PR objective. The new link appears to be correct, pointing to the Cosmovisor documentation under the "build" section.

To ensure consistency, please run the following script to check if the old URL is still present elsewhere in the codebase:

docs/build/building-apps/03-app-upgrade.md (4)

44-44: LGTM: Cosmovisor documentation link updated

The link to Cosmovisor documentation has been correctly updated to point to the main documentation. This change aligns with the PR objective of updating tooling links.


134-134: LGTM: Consistent update of Cosmovisor documentation link

The link to Cosmovisor documentation has been correctly updated to point to the main documentation. This change is consistent with the previous update and aligns with the PR objective of updating tooling links.


Line range hint 1-265: LGTM: Comprehensive and well-structured documentation

The document provides a thorough explanation of the application upgrade process, covering all essential aspects. The content is well-structured, free of obvious misspellings or grammatical errors, and appears to be correct and up-to-date. The code examples and explanations are clear and informative, making it a valuable resource for developers working on application upgrades.


Line range hint 1-265: LGTM: Excellent updates enhancing the application upgrade documentation

The changes made to this document significantly improve its value for developers working on application upgrades. The updates align well with the PR objective of updating tooling links, and go beyond by adding new sections (such as pre-upgrade handling) and enhancing existing explanations. The overall structure and flow of the document have been maintained, ensuring consistency in style and terminology throughout the updates.

These improvements provide a more comprehensive and up-to-date guide for handling application upgrades in the Cosmos SDK ecosystem. Great work on enhancing this crucial documentation!

client/v2/README.md (1)

244-244: LGTM: Updated Hubl documentation link.

The link to the Hubl documentation has been appropriately updated to point to the specific tooling section within the Cosmos Network documentation. This change improves the accessibility of relevant information for users.

UPGRADING.md (2)

Line range hint 1-5: LGTM: Clear and concise introduction

The introduction to the upgrading guide is well-written and provides a clear overview of the document's purpose.


Line range hint 331-386: LGTM: Clear instructions for protobuf migration

This section provides comprehensive and clear instructions for migrating from gogo/protobuf to cosmos/gogoproto. The explanation of the new package naming convention and the required changes to import paths and buf.yaml file is particularly helpful. This will greatly assist developers in smoothly transitioning to the new protobuf implementation.

@julienrbrt julienrbrt added the backport/v0.52.x PR scheduled for inclusion in the v0.52's next stable release label Sep 30, 2024
@julienrbrt julienrbrt added this pull request to the merge queue Sep 30, 2024
Merged via the queue into cosmos:main with commit 21b3a26 Sep 30, 2024
67 of 84 checks passed
mergify bot pushed a commit that referenced this pull request Sep 30, 2024
Co-authored-by: wujinbao <[email protected]>
(cherry picked from commit 21b3a26)

# Conflicts:
#	UPGRADING.md
#	tools/cosmovisor/cmd/cosmovisor/help.go
#	tools/cosmovisor/cmd/cosmovisor/help_test.go
tac0turtle added a commit that referenced this pull request Sep 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport/v0.52.x PR scheduled for inclusion in the v0.52's next stable release
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants