Skip to content

Commit 8347235

Browse files
Merge pull request #11018 from filecoin-project/sbansal/merge-1.23.2-into-releases
chore: merge release/v1.23.2 into releases
2 parents 26dbe51 + 9f73150 commit 8347235

File tree

10 files changed

+16
-4
lines changed

10 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Lotus changelog
22

3+
# v1.23.2 / 2023-06-28
4+
5+
This is a patch release on top of 1.23.1 containing the fix for https://github.com/filecoin-project/lotus/issues/10906
6+
This fixes the syncing issue seen by many node operators/SPs, usually when performing actions which would result in msgs staying in their mpool for longer periods of time (ex. PSD) resulting in these msgs being republished multiple times and possibly lowering your peer scores. Please refer to the above issue for more details.
7+
We'd recommend everyone to accept this fix to better overall network health
8+
9+
## Improvements
10+
- fix: pubsub: do not treat ErrExistingNonce as Reject
11+
12+
313
# v1.23.1 / 2023-06-20
414

515
This is an optional feature release of Lotus. This feature release includes numerous improvements and enhancements for node operators, ETH RPC-providers and storage providers.

build/openrpc/full.json.gz

0 Bytes
Binary file not shown.

build/openrpc/gateway.json.gz

0 Bytes
Binary file not shown.

build/openrpc/miner.json.gz

0 Bytes
Binary file not shown.

build/openrpc/worker.json.gz

0 Bytes
Binary file not shown.

build/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func BuildTypeString() string {
3737
}
3838

3939
// BuildVersion is the local build version
40-
const BuildVersion = "1.23.1"
40+
const BuildVersion = "1.23.2"
4141

4242
func UserVersion() string {
4343
if os.Getenv("LOTUS_VERSION_IGNORE_COMMIT") == "1" {

chain/sub/incoming.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,8 @@ func (mv *MessageValidator) Validate(ctx context.Context, pid peer.ID, msg *pubs
359359
case xerrors.Is(err, messagepool.ErrNonceGap):
360360
fallthrough
361361
case xerrors.Is(err, messagepool.ErrNonceTooLow):
362+
fallthrough
363+
case xerrors.Is(err, messagepool.ErrExistingNonce):
362364
return pubsub.ValidationIgnore
363365
default:
364366
return pubsub.ValidationReject

documentation/en/cli-lotus-miner.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ USAGE:
77
lotus-miner [global options] command [command options] [arguments...]
88
99
VERSION:
10-
1.23.1
10+
1.23.2
1111
1212
COMMANDS:
1313
init Initialize a lotus miner repo

documentation/en/cli-lotus-worker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ USAGE:
77
lotus-worker [global options] command [command options] [arguments...]
88
99
VERSION:
10-
1.23.1
10+
1.23.2
1111
1212
COMMANDS:
1313
run Start lotus worker

documentation/en/cli-lotus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ USAGE:
77
lotus [global options] command [command options] [arguments...]
88
99
VERSION:
10-
1.23.1
10+
1.23.2
1111
1212
COMMANDS:
1313
daemon Start a lotus daemon process

0 commit comments

Comments
 (0)