Skip to content

Commit c3ed3a5

Browse files
authored
chore: prep 1.1.2 (#3345)
1 parent 8846ed3 commit c3ed3a5

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12-
### Fixed
13-
14-
- Increase P2P pubsub max message size to match `DefaultMaxBlobSize`, preventing fullnode desync on large blocks
12+
## v1.1.2
1513

1614
### Changes
1715

@@ -25,6 +23,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2523
- Optimize metadata writes by making it async in cache store [#3298](https://github.com/evstack/ev-node/pull/3298)
2624
- Reduce tx cache retention to avoid OOM under (really) heavy tx load [#3299](https://github.com/evstack/ev-node/pull/3299)
2725

26+
### Fixed
27+
28+
- Increase P2P pubsub max message size to match `DefaultMaxBlobSize`, preventing fullnode desync on large blocks [#3344](https://github.com/evstack/ev-node/pull/3344).
29+
2830
## v1.1.1
2931

3032
### Changes

block/internal/common/consts.go

Lines changed: 0 additions & 1 deletion
This file was deleted.

pkg/sequencers/solo/sequencer_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ func TestSoloSequencer_SubmitBatchTxs_UnboundedByDefault(t *testing.T) {
296296
seq := newTestSequencer(t)
297297

298298
bigTx := make([]byte, 1024*1024)
299-
for i := 0; i < 10; i++ {
299+
for range 10 {
300300
_, err := seq.SubmitBatchTxs(context.Background(), coresequencer.SubmitBatchTxsRequest{
301301
Id: []byte("test"),
302302
Batch: &coresequencer.Batch{Transactions: [][]byte{bigTx}},

0 commit comments

Comments
 (0)