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: rewrite building module section (1/n) - mm #22724

Merged
merged 4 commits into from
Dec 3, 2024
Merged

Conversation

julienrbrt
Copy link
Member

@julienrbrt julienrbrt commented Dec 2, 2024

Description

ref: #21429

Focuses on the module manager and core API (expect environment)


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
    • Removed outdated overview of app.go to streamline resources.
    • Introduced new section on the runtime package, clarifying its integration in blockchain applications.
    • Enhanced clarity and updated terminology in the introduction to modules, emphasizing their significance.
    • Revised module manager documentation for better understanding of function execution order and interfaces.
    • Restructured application anatomy document for improved readability, with a focus on essential components.
    • Updated UPGRADING.md to reflect changes for upgrading to the latest Cosmos SDK version, including nested message simulation and module management adjustments.
    • Improved clarity in messages and queries documentation, ensuring all references are current and consistent.

@julienrbrt julienrbrt added the backport/v0.52.x PR scheduled for inclusion in the v0.52's next stable release label Dec 2, 2024
@julienrbrt julienrbrt requested a review from a team as a code owner December 2, 2024 23:41
Copy link
Contributor

coderabbitai bot commented Dec 2, 2024

📝 Walkthrough
📝 Walkthrough

Walkthrough

This pull request introduces significant changes to the Cosmos SDK documentation, including the removal of the 00-app-go.md file and the addition of a new 00-runtime.md section. The 00-runtime.md outlines the runtime package's role in integrating blockchain components. Additionally, updates to 00-intro.md, 01-module-manager.md, and 00-app-anatomy.md enhance clarity, terminology, and organization, focusing on modules, their management, and the application lifecycle.

Changes

File Path Change Summary
docs/build/building-apps/00-app-go.md Deleted file providing an overview of app.go, indicating it was a work in progress and directing readers to external tutorials.
docs/build/building-apps/00-runtime.md New section defining the runtime package, its components, and usage in app.go.
docs/build/building-modules/00-intro.md Updated introduction emphasizing the role of modules, clarified terminology, and expanded explanations of core functionalities and design principles for building modules.
docs/build/building-modules/01-module-manager.md Revised module manager documentation to clarify execution order, interface descriptions, and legacy interface status. Added notes on appmodule distinctions and internal management.
docs/learn/beginner/00-app-anatomy.md Restructured document with the type definition section commented out for future revision, maintaining essential content on application lifecycle.
UPGRADING.md Comprehensive updates reflecting changes in Cosmos SDK from version 0.50.x to 0.52.x, including nested message simulation, refactoring of the client package, and migration details.
docs/build/building-modules/02-messages-and-queries.md Enhanced clarity and updated references in the Msg services and Queries sections, including hyperlink additions and terminology updates.
docs/build/building-modules/03-msg-services.md Terminology and structure updates related to Protobuf Msg services, including deprecation of ValidateBasic and clarification on event handling.
docs/build/building-modules/04-query-services.md Updated Query service documentation for clarity and accuracy, including revised examples and simplified explanations.
docs/build/building-modules/06-keeper.md Added a new section on "Environment" and refined existing content to enhance clarity on Keeper roles and state management best practices.

Possibly related PRs

Suggested reviewers

  • tac0turtle
  • akhilkumarpilli

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: 1

🧹 Outside diff range and nitpick comments (5)
docs/build/building-modules/00-intro.md (1)

45-45: Consider adding security implications of super-user capabilities.

While the explanation of module capabilities is accurate, it would be beneficial to explicitly document the security implications and best practices when implementing these privileged functions.

docs/build/building-modules/01-module-manager.md (2)

21-24: Add migration guidance between appmodule versions.

While the distinction between appmodule and appmodule v2 is clear, consider adding:

  1. Migration steps for upgrading from v1 to v2
  2. Compatibility considerations
  3. Best practices for choosing between versions in new modules
🧰 Tools
🪛 LanguageTool

