Skip to content

Commit

Permalink
geyser: raise default filter name length limit (#473)
Browse files Browse the repository at this point in the history
  • Loading branch information
fanatid authored Nov 28, 2024
1 parent 8d95591 commit aec5bbe
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 15 deletions.
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

0 comments on commit aec5bbe

Please sign in to comment.