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

geyser: update solana =1.16.14 #188

Merged
merged 1 commit into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,22 @@ The minor version will be incremented upon a breaking change and the patch versi

### Features

### Fixes

### Breaking

## 2023-10-02

- yellowstone-grpc-client-1.10.0+solana.1.16.14
- yellowstone-grpc-geyser-1.8.0+solana.1.16.14
- yellowstone-grpc-kafka-1.0.0-rc.0+solana.1.16.14
- yellowstone-grpc-proto-1.9.0+solana.1.16.14

### Features

- geyser: add optional TLS to gRPC server config ([#183](https://github.com/rpcpool/yellowstone-grpc/pull/183)).
- client: add timeout options to rust ([#187](https://github.com/rpcpool/yellowstone-grpc/pull/187)).
- geyser: update solana =1.16.14 ([#188](https://github.com/rpcpool/yellowstone-grpc/pull/188)).

### Fixes

Expand Down
77 changes: 39 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[workspace]
members = [
"examples/rust", # 1.9.0+solana.1.16.1
"yellowstone-grpc-client", # 1.9.0+solana.1.16.1
"yellowstone-grpc-geyser", # 1.7.1+solana.1.16.1
"yellowstone-grpc-kafka", # 1.0.0+solana.1.16.1
"yellowstone-grpc-proto", # 1.9.0+solana.1.16.1
"examples/rust", # 1.9.0+solana.1.16.14
"yellowstone-grpc-client", # 1.10.0+solana.1.16.14
"yellowstone-grpc-geyser", # 1.8.0+solana.1.16.14
"yellowstone-grpc-kafka", # 1.0.0+solana.1.16.14
"yellowstone-grpc-proto", # 1.9.0+solana.1.16.14
]

[profile.release]
Expand Down
5 changes: 3 additions & 2 deletions examples/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yellowstone-grpc-client-simple"
version = "1.9.0+solana.1.16.1"
version = "1.9.0+solana.1.16.14"
authors = ["Triton One"]
edition = "2021"
publish = false
Expand All @@ -11,6 +11,7 @@ name = "client"
[dependencies]
anyhow = "1.0.62"
backoff = { version = "0.4.0", features = ["tokio"] }
bincode = "1.3.3"
bs58 = "0.4.0"
chrono = "0.4.26"
clap = { version = "4.3.0", features = ["cargo", "derive"] }
Expand All @@ -19,7 +20,7 @@ futures = "0.3.24"
hex = "0.4.3"
log = { version = "0.4.14", features = ["std"] }
maplit = "1.0.2"
solana-sdk = "=1.16.1"
solana-sdk = "=1.16.14"
tokio = { version = "1.21.2", features = ["rt-multi-thread", "macros", "time"] }
yellowstone-grpc-client = { path = "../../yellowstone-grpc-client" }
yellowstone-grpc-proto = { path = "../../yellowstone-grpc-proto" }
3 changes: 2 additions & 1 deletion examples/rust/src/bin/tx-blocktime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ async fn main() -> anyhow::Result<()> {
match msg.update_oneof {
Some(UpdateOneof::Transaction(tx)) => {
let entry = messages.entry(tx.slot).or_default();
let sig = Signature::new(tx.transaction.unwrap().signature.as_slice())
let sig = Signature::try_from(tx.transaction.unwrap().signature.as_slice())
.expect("valid signature")
.to_string();
if let Some(timestamp) = entry.0 {
info!("received txn {} at {}", sig, timestamp);
Expand Down
4 changes: 2 additions & 2 deletions yellowstone-grpc-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yellowstone-grpc-client"
version = "1.9.0+solana.1.16.1"
version = "1.10.0+solana.1.16.14"
authors = ["Triton One"]
edition = "2021"
description = "Yellowstone gRPC Geyser Simple Client"
Expand All @@ -16,7 +16,7 @@ http = "0.2.8"
thiserror = "1.0"
tonic = { version = "0.9.2", features = ["gzip", "tls", "tls-roots"] }
tonic-health = "0.9.2"
yellowstone-grpc-proto = { path = "../yellowstone-grpc-proto", version = "1.9.0+solana.1.16.1" }
yellowstone-grpc-proto = { path = "../yellowstone-grpc-proto", version = "1.9.0+solana.1.16.14" }

[dev-dependencies]
tokio = { version = "1.21.2", features = ["macros"] }
10 changes: 5 additions & 5 deletions yellowstone-grpc-geyser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yellowstone-grpc-geyser"
version = "1.7.1+solana.1.16.1"
version = "1.8.0+solana.1.16.14"
authors = ["Triton One"]
edition = "2021"
description = "Yellowstone gRPC Geyser Plugin"
Expand All @@ -25,10 +25,10 @@ log = "0.4.17"
prometheus = "0.13.2"
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.86"
solana-geyser-plugin-interface = "=1.16.1"
solana-logger = "=1.16.1"
solana-sdk = "=1.16.1"
solana-transaction-status = "=1.16.1"
solana-geyser-plugin-interface = "=1.16.14"
solana-logger = "=1.16.14"
solana-sdk = "=1.16.14"
solana-transaction-status = "=1.16.14"
spl-token-2022 = "0.7.0"
tokio = { version = "1.21.2", features = ["rt-multi-thread", "macros", "time", "fs"] }
tokio-stream = "0.1.11"
Expand Down
2 changes: 1 addition & 1 deletion yellowstone-grpc-kafka/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yellowstone-grpc-kafka"
version = "1.0.0-rc.0+solana.1.16.1"
version = "1.0.0-rc.0+solana.1.16.14"
authors = ["Triton One"]
edition = "2021"
description = "Yellowstone gRPC Kafka Producer/Dedup/Consumer"
Expand Down
2 changes: 1 addition & 1 deletion yellowstone-grpc-proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yellowstone-grpc-proto"
version = "1.9.0+solana.1.16.1"
version = "1.9.0+solana.1.16.14"
authors = ["Triton One"]
edition = "2021"
description = "Yellowstone gRPC Geyser Protobuf Definitions"
Expand Down
Loading