Skip to content
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
10 changes: 5 additions & 5 deletions Cargo.lock

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

6 changes: 6 additions & 0 deletions crates/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.10.3](https://github.com/flashbots/contender/releases/tag/v0.10.3) - 2026-06-23

- `spam-stream`: send stream specs concurrently across the signer pool, with one worker per signer and serial nonce handling per signer; `--pool-size` now controls send concurrency ([#590](https://github.com/flashbots/contender/pull/590))
- `spam-stream`: emit backpressure events when a per-signer worker queue saturates, instead of silently stalling the dispatch loop ([#590](https://github.com/flashbots/contender/pull/590))
- `spam-stream`: add tests for signer routing and nonce reuse invariants, and document the per-signer worker model ([#590](https://github.com/flashbots/contender/pull/590))

## [0.10.2](https://github.com/flashbots/contender/releases/tag/v0.10.2) - 2026-06-11

- Add scenario access list support with placeholder resolution ([#588](https://github.com/flashbots/contender/pull/588))
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "contender_cli"
description = "Contender CLI"
version = "0.10.2"
version = "0.10.3"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/src/server/static/openrpc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Contender RPC Server",
"description": "JSON-RPC API to remotely run contender sessions.",
"version": "0.10.2"
"version": "0.10.3"
},
"x-source": {
"repository": "https://github.com/flashbots/contender",
Expand Down
4 changes: 4 additions & 0 deletions crates/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.11.2](https://github.com/flashbots/contender/releases/tag/contender_core-v0.11.2) - 2026-06-23

- Box large `FlashblocksError` variants to reduce enum size and satisfy clippy without changing Flashblocks behavior ([#590](https://github.com/flashbots/contender/pull/590))

## [0.11.1](https://github.com/flashbots/contender/releases/tag/contender_core-v0.11.1) - 2026-06-11

*from [#580](https://github.com/flashbots/contender/pull/580):*
Expand Down
2 changes: 1 addition & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "contender_core"
description = "Contender core library"
version = "0.11.1"
version = "0.11.2"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/report/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "contender_report"
description = "Generate reports to analyze chain performance and orderflow from contender spam runs."
version = "0.10.2"
version = "0.10.3"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/sqlite_db/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "contender_sqlite"
description = "SQLite database for contender"
version = "0.10.2"
version = "0.10.3"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/testfile/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "contender_testfile"
description = "Definitions for contender scenarios to be encoded as TOML files."
version = "0.10.2"
version = "0.10.3"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
Expand Down
Loading