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

Breaking changes #5191

Merged
merged 22 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
bb6caea
chore: increase max dbs (#4381)
onbjerg Sep 24, 2023
f92e388
chore(primitives): derive `Compact` for `StageUnitCheckpoint` (#3452)
shekhirin Sep 25, 2023
f7fc01c
chore(merkle): remove last walker key from checkpoint (#5069)
rkrasiuk Oct 18, 2023
74a939f
Merge remote-tracking branch 'origin/main' into breaking-changes
shekhirin Nov 17, 2023
09243be
Merge remote-tracking branch 'origin/main' into breaking-changes
shekhirin Nov 23, 2023
5757bc0
Merge remote-tracking branch 'origin/main' into breaking-changes
shekhirin Jan 9, 2024
2887cda
fix Cargo.lock
shekhirin Jan 9, 2024
da9d9d8
feat(storage): use roaring bitmaps for history tables (#5463)
shekhirin Feb 2, 2024
0dc0bf3
Merge remote-tracking branch 'origin/main' into breaking-changes
shekhirin Feb 19, 2024
026abc9
Merge remote-tracking branch 'origin/main' into breaking-changes
shekhirin Feb 26, 2024
e0128c7
Merge remote-tracking branch 'origin/main' into breaking-changes
shekhirin Feb 26, 2024
46bb03f
feat(storage): rename tables (#6787)
shekhirin Feb 27, 2024
f88f023
Merge remote-tracking branch 'origin/main' into breaking-changes
joshieDo Feb 27, 2024
20b4365
feat(storage): bump database version (#6825)
shekhirin Feb 27, 2024
41c5f1a
WIP: static files (#6444)
shekhirin Feb 27, 2024
ed3c754
Merge remote-tracking branch 'origin/main' into breaking-changes
joshieDo Feb 27, 2024
410045c
set hive tests to main branch again
joshieDo Feb 28, 2024
d2f9c4f
Merge remote-tracking branch 'origin/main' into breaking-changes
shekhirin Feb 29, 2024
d47171b
Merge remote-tracking branch 'origin/main' into breaking-changes
shekhirin Feb 29, 2024
e0fc334
feat(primitives): remove `TxValue` wrapper (#6874)
shekhirin Feb 29, 2024
fdc372f
feat(docs): mention database compatibility in README.md (#6875)
shekhirin Feb 29, 2024
6af0e12
feat(bin): drop static files in `db drop` (#6876)
shekhirin Feb 29, 2024
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
2 changes: 1 addition & 1 deletion .config/nextest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ slow-timeout = { period = "30s", terminate-after = 4 }

[[profile.default.overrides]]
filter = "test(general_state_tests)"
slow-timeout = { period = "1m", terminate-after = 4 }
slow-timeout = { period = "1m", terminate-after = 10 }
2 changes: 1 addition & 1 deletion CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ crates/metrics @onbjerg
crates/tracing @onbjerg
crates/tasks @mattsse
crates/prune @shekhirin @joshieDo
crates/snapshot @joshieDo
crates/static-file @joshieDo @shekhirin
.github/ @onbjerg @gakonst @DaniPopes
100 changes: 66 additions & 34 deletions Cargo.lock

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

6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ members = [
"crates/consensus/beacon-core/",
"crates/consensus/common/",
"crates/ethereum-forks/",
"crates/etl",
"crates/interfaces/",
"crates/metrics/",
"crates/metrics/metrics-derive/",
Expand Down Expand Up @@ -41,8 +42,8 @@ members = [
"crates/node-optimism/",
"crates/node-core/",
"crates/node-api/",
"crates/snapshot/",
"crates/stages/",
"crates/static-file/",
"crates/storage/codecs/",
"crates/storage/codecs/derive/",
"crates/storage/db/",
Expand Down Expand Up @@ -136,6 +137,7 @@ reth-ecies = { path = "crates/net/ecies" }
reth-eth-wire = { path = "crates/net/eth-wire" }
reth-ethereum-forks = { path = "crates/ethereum-forks" }
reth-ethereum-payload-builder = { path = "crates/payload/ethereum" }
reth-etl = { path = "crates/etl" }
reth-optimism-payload-builder = { path = "crates/payload/optimism" }
reth-interfaces = { path = "crates/interfaces" }
reth-ipc = { path = "crates/rpc/ipc" }
Expand All @@ -161,8 +163,8 @@ reth-rpc-builder = { path = "crates/rpc/rpc-builder" }
reth-rpc-engine-api = { path = "crates/rpc/rpc-engine-api" }
reth-rpc-types = { path = "crates/rpc/rpc-types" }
reth-rpc-types-compat = { path = "crates/rpc/rpc-types-compat" }
reth-snapshot = { path = "crates/snapshot" }
reth-stages = { path = "crates/stages" }
reth-static-file = { path = "crates/static-file" }
reth-tasks = { path = "crates/tasks" }
reth-tokio-util = { path = "crates/tokio-util" }
reth-tracing = { path = "crates/tracing" }
Expand Down
2 changes: 1 addition & 1 deletion bin/reth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ reth-payload-validator.workspace = true
reth-basic-payload-builder.workspace = true
reth-discv4.workspace = true
reth-prune.workspace = true
reth-snapshot = { workspace = true, features = ["clap"] }
reth-static-file = { workspace = true, features = ["clap"] }
reth-trie.workspace = true
reth-nippy-jar.workspace = true
reth-node-api.workspace = true
Expand Down
Loading
Loading