-
Notifications
You must be signed in to change notification settings - Fork 1k
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
refactor(request-response): revise public API to follow naming convention #3159
Merged
Merged
Changes from 17 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
5ec3449
request-response: rename RequestResponseMessage to Message
jxs 744c2fb
request-response: rename RequestResponseHandler to Handler,
jxs d0c69a8
request-response: rename RequestResponseCodec to Codec
jxs bf3c663
request-response: rename RequestResponseEvent to Event
jxs abd326c
request-response: rename RequestResponseConfig to Config
jxs 8dcf4b5
request-response: rename RequestResponse to Behaviour
jxs f5fcc29
request-response: remove [doc(hidden)] from Handler
jxs 6d998d4
review: rename HandlerEvent to handler::Event
jxs 3693a79
review: re-create deprcated RequestResponseCodec.
jxs d2880cc
review: improve request-response Handler doc wording.
jxs 0e42929
Merge github.com:libp2p/rust-libp2p into rename-request-response
jxs 00465e4
Merge branch 'master' of github.com:libp2p/rust-libp2p into rename-re…
jxs 57bb47f
review: Update CHANGELOG.md to reflect libp2p-request-response 0.23 r…
jxs 11ca1df
review: update version on missing places
jxs 637a32d
Merge branch 'master' of github.com:libp2p/rust-libp2p into rename-re…
jxs dabd8bc
review: apply Thomas wording suggestions
jxs 82c0e85
review: blanket Codec impl for types that impl RequestResponseCodec.
jxs 9813119
review: rename pending HandlerEvent references.
jxs 0b5eb4c
review: make blanket Codec implementation #[async_trait].
jxs 9be0603
review: improve wording on doc
jxs 84dd335
review: update release to patch instead of minor
jxs 183f88d
Merge branch 'master' of github.com:libp2p/rust-libp2p into rename-re…
jxs 1f3fbab
review: rename dangling 0.24 references.
jxs 533ae05
Merge branch 'master' of github.com:libp2p/rust-libp2p into rename-re…
jxs 223ec5f
review: update deprecated messages back to 0.24 version
jxs 12094b4
Merge branch 'master' of github.com:libp2p/rust-libp2p into rename-re…
jxs 7cd250c
merge: replace removed webrtc smoke test functions
jxs c030232
review: clippy
jxs fb07b18
Merge branch 'master' of github.com:libp2p/rust-libp2p into rename-re…
jxs a613a94
review: fix docs
jxs 6db0668
Merge branch 'master' into rename-request-response
mergify[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "libp2p-request-response" | |
edition = "2021" | ||
rust-version = "1.62.0" | ||
description = "Generic Request/Response Protocols" | ||
version = "0.23.0" | ||
version = "0.24.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Given that this is a breaking change for
libp2p
, this pull request needs to bump thelibp2p
version tov0.51.0
. Can you please also add a changelog entry to the rootCHANGELOG.md
file. See previous entries for reference.