[grammar] ~21-~21: You should probably use “is”.
Context: ...osmos SDK application. Those interface are defined in the `cosmossdk.io/core/appmo...

(SINGULAR_AGREEMENT_SENT_START)


46-48: Enhance deprecation notice with timeline.

The legacy interface documentation would benefit from:

  1. A specific timeline or version for the planned removal
  2. Links to migration guides
  3. Examples of modern alternatives
🧰 Tools
🪛 LanguageTool

[style] ~46-~46: ‘Prior to’ might be wordy. Consider a shorter alternative.
Context: ... placeholder functions. :::note legacy Prior to the introduction of the `cosmossdk.io/c...

(EN_WORDINESS_PREMIUM_PRIOR_TO)

docs/learn/beginner/00-app-anatomy.md (1)

60-62: Track TODO comment in issue tracker.

The TODO comment about introducing runtime documentation should be tracked in the issue system for proper follow-up.

Would you like me to help create a GitHub issue to track this documentation task?

docs/build/building-apps/00-runtime.md (1)

7-9: Consider enhancing the documentation with examples

While the current documentation provides a good introduction, it would be more helpful to include:

  1. A code snippet demonstrating how to instantiate and configure runtime.App
  2. Links to API references or related documentation
  3. Common usage patterns or best practices

Would you like me to help generate example code snippets and additional documentation sections?

🧰 Tools
🪛 LanguageTool

[misspelling] ~8-~8: Use “A” instead of ‘An’ if the following word doesn’t start with a vowel sound, e.g. ‘a sentence’, ‘a university’.
Context: ...lications, the codecs, and the stores. An user only needs to import runtime in ...

(EN_A_VS_AN)

📜 Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 9d9c19c and 1767a9e.

📒 Files selected for processing (5)
  • docs/build/building-apps/00-app-go.md (0 hunks)
  • docs/build/building-apps/00-runtime.md (1 hunks)
  • docs/build/building-modules/00-intro.md (2 hunks)
  • docs/build/building-modules/01-module-manager.md (3 hunks)
  • docs/learn/beginner/00-app-anatomy.md (2 hunks)
💤 Files with no reviewable changes (1)
  • docs/build/building-apps/00-app-go.md
🧰 Additional context used
📓 Path-based instructions (4)
docs/build/building-modules/00-intro.md (1)

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

docs/learn/beginner/00-app-anatomy.md (1)

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

docs/build/building-modules/01-module-manager.md (1)

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

docs/build/building-apps/00-runtime.md (1)

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

🪛 LanguageTool
docs/build/building-modules/01-module-manager.md

