Skip to content

Commit

Permalink
geyser: fix filter update loop on snapshot (#408)
Browse files Browse the repository at this point in the history
Co-authored-by: Kirill Fomichev <[email protected]>
  • Loading branch information
kespinola and fanatid authored Aug 22, 2024
1 parent 6295d58 commit fff9534
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 10 deletions.
27 changes: 20 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,28 @@ The minor version will be incremented upon a breaking change and the patch versi

### Features

- solana: bump proto/client version for publishing crates

### Breaking

## 2024-08-22

- yellowstone-grpc-client-1.15.2+solana.1.18.22
- yellowstone-grpc-geyser-1.15.1+solana.1.18.22
- yellowstone-grpc-proto-1.14.2+solana.1.18.22
- yellowstone-grpc-tools-1.0.0-rc.11+solana.1.18.22

### Fixes

- geyser: fix filter update loop on snapshot ([#408](https://github.com/rpcpool/yellowstone-grpc/pull/408))

### Features

- solana: bump proto/client version for publishing crates

## 2024-08-09

- yellowstone-grpc-client-1.15.0+solana.1.18.22
- yellowstone-grpc-geyser-1.15.0+solana.1.18.22
- yellowstone-grpc-proto-1.15.0+solana.1.18.22
- yellowstone-grpc-proto-1.14.0+solana.1.18.22
- yellowstone-grpc-tools-1.0.0-rc.11+solana.1.18.22

### Features
Expand All @@ -33,7 +46,7 @@ The minor version will be incremented upon a breaking change and the patch versi

- yellowstone-grpc-client-1.15.0+solana.1.18.21
- yellowstone-grpc-geyser-1.15.0+solana.1.18.21
- yellowstone-grpc-proto-1.15.0+solana.1.18.21
- yellowstone-grpc-proto-1.14.0+solana.1.18.21
- yellowstone-grpc-tools-1.0.0-rc.11+solana.1.18.21

### Features
Expand All @@ -44,7 +57,7 @@ The minor version will be incremented upon a breaking change and the patch versi

- yellowstone-grpc-client-1.15.0+solana.1.18.20
- yellowstone-grpc-geyser-1.15.0+solana.1.18.20
- yellowstone-grpc-proto-1.15.0+solana.1.18.20
- yellowstone-grpc-proto-1.14.0+solana.1.18.20
- yellowstone-grpc-tools-1.0.0-rc.11+solana.1.18.20

### Features
Expand All @@ -55,7 +68,7 @@ The minor version will be incremented upon a breaking change and the patch versi

- yellowstone-grpc-client-1.15.0+solana.1.18.18
- yellowstone-grpc-geyser-1.15.0+solana.1.18.18
- yellowstone-grpc-proto-1.15.0+solana.1.18.18
- yellowstone-grpc-proto-1.14.0+solana.1.18.18
- yellowstone-grpc-tools-1.0.0-rc.11+solana.1.18.18

### Features
Expand All @@ -66,7 +79,7 @@ The minor version will be incremented upon a breaking change and the patch versi

- yellowstone-grpc-client-1.15.0+solana.1.18.17
- yellowstone-grpc-geyser-1.15.0+solana.1.18.17
- yellowstone-grpc-proto-1.15.0+solana.1.18.17
- yellowstone-grpc-proto-1.14.0+solana.1.18.17
- yellowstone-grpc-tools-1.0.0-rc.11+solana.1.18.17

### Features
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resolver = "2"
members = [
"examples/rust", # 1.13.0+solana.1.18.22
"yellowstone-grpc-client", # 1.15.2+solana.1.18.22
"yellowstone-grpc-geyser", # 1.15.0+solana.1.18.22
"yellowstone-grpc-geyser", # 1.15.1+solana.1.18.22
"yellowstone-grpc-proto", # 1.14.2+solana.1.18.22
"yellowstone-grpc-tools", # 1.0.0-rc.11+solana.1.18.22
]
Expand Down
2 changes: 1 addition & 1 deletion 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.15.0+solana.1.18.22"
version = "1.15.1+solana.1.18.22"
authors = { workspace = true }
edition = { workspace = true }
description = "Yellowstone gRPC Geyser Plugin"
Expand Down
1 change: 1 addition & 0 deletions yellowstone-grpc-geyser/src/grpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1163,6 +1163,7 @@ impl GrpcService {
prom::update_subscriptions(&endpoint, Some(&filter), Some(&filter_new));
filter = filter_new;
info!("client #{id}: filter updated");
break;
}
Some(None) => {
is_alive = false;
Expand Down

0 comments on commit fff9534

Please sign in to comment.