Skip to content

Commit

Permalink
solana: update to 1.16.17 (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
fanatid authored Oct 14, 2023
1 parent 792229a commit e9b1293
Show file tree
Hide file tree
Showing 10 changed files with 76 additions and 65 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,9 @@ concurrency:
on:
push:
branches:
- 'master'
- 'v1.16'
tags:
- 'v*'
- 'geyser-v*'
- 'kafka-v*'
workflow_dispatch:

Expand Down Expand Up @@ -85,7 +83,10 @@ jobs:
- name: Deleteing directories to avoid upload conflict
run: |
rm -rf target/release/client.d target/release/config-check.d
rm -rf \
target/release/client.d \
target/release/config-check.d \
target/release/grpc-kafka.d
- name: Release
if: startsWith(github.ref, 'refs/tags/')
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
pull_request:
push:
branches:
- 'master'
- 'v1.16'
workflow_dispatch:

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

### Breaking

## 2023-10-14

- yellowstone-grpc-client-1.11.1+solana.1.16.17
- yellowstone-grpc-geyser-1.10.0+solana.1.16.17
- yellowstone-grpc-kafka-1.0.0-rc.3+solana.1.16.17
- yellowstone-grpc-proto-1.10.0+solana.1.16.17

### Features

- solana: update to 1.16.17 ([#205](https://github.com/rpcpool/yellowstone-grpc/pull/205)).

## 2023-10-12

- yellowstone-grpc-geyser-1.10.0+solana.1.16.16
Expand Down
70 changes: 35 additions & 35 deletions Cargo.lock

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

22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[workspace]
members = [
"examples/rust", # 1.10.0+solana.1.16.16
"yellowstone-grpc-client", # 1.11.1+solana.1.16.16
"yellowstone-grpc-geyser", # 1.10.0+solana.1.16.16
"yellowstone-grpc-kafka", # 1.0.0-rc.3+solana.1.16.16
"yellowstone-grpc-proto", # 1.10.0+solana.1.16.16
"examples/rust", # 1.10.0+solana.1.16.17
"yellowstone-grpc-client", # 1.11.1+solana.1.16.17
"yellowstone-grpc-geyser", # 1.10.0+solana.1.16.17
"yellowstone-grpc-kafka", # 1.0.0-rc.3+solana.1.16.17
"yellowstone-grpc-proto", # 1.10.0+solana.1.16.17
]

[profile.release]
Expand All @@ -13,9 +13,9 @@ lto = true
codegen-units = 1

[patch.crates-io]
solana-account-decoder = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.16-geyser-block-v3" }
solana-geyser-plugin-interface = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.16-geyser-block-v3" }
solana-logger = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.16-geyser-block-v3" }
solana-program = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.16-geyser-block-v3" }
solana-sdk = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.16-geyser-block-v3" }
solana-transaction-status = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.16-geyser-block-v3" }
solana-account-decoder = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.17-geyser-block-v3" }
solana-geyser-plugin-interface = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.17-geyser-block-v3" }
solana-logger = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.17-geyser-block-v3" }
solana-program = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.17-geyser-block-v3" }
solana-sdk = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.17-geyser-block-v3" }
solana-transaction-status = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.17-geyser-block-v3" }
6 changes: 3 additions & 3 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.10.0+solana.1.16.16"
version = "1.10.0+solana.1.16.17"
authors = ["Triton One"]
edition = "2021"
publish = false
Expand All @@ -21,8 +21,8 @@ hex = "0.4.3"
log = { version = "0.4.14", features = ["std"] }
maplit = "1.0.2"
serde_json = "1.0.86"
solana-sdk = "=1.16.16"
solana-transaction-status = "=1.16.16"
solana-sdk = "=1.16.17"
solana-transaction-status = "=1.16.17"
tokio = { version = "1.32.0", features = ["rt-multi-thread", "macros", "time"] }
yellowstone-grpc-client = { path = "../../yellowstone-grpc-client" }
yellowstone-grpc-proto = { path = "../../yellowstone-grpc-proto" }
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.11.1+solana.1.16.16"
version = "1.11.1+solana.1.16.17"
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.10.2", features = ["gzip", "tls", "tls-roots"] }
tonic-health = "0.10.2"
yellowstone-grpc-proto = { path = "../yellowstone-grpc-proto", version = "1.10.0+solana.1.16.16" }
yellowstone-grpc-proto = { path = "../yellowstone-grpc-proto", version = "1.10.0+solana.1.16.17" }

[dev-dependencies]
tokio = { version = "1.32.0", 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.10.0+solana.1.16.16"
version = "1.10.0+solana.1.16.17"
authors = ["Triton One"]
edition = "2021"
description = "Yellowstone gRPC Geyser Plugin"
Expand All @@ -26,10 +26,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.16"
solana-logger = "=1.16.16"
solana-sdk = "=1.16.16"
solana-transaction-status = "=1.16.16"
solana-geyser-plugin-interface = "=1.16.17"
solana-logger = "=1.16.17"
solana-sdk = "=1.16.17"
solana-transaction-status = "=1.16.17"
spl-token-2022 = "0.9.0"
tokio = { version = "1.32.0", 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.3+solana.1.16.16"
version = "1.0.0-rc.3+solana.1.16.17"
authors = ["Triton One"]
edition = "2021"
description = "Yellowstone gRPC Kafka Producer/Dedup/Consumer"
Expand Down
8 changes: 4 additions & 4 deletions 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.10.0+solana.1.16.16"
version = "1.10.0+solana.1.16.17"
authors = ["Triton One"]
edition = "2021"
description = "Yellowstone gRPC Geyser Protobuf Definitions"
Expand All @@ -12,9 +12,9 @@ keywords = ["solana"]
[dependencies]
bincode = "1.3.3"
prost = "0.12.1"
solana-account-decoder = "=1.16.16"
solana-sdk = "=1.16.16"
solana-transaction-status = "=1.16.16"
solana-account-decoder = "=1.16.17"
solana-sdk = "=1.16.17"
solana-transaction-status = "=1.16.17"
tonic = "0.10.2"

[build-dependencies]
Expand Down

0 comments on commit e9b1293

Please sign in to comment.