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

Upgrade teku to 24.2.0 and prep for release #971

Merged
merged 6 commits into from
Feb 16, 2024
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: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# Changelog

## Next version
## 24.2.0

This is a required update for Mainnet users containing the configuration for the Deneb upgrade on March 13th. This update is required for Gnosis Deneb network upgrade on March 11th. For all other networks, this update is optional.

### Upcoming Breaking Changes
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was mentioned in a previous release. We don't need to mention it again

- `--Xworker-pool-size` cli option will be removed in a future release. This option has been replaced with `--vertx-worker-pool-size`

### Features Added
- Improve Key Manager API import operation to use parallel processing instead of serial processing.
- Add Deneb configuration for Mainnet [#971](https://github.com/Consensys/web3signer/pull/971)
- Improve Key Manager API import operation to use parallel processing instead of serial processing

### Bugs fixed
- Ensure that Web3Signer stops the http server when a sigterm is received
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,17 +97,16 @@ private BeaconBlockBody randomBeaconBlockBody(final UInt64 slotNum) {
builder.syncAggregate(util.randomSyncAggregateIfRequiredBySchema(schema));
}
if (builder.supportsExecutionPayload()) {
builder.executionPayload(
SafeFuture.completedFuture(randomExecutionPayload(spec.atSlot(slotNum))));
builder.executionPayload(randomExecutionPayload(spec.atSlot(slotNum)));
}
if (builder.supportsBlsToExecutionChanges()) {
builder.blsToExecutionChanges(
randomSignedBlsToExecutionChangesList(spec.atSlot(slotNum)));
}
if (builder.supportsKzgCommitments()) {
builder.blobKzgCommitments(
SafeFuture.completedFuture(util.randomBlobKzgCommitments()));
builder.blobKzgCommitments(util.randomBlobKzgCommitments());
}
return SafeFuture.completedFuture(builder).toVoid();
})
.join();
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
besuVersion=24.1.0
besuVersion=24.1.2
besuDistroUrl=https://hyperledger.jfrog.io/artifactory/besu-binaries/besu/${besuVersion}/besu-${besuVersion}.tar.gz

hashicorpVaultVersion=1.9.2
Expand Down
6 changes: 3 additions & 3 deletions gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ dependencyManagement {
entry 'mockito-junit-jupiter'
}

dependency 'org.hyperledger.besu:plugin-api:24.1.0'
dependency 'org.hyperledger.besu.internal:metrics-core:24.1.0'
dependency 'org.hyperledger.besu:plugin-api:24.1.2'
dependency 'org.hyperledger.besu.internal:metrics-core:24.1.2'

dependency 'org.xipki.iaik:sunpkcs11-wrapper:1.4.10'

dependencySet(group: 'tech.pegasys.teku.internal', version: '24.1.1') {
dependencySet(group: 'tech.pegasys.teku.internal', version: '24.2.0') {
entry ('bls') {
exclude group: 'org.bouncycastle', name: 'bcprov-jdk15on'
}
Expand Down
Loading