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

Add health monitor to grpc #11

Closed
wants to merge 9 commits into from
Closed
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
16 changes: 10 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:
- 'v1.17'
- 'v1.18'
- 'v2.0'
- 'v2.1'
workflow_dispatch:

env:
Expand Down Expand Up @@ -86,18 +87,21 @@ jobs:
command: check advisories

- name: cargo clippy
run: cargo clippy --workspace --all-targets --tests #-- --deny=warnings
run: cargo clippy --workspace --all-targets

- name: check features in `client`
run: cargo check -p yellowstone-grpc-client --all-targets --tests
run: cargo check -p yellowstone-grpc-client --all-targets
- name: check features in `client-simple`
run: cargo check -p yellowstone-grpc-client-simple --all-targets --tests
run: cargo check -p yellowstone-grpc-client-simple --all-targets
- name: check features in `geyser`
run: cargo check -p yellowstone-grpc-geyser --all-targets --tests
run: cargo check -p yellowstone-grpc-geyser --all-targets
- name: check features in `proto`
run: cargo check -p yellowstone-grpc-proto --all-targets --tests
run: cargo check -p yellowstone-grpc-proto --all-targets
- name: check features in `proto`
run: cargo check -p yellowstone-grpc-proto --all-targets --tests --all-features
run: cargo check -p yellowstone-grpc-proto --all-targets --all-features

- name: cargo test
run: cargo test --all-features

- name: Build
run: ./ci/cargo-build-test.sh
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ test-ledger

# Rust
target
yellowstone-grpc-proto/src/bin/raw.rs

# Node.js
examples/typescript/dist
Expand Down
22 changes: 20 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,19 @@ The minor version will be incremented upon a breaking change and the patch versi

### Fixes

### Features

### Breaking

## 2024-11-20

- yellowstone-grpc-client-simple-3.0.0
- yellowstone-grpc-client-3.0.0
- yellowstone-grpc-geyser-3.0.0
- yellowstone-grpc-proto-3.0.0

### Fixes

- examples: fix commitment in TypeScript example ([#440](https://github.com/rpcpool/yellowstone-grpc/pull/440))
- geyser: fix missed status messages ([#444](https://github.com/rpcpool/yellowstone-grpc/pull/444))

Expand All @@ -23,14 +36,19 @@ The minor version will be incremented upon a breaking change and the patch versi
- geyser: use Arc wrapped messages in block message ([#446](https://github.com/rpcpool/yellowstone-grpc/pull/446))
- node: remove generated grpc files ([#447](https://github.com/rpcpool/yellowstone-grpc/pull/447))
- proto: add txn_signature filter ([#445](https://github.com/rpcpool/yellowstone-grpc/pull/445))
- geyser: limit length of filter name ([#448](https://github.com/rpcpool/yellowstone-grpc/pull/448))
- examples: add progress bar to client tool ([#456](https://github.com/rpcpool/yellowstone-grpc/pull/456))
- proto: change error type in mod `convert_from` ([#457](https://github.com/rpcpool/yellowstone-grpc/pull/457))
- proto: add mod `plugin` with `FilterNames` cache ([#458](https://github.com/rpcpool/yellowstone-grpc/pull/458))
- proto: move enum Message from geyser crate ([#459](https://github.com/rpcpool/yellowstone-grpc/pull/459))
- proto: move `Filter` from geyser crate ([#466](https://github.com/rpcpool/yellowstone-grpc/pull/466))
- geyser: serialize from custom message istead of generated ([#467](https://github.com/rpcpool/yellowstone-grpc/pull/467))
- proto: implement encoding instead of clone to generated ([#465](https://github.com/rpcpool/yellowstone-grpc/pull/465))

### Breaking

- geyser: limit length of filter name ([#448](https://github.com/rpcpool/yellowstone-grpc/pull/448))
- proto: change error type in mod `convert_from` ([#457](https://github.com/rpcpool/yellowstone-grpc/pull/457))
- geyser: remove option `block_fail_action` ([#463](https://github.com/rpcpool/yellowstone-grpc/pull/463))

## 2024-10-04

- yellowstone-grpc-client-simple-2.0.0
Expand Down
Loading