forked from informalsystems/tendermint-rs
-
Notifications
You must be signed in to change notification settings - Fork 2
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
Rebase #4
Open
qlp
wants to merge
28
commits into
main
Choose a base branch
from
rebase
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
example: https://github.com/informalsystems/tendermint-rs/actions/runs/9181862633/job/25249544213?pr=1423 ``` error: unexpected `cfg` condition value: `grpc-client` --> proto/src/lib.rs:3:46 | 3 | #![cfg_attr(not(any(feature = "grpc-server", feature = "grpc-client")), no_std)] | ^^^^^^^^^^^^^^^^^^^^^^^ | = note: expected values for `feature` are: `default`, `grpc`, `grpc-server`, `tonic` = help: consider adding `grpc-client` as a feature in `Cargo.toml` = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration ```
* proto: 🧪 upgrade to tonic 0.11 * changelog: 📜 add entry noting tonic upgrade
…ory instead of the CHANGELOG file
Signed-off-by: MarkDaveny <[email protected]>
* typo fix * typo fix * typo fix according to Chicago style and AP style
…1429) * feat: add a way to provide a custom User-Agent * chore: cargo fmt
…ttpClient` (informalsystems#1421) * feat(rpc): expose reqwest client Previously, the reqwest client for HttpClient would be unconditionally built by the internal builder, meaning that useful middleware such as tower could not be applied. This commits adds two ways to create the HttpClient with a custom reqwest::Client, either through new_from_parts, or using the builder. * Add changelog entry --------- Co-authored-by: Romain Ruetschi <[email protected]>
* Add test for DYDX fixtures * Fix test * Fix comment * Add Changelog
* Bump version to 0.37.0 * Update changelog * Fix typos Co-authored-by: Luca Joss <[email protected]> --------- Co-authored-by: Luca Joss <[email protected]>
…/block_results` response (informalsystems#1441)
* Add /genesis_chunked query * Add changelog entry * Fix comments * Update types of GenesisChunked request and response * Convert chunk and total fields from GenesisChunked response * Improve genesis_chunked_stream method * Add genesis-chunked CLI * Fix dependencies for genesis_chunked_stream * Update changelog entry --------- Co-authored-by: Romain Ruetschi <[email protected]>
* Build changelog for v0.38.0 * Update CHANGELOG.md * Bump versions
…` crate (informalsystems#1446) * Bump prost and tonic to latest versions in `tendermint` crate * Add changelog entry * Update .changelog/unreleased/breaking-changes/1446-fix-prost-version.md
…ormalsystems#1449) * If AppHash decoding fails, try with decoding with base64 * Add changelog entry * Update .changelog/unreleased/improvements/1449-allow-base64-apphash.md Co-authored-by: Romain Ruetschi <[email protected]> --------- Co-authored-by: Romain Ruetschi <[email protected]>
* Build changelog release * Update CHANGELOG * Bump versions from v0.38.0 to v0.38.1 * Apply suggestions from code review Co-authored-by: Romain Ruetschi <[email protected]> --------- Co-authored-by: Romain Ruetschi <[email protected]>
… Protobuf types (informalsystems#1452) * proto: Expose well-known types `Any`, `Duration` and `Timestamp` * Add proper JSON serialization for `Duration` * Add non-compliant JSON serialization for `Any` * Fix no_std compatibility * Add changelog entries * Add `json-schema` feature flag to enable derivation of `schemars::JsonSchema` on well-known types * Add conversion from and into `core::time::Duration` for `google::protobuf::Duration` * Add conversion from and into `std::time::SystemTime` for `google::protobuf::Timestamp`, feature-guarded by an `std` feature * Add `borsh` and `parity-scale-codec` features with corresponding derivations
Signed-off-by: renshuncui <[email protected]>
* Bump crates version to v0.39.0 * Update changelog
…malsystems#1456) * Fix `TryFrom` impl to return a `DurationError` as per `prost-types` * Remove conflicting `From<core::time::Duration>` impl
* proto: remove `prost-types` dependency Now that informalsystems#1452 has landed `prost-types` isn't used. This removes it as a dependency. * Add changelog entry --------- Co-authored-by: Romain Ruetschi <[email protected]>
* Bump crates version to v0.39.1 * Release changelog * Fix release date
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
.changelog/