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

chore: update changelog for v25.2.1 #8552

Merged
merged 1 commit into from
Jul 25, 2024
Merged

chore: update changelog for v25.2.1 #8552

merged 1 commit into from
Jul 25, 2024

Conversation

PaddyMc
Copy link
Collaborator

@PaddyMc PaddyMc commented Jul 25, 2024

What is the purpose of the change

  • Updating changelog for v25.2.1

@PaddyMc PaddyMc added V:state/compatible/backport State machine compatible PR, should be backported A:backport/v25.x backport patches to v25.x branch labels Jul 25, 2024
Copy link
Contributor

coderabbitai bot commented Jul 25, 2024

Walkthrough

The recent updates to the Osmosis project primarily enhance functionality and performance. Version v25.2.1 introduces new features such as additional events in key modules, improves system responsiveness with a reduced commit timeout, and includes crucial updates from dependencies like CosmosSDK and CometBFT. These changes aim to optimize performance, expand functionality, and ensure compatibility with evolving technologies.

Changes

Files Change Summary
CHANGELOG.md Added entry for version v25.2.1, noting new features, performance improvements, and dependency updates.
.../x/lockup Introduced extra events to enhance tracking and management in the x/lockup module.
.../x/superfluid Added new events to improve functionality in the x/superfluid module.
.../x/concentratedliquidity Expanded event management capabilities in the x/concentratedliquidity module.
.../p2p/Peer Declared HasChannel(chID) as a public method to enhance peer-to-peer communication.
.../CosmosSDK & CometBFT Included various performance optimizations and fixes from dependency updates.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant Osmosis
    participant Lockup
    participant Superfluid
    participant ConcentratedLiquidity

    User->>Osmosis: Initiate transaction
    Osmosis->>Lockup: Trigger event
    Lockup-->>Osmosis: Event acknowledged
    Osmosis->>Superfluid: Trigger event
    Superfluid-->>Osmosis: Event acknowledged
    Osmosis->>ConcentratedLiquidity: Trigger event
    ConcentratedLiquidity-->>Osmosis: Event acknowledged
    Osmosis-->>User: Transaction complete
Loading

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>.
    • 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 generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @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 as 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.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

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