[style] ~8-~8: Consider a shorter alternative to avoid wordiness.
Context: ...faces](#application-module-interfaces), in order to be managed by the application's [module...

(IN_ORDER_TO_PREMIUM)


[style] ~8-~8: The phrase “a variety of” may be wordy. To make your writing clearer, consider replacing it.
Context: ...lopers to set the order of execution of a variety of functions like [PreBlocker, `BeginBlo...

(A_VARIETY_OF)


[grammar] ~21-~21: You should probably use “is”.
Context: ...osmos SDK application. Those interface are defined in the `cosmossdk.io/core/appmo...

(SINGULAR_AGREEMENT_SENT_START)


[uncategorized] ~30-~30: Loose punctuation mark.
Context: ...ppmodule.HasPreBlocker`](#haspreblocker): The extension interface that contains i...

(UNLIKELY_OPENING_PUNCTUATION)


[uncategorized] ~31-~31: Loose punctuation mark.
Context: ...dule.HasBeginBlocker`](#hasbeginblocker): The extension interface that contains i...

(UNLIKELY_OPENING_PUNCTUATION)


[uncategorized] ~32-~32: Loose punctuation mark.
Context: ...ppmodule.HasEndBlocker`](#hasendblocker): The extension interface that contains i...

(UNLIKELY_OPENING_PUNCTUATION)


[uncategorized] ~33-~33: Loose punctuation mark.
Context: ...module.HasABCIEndBlock`](#hasendblocker): The extension interface that contains i...

(UNLIKELY_OPENING_PUNCTUATION)


[uncategorized] ~34-~34: Loose punctuation mark.
Context: ...sterInterfaces`](#hasregisterinterfaces): The extension interface for modules to ...

(UNLIKELY_OPENING_PUNCTUATION)


[uncategorized] ~35-~35: Loose punctuation mark.
Context: ...* appmodule.HasService: The extension interface for modules to ...

(UNLIKELY_OPENING_PUNCTUATION)


[uncategorized] ~35-~35: A comma may be missing after the conjunctive/linking adverb ‘However’.
Context: ...sed in core to avoid a gRPC dependency. However it is usable in an application. * [`app...

(SENT_START_CONJUNCTIVE_LINKING_ADVERB_COMMA)


[uncategorized] ~36-~36: Loose punctuation mark.
Context: ...ppmodule.HasAminoCodec`](#hasaminocodec): The extension interface for modules to ...

(UNLIKELY_OPENING_PUNCTUATION)


[uncategorized] ~37-~37: Loose punctuation mark.
Context: ...ppmodule.HasMigrations`](#hasmigrations): The extension interface for registering...

(UNLIKELY_OPENING_PUNCTUATION)


[uncategorized] ~38-~38: Loose punctuation mark.
Context: ...ConsensusVersion`](#hasconsensusversion): The extension interface for declaring a...

(UNLIKELY_OPENING_PUNCTUATION)


[style] ~38-~38: ‘in conjunction with’ might be wordy. Consider a shorter alternative.
Context: ...sion. It is usually not used alone, but in conjunction with HasMigrations. * [`appmodule.HasGenes...

(EN_WORDINESS_PREMIUM_IN_CONJUNCTION_WITH)


[style] ~46-~46: ‘Prior to’ might be wordy. Consider a shorter alternative.
Context: ... placeholder functions. :::note legacy Prior to the introduction of the `cosmossdk.io/c...

(EN_WORDINESS_PREMIUM_PRIOR_TO)


[grammar] ~108-~108: Did you mean “registering”? Or maybe you should add a pronoun? In active voice, ‘allow’ + ‘to’ takes an object, usually a pronoun.
Context: ...interface defines one method. It allows to register and let module expose gRPC services. Th...

(ALLOW_TO)


[grammar] ~117-~117: Did you mean “registering”? Or maybe you should add a pronoun? In active voice, ‘allow’ + ‘to’ takes an object, usually a pronoun.
Context: ...AminoCodec TheHasAminoCodecallows to register theamino` codec for the module, which...

(ALLOW_TO)


[style] ~117-~117: Consider a shorter alternative to avoid wordiness.
Context: ... and unmarshal structs to/from []byte in order to persist them in the module's KVStore....

(IN_ORDER_TO_PREMIUM)


[style] ~141-~141: ‘in conjunction with’ might be wordy. Consider a shorter alternative.
Context: ...le consensus version. It is mainly used in conjunction with HasMigrations. ```go reference https...

(EN_WORDINESS_PREMIUM_IN_CONJUNCTION_WITH)


[uncategorized] ~159-~159: Loose punctuation mark.
Context: ...me of the methods: * DefaultGenesis(): Returns a default [GenesisState](./08...

(UNLIKELY_OPENING_PUNCTUATION)


[uncategorized] ~160-~160: Loose punctuation mark.
Context: ...dateGenesis(data json.RawMessage) error: Used to validate the GenesisState` def...

(UNLIKELY_OPENING_PUNCTUATION)


[grammar] ~162-~162: Comparison is written ‘the same … as’.
Context: ...the module developer. In the same vein than HasABCIEndBlock, HasABCIGenesis is ...

(THE_SAME_AS)

docs/build/building-apps/00-runtime.md

[misspelling] ~8-~8: Use “A” instead of ‘An’ if the following word doesn’t start with a vowel sound, e.g. ‘a sentence’, ‘a university’.
Context: ...lications, the codecs, and the stores. An user only needs to import runtime in ...

(EN_A_VS_AN)

🔇 Additional comments (1)
docs/build/building-modules/00-intro.md (1)

20-22: LGTM! Clear explanation of core functionalities.

The analogy with Next.js and Ruby-on-Rails effectively communicates the framework's role, and the explanation of core functionalities and runtime is accurate and well-structured.


The `runtime` package is the Cosmos SDK package that combines the building blocks of your blockchain together. It wires together the modules, the applications, the codecs, and the stores.

An user only needs to import `runtime` in their `app.go` and instantiate a `runtime.App`.
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue

Fix article usage

Replace "An user" with "A user" as the word "user" begins with a consonant sound.

-An user only needs to import `runtime` in their `app.go` and instantiate a `runtime.App`.
+A user only needs to import `runtime` in their `app.go` and instantiate a `runtime.App`.
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
An user only needs to import `runtime` in their `app.go` and instantiate a `runtime.App`.
A user only needs to import `runtime` in their `app.go` and instantiate a `runtime.App`.

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: 1

🧹 Outside diff range and nitpick comments (10)
docs/build/building-modules/06-keeper.md (2)

Line range hint 82-82: Fix broken markdown link syntax

The link to Collections documentation uses HTML comments which breaks the markdown rendering. Consider using proper markdown link syntax instead.

-<!-- markdown-link-check-disable -->
-State management is recommended to be done via [Collections](../packages/collections) 
-<!-- The above link is created via the script to generate docs  -->
+State management is recommended to be done via [Collections](../packages/collections).

Line range hint 89-89: Fix typo in package link

There's a typo in the collections package link: "pacakges" should be "packages".

-[collections package](../pacakges/02-collections.md)
+[collections package](../packages/02-collections.md)
docs/build/building-modules/04-query-services.md (1)

55-55: Improve bullet point formatting for consistency

The bullet point about gas tracking should be properly indented to match the style of other bullet points in the list.

-* it has its gas tracked, to avoid the attack vector where no gas is accounted for on potentially high-computation queries.
+* The query has its gas tracked, to avoid the attack vector where no gas is accounted for on potentially high-computation queries.
docs/build/building-modules/02-messages-and-queries.md (2)

54-54: Add missing comma for proper grammar

Add a comma after "custom signers" for better readability.

-If there is a need for custom signers then there is an alternative path which can be taken.
+If there is a need for custom signers, then there is an alternative path which can be taken.
🧰 Tools
🪛 LanguageTool

[typographical] ~54-~54: Consider adding a comma.
Context: ...` If there is a need for custom signers then there is an alternative path which can ...

(IF_THEN_COMMA)


58-65: Enhance error handling documentation

The code example should include comments explaining the error handling strategy.

 // Extract the signer from the signature.
 signer, err := coretypes.LatestSigner(Tx).Sender(ethTx)
+// Return nil and error if signer extraction fails
 if err != nil {
 	return nil, err
 }

-// Return the signer in the required format.
+// Return the signer bytes in the required [][]byte format for the CustomGetSigner interface
 return [][]byte{signer.Bytes()}, nil
docs/build/building-modules/03-msg-services.md (2)

94-96: Improve warning message punctuation

The warning message about telemetry should end with a period for consistency with other documentation.

-Telemetry adds a performance overhead to the chain. It is recommended to only use this in critical paths
+Telemetry adds a performance overhead to the chain. It is recommended to only use this in critical paths.

108-110: Enhance warning message clarity

The warning about baseapp vs Cosmos SDK v2 needs more context for readers to understand the distinction.

-This flow concerns only a Cosmos SDK *baseapp*, and not Cosmos SDK v2.
+This flow applies only to the traditional Cosmos SDK baseapp implementation, and not to the new architecture introduced in Cosmos SDK v2.
UPGRADING.md (3)

418-419: Improve formatting and documentation reference

Consider restructuring this section to make it more prominent:

  1. Use a bullet point for the interface renaming
  2. Add a separate paragraph for the new simsx framework introduction
  3. Make the documentation link more visible
-The interface `HasProposalMsgs` has been renamed to `HasLegacyProposalMsgs`, as we've introduced a new simulation framework, simpler and easier to use, named [simsx](https://github.com/cosmos/cosmos-sdk/blob/main/simsx/README.md).
+* The interface `HasProposalMsgs` has been renamed to `HasLegacyProposalMsgs`.
+
+A new simulation framework, simsx, has been introduced which is simpler and easier to use.
+For more information, see the [simsx documentation](https://github.com/cosmos/cosmos-sdk/blob/main/simsx/README.md).

Line range hint 1-24: Enhance document navigation and readability

Consider adding these improvements to make the document more user-friendly:

  1. Add a table of contents at the beginning
  2. Include version-specific quick links
  3. Add a summary of breaking changes for each version

Line range hint 1-1000: Standardize technical terminology

Throughout the document, ensure consistent usage of technical terms:

  1. Use "Cosmos SDK" instead of mixing "SDK" and "Cosmos SDK"
  2. Standardize version references (e.g., "v0.47.x" vs "v0.47")
  3. Use consistent capitalization for terms like "BaseApp", "SimApp"
📜 Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 1767a9e and 3c42577.

📒 Files selected for processing (6)
  • UPGRADING.md (1 hunks)
  • docs/build/building-apps/00-runtime.md (1 hunks)
  • docs/build/building-modules/02-messages-and-queries.md (4 hunks)
  • docs/build/building-modules/03-msg-services.md (3 hunks)
  • docs/build/building-modules/04-query-services.md (3 hunks)
  • docs/build/building-modules/06-keeper.md (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • docs/build/building-apps/00-runtime.md
🧰 Additional context used
📓 Path-based instructions (5)
docs/build/building-modules/04-query-services.md (1)

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

docs/build/building-modules/03-msg-services.md (1)

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

docs/build/building-modules/06-keeper.md (1)

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

docs/build/building-modules/02-messages-and-queries.md (1)

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

UPGRADING.md (1)

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

🪛 LanguageTool
docs/build/building-modules/02-messages-and-queries.md

[typographical] ~54-~54: Consider adding a comma.
Context: ...` If there is a need for custom signers then there is an alternative path which can ...

(IF_THEN_COMMA)

🔇 Additional comments (1)
docs/build/building-modules/06-keeper.md (1)

Line range hint 87-89: LGTM: Well-structured explanation of state management

The content provides clear and valuable guidance about state management best practices, effectively explaining:

  • The importance of selective state management
  • The role of Protocol Buffers
  • The benefits of using the collections package

Comment on lines +56 to +57
## Environment

Copy link
Contributor

@coderabbitai coderabbitai bot Dec 3, 2024

Choose a reason for hiding this comment

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

⚠️ Potential issue

Empty section needs to be addressed

The "Environment" section appears to be empty. Consider either:

  1. Adding the intended content for this section, or
  2. Removing the section header if it's not meant to be included in this PR.

Copy link
Member Author

Choose a reason for hiding this comment

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

will be in a follow-up as said in the description

Copy link
Contributor

Choose a reason for hiding this comment

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

@julienrbrt, understood. We'll look forward to the follow-up as mentioned in the description. Thank you!

@julienrbrt julienrbrt added this pull request to the merge queue Dec 3, 2024
Merged via the queue into main with commit 5426cd8 Dec 3, 2024
75 of 76 checks passed
@julienrbrt julienrbrt deleted the julien/docs-mm branch December 3, 2024 14:48
mergify bot pushed a commit that referenced this pull request Dec 3, 2024
julienrbrt added a commit that referenced this pull request Dec 3, 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.

5 participants