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: raise default filter name length limit #473

Merged
merged 3 commits into from
Nov 28, 2024
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
6 changes: 1 addition & 5 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@ insert_final_newline = true
[*.{diff,md}]
trim_trailing_whitespace = false

[*.{js,json}]
indent_style = space
indent_size = 2

[*.proto]
[*.{js,json,proto}]
indent_style = space
indent_size = 2

Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ The minor version will be incremented upon a breaking change and the patch versi

### Breaking

## 2024-11-28

- yellowstone-grpc-geyser-4.0.1

### Fixes

- geyser: raise default filter name length limit ([#473](https://github.com/rpcpool/yellowstone-grpc/pull/473))

## 2024-11-21

- yellowstone-grpc-client-simple-4.0.0
Expand Down
12 changes: 6 additions & 6 deletions 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", # 4.0.0
"yellowstone-grpc-client", # 4.0.0
"yellowstone-grpc-geyser", # 4.0.0
"yellowstone-grpc-geyser", # 4.0.1
"yellowstone-grpc-proto", # 4.0.0
]

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 = "4.0.0"
version = "4.0.1"
authors = { workspace = true }
edition = { workspace = true }
description = "Yellowstone gRPC Geyser Plugin"
Expand Down
4 changes: 2 additions & 2 deletions yellowstone-grpc-geyser/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,11 @@ impl ConfigGrpc {
}

const fn default_filter_name_size_limit() -> usize {
32
128
}

const fn default_filter_names_size_limit() -> usize {
1_024
4_096
}

const fn default_filter_names_cleanup_interval() -> Duration {
Expand Down