Comment on lines +56 to +75
## v25.2.1
* [#8546](https://github.com/osmosis-labs/osmosis/pull/8546) feat: reduce commit timeout to 500ms to enable faster blocks, and timeout propose to 1.8s

### CosmosSDK 1f1e8bb04f062250af732b6df98e8581e0e0b77b

* [#612](https://github.com/osmosis-labs/cosmos-sdk/pull/612) OTEL wiring in grpcserver interceptor (DataDog POC) (#612)

### CometBFT v0.37.4-v25-osmo-12

* [#128](https://github.com/osmosis-labs/cometbft/pull/128) feat(p2p): render HasChannel(chID) is a public p2p.Peer method (#3510)
* [#126]() Remove p2p allocations for wrapping outbound packets
* [#125]() Fix marshalling and concurrency overhead within broadcast routines
* perf(p2p): Only update send monitor once per batch packet msg send (#3382)
* [#124]() Secret connection read buffer
* [#123](https://github.com/osmosis-labs/cometbft/pull/123) perf(p2p/conn): Remove unneeded global pool buffers in secret connection #3403
* perf(p2p): Delete expensive debug log already slated for deletion #3412
* perf(p2p): Reduce the p2p metrics overhead. #3411
* commit f663bd35153b0b366c1e1e6b41e7f2dcff7963fd : one more debug log deletion
* [#120](https://github.com/osmosis-labs/cometbft/pull/120) perf(consensus): Use TrySend for hasVote/HasBlockPart messages #3407

Copy link
Contributor

Choose a reason for hiding this comment

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

Fix empty links.

There are empty links in the changelog entries for CometBFT. Ensure all links are correctly populated.

- * [#126]() Remove p2p allocations for wrapping outbound packets
- * [#125]() Fix marshalling and concurrency overhead within broadcast routines
- * [#124]() Secret connection read buffer
+ * [#126](https://github.com/osmosis-labs/cometbft/pull/126) Remove p2p allocations for wrapping outbound packets
+ * [#125](https://github.com/osmosis-labs/cometbft/pull/125) Fix marshalling and concurrency overhead within broadcast routines
+ * [#124](https://github.com/osmosis-labs/cometbft/pull/124) Secret connection read buffer
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
## v25.2.1
* [#8546](https://github.com/osmosis-labs/osmosis/pull/8546) feat: reduce commit timeout to 500ms to enable faster blocks, and timeout propose to 1.8s
### CosmosSDK 1f1e8bb04f062250af732b6df98e8581e0e0b77b
* [#612](https://github.com/osmosis-labs/cosmos-sdk/pull/612) OTEL wiring in grpcserver interceptor (DataDog POC) (#612)
### CometBFT v0.37.4-v25-osmo-12
* [#128](https://github.com/osmosis-labs/cometbft/pull/128) feat(p2p): render HasChannel(chID) is a public p2p.Peer method (#3510)
* [#126]() Remove p2p allocations for wrapping outbound packets
* [#125]() Fix marshalling and concurrency overhead within broadcast routines
* perf(p2p): Only update send monitor once per batch packet msg send (#3382)
* [#124]() Secret connection read buffer
* [#123](https://github.com/osmosis-labs/cometbft/pull/123) perf(p2p/conn): Remove unneeded global pool buffers in secret connection #3403
* perf(p2p): Delete expensive debug log already slated for deletion #3412
* perf(p2p): Reduce the p2p metrics overhead. #3411
* commit f663bd35153b0b366c1e1e6b41e7f2dcff7963fd : one more debug log deletion
* [#120](https://github.com/osmosis-labs/cometbft/pull/120) perf(consensus): Use TrySend for hasVote/HasBlockPart messages #3407
## v25.2.1
* [#8546](https://github.com/osmosis-labs/osmosis/pull/8546) feat: reduce commit timeout to 500ms to enable faster blocks, and timeout propose to 1.8s
### CosmosSDK 1f1e8bb04f062250af732b6df98e8581e0e0b77b
* [#612](https://github.com/osmosis-labs/cosmos-sdk/pull/612) OTEL wiring in grpcserver interceptor (DataDog POC) (#612)
### CometBFT v0.37.4-v25-osmo-12
* [#128](https://github.com/osmosis-labs/cometbft/pull/128) feat(p2p): render HasChannel(chID) is a public p2p.Peer method (#3510)
* [#126](https://github.com/osmosis-labs/cometbft/pull/126) Remove p2p allocations for wrapping outbound packets
* [#125](https://github.com/osmosis-labs/cometbft/pull/125) Fix marshalling and concurrency overhead within broadcast routines
* perf(p2p): Only update send monitor once per batch packet msg send (#3382)
* [#124](https://github.com/osmosis-labs/cometbft/pull/124) Secret connection read buffer
* [#123](https://github.com/osmosis-labs/cometbft/pull/123) perf(p2p/conn): Remove unneeded global pool buffers in secret connection #3403
* perf(p2p): Delete expensive debug log already slated for deletion #3412
* perf(p2p): Reduce the p2p metrics overhead. #3411
* commit f663bd35153b0b366c1e1e6b41e7f2dcff7963fd : one more debug log deletion
* [#120](https://github.com/osmosis-labs/cometbft/pull/120) perf(consensus): Use TrySend for hasVote/HasBlockPart messages #3407
Tools
Markdownlint

66-66: null
No empty links

(MD042, no-empty-links)


67-67: null
No empty links

(MD042, no-empty-links)


69-69: null
No empty links

(MD042, no-empty-links)

@PaddyMc PaddyMc merged commit 6a364b9 into main Jul 25, 2024
1 check passed
@PaddyMc PaddyMc deleted the chore/update-changelog branch July 25, 2024 12:58
mergify bot pushed a commit that referenced this pull request Jul 25, 2024
(cherry picked from commit 6a364b9)

# Conflicts:
#	CHANGELOG.md
PaddyMc added a commit that referenced this pull request Jul 25, 2024
* chore: update changelog for v25.2.1 (#8552)

(cherry picked from commit 6a364b9)

# Conflicts:
#	CHANGELOG.md

* Update CHANGELOG.md

---------

Co-authored-by: PaddyMc <[email protected]>
@coderabbitai coderabbitai bot mentioned this pull request Nov 15, 2024
6 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A:backport/v25.x backport patches to v25.x branch V:state/compatible/backport State machine compatible PR, should be backported
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants