diff --git a/CHANGELOG.md b/CHANGELOG.md index 5281c3315..72678d207 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,13 +12,13 @@ ## Improvements -# v1.28.0-rc3 / 2024-07-04 +# v1.28.0-rc4 / 2024-07-04 -This is the third release candidate of the upcoming MANDATORY Lotus v1.28.0 release, which will deliver the Filecoin network version 23, codenamed Waffle 🧇. +This is the fourth release candidate of the upcoming MANDATORY Lotus v1.28.0 release, which will deliver the Filecoin network version 23, codenamed Waffle 🧇. **This release candidate sets the calibration network to upgrade at epoch 1779094, corresponding to 2024-07-11T12:00:00Z.** This release does NOT set the mainnet upgrade epoch yet, in which will be updated in the final release. -Compared to `Lotus v1.28.0-rc2`, the `Lotus v1.28.0-rc3` introduces the manifest for the "control" nodes for F3 passive testing. This change shouldn't have any impact on production nodes. +Compared to `Lotus v1.28.0-rc3`, the `Lotus v1.28.0-rc4` release addresses an issue that allows us to publish Docker builds. ☢️ Upgrade Warnings ☢️ @@ -93,6 +93,7 @@ For certain node operators, such as full archival nodes or systems that need to - Add finality-related params for `eth_getBlockByNumber` (https://github.com/filecoin-project/lotus/pull/12110) - rename `Actor.Address` to `Actor.DelegatedAddress` and only use it for f4 addresses (https://github.com/filecoin-project/lotus/pull/12155) - feat:ec: integrate F3 dynamic manifest #12185 +- fix: f3: Fix F3 build parameters for testground target (#12189) ([filecoin-project/lotus#12189](https://github.com/filecoin-project/lotus/pull/12189)) # v1.27.1 / 2024-06-24 diff --git a/build/openrpc/full.json b/build/openrpc/full.json index 3c235358c..97904162c 100644 --- a/build/openrpc/full.json +++ b/build/openrpc/full.json @@ -2,7 +2,7 @@ "openrpc": "1.2.6", "info": { "title": "Lotus RPC API", - "version": "1.28.0-rc3" + "version": "1.28.0-rc4" }, "methods": [ { diff --git a/build/openrpc/gateway.json b/build/openrpc/gateway.json index fa68c9eed..0b9236bf2 100644 --- a/build/openrpc/gateway.json +++ b/build/openrpc/gateway.json @@ -2,7 +2,7 @@ "openrpc": "1.2.6", "info": { "title": "Lotus RPC API", - "version": "1.28.0-rc3" + "version": "1.28.0-rc4" }, "methods": [ { diff --git a/build/openrpc/miner.json b/build/openrpc/miner.json index d323e9f46..02096c1dc 100644 --- a/build/openrpc/miner.json +++ b/build/openrpc/miner.json @@ -2,7 +2,7 @@ "openrpc": "1.2.6", "info": { "title": "Lotus RPC API", - "version": "1.28.0-rc3" + "version": "1.28.0-rc4" }, "methods": [ { diff --git a/build/openrpc/worker.json b/build/openrpc/worker.json index 046dedb2a..0dba09490 100644 --- a/build/openrpc/worker.json +++ b/build/openrpc/worker.json @@ -2,7 +2,7 @@ "openrpc": "1.2.6", "info": { "title": "Lotus RPC API", - "version": "1.28.0-rc3" + "version": "1.28.0-rc4" }, "methods": [ { diff --git a/build/params_testground.go b/build/params_testground.go index 8f3deb937..864603d16 100644 --- a/build/params_testground.go +++ b/build/params_testground.go @@ -136,7 +136,8 @@ var ( WhitelistedBlock = cid.Undef BootstrappersFile = "" GenesisFile = "" - F3Enabled = false + f3Enabled = false + ManifestServerID = "" F3BootstrapEpoch abi.ChainEpoch = -1 ) diff --git a/build/version.go b/build/version.go index ab7d743f9..de9c90d19 100644 --- a/build/version.go +++ b/build/version.go @@ -39,7 +39,7 @@ func BuildTypeString() string { } // NodeBuildVersion is the local build version of the Lotus daemon -const NodeBuildVersion string = "1.28.0-rc3" +const NodeBuildVersion string = "1.28.0-rc4" func NodeUserVersion() BuildVersion { if os.Getenv("LOTUS_VERSION_IGNORE_COMMIT") == "1" { @@ -50,7 +50,7 @@ func NodeUserVersion() BuildVersion { } // MinerBuildVersion is the local build version of the Lotus miner -const MinerBuildVersion = "1.28.0-rc3" +const MinerBuildVersion = "1.28.0-rc4" func MinerUserVersion() BuildVersion { if os.Getenv("LOTUS_VERSION_IGNORE_COMMIT") == "1" { diff --git a/documentation/en/cli-lotus-miner.md b/documentation/en/cli-lotus-miner.md index 61325c9f6..ddc4ac968 100644 --- a/documentation/en/cli-lotus-miner.md +++ b/documentation/en/cli-lotus-miner.md @@ -7,7 +7,7 @@ USAGE: lotus-miner [global options] command [command options] [arguments...] VERSION: - 1.28.0-rc3 + 1.28.0-rc4 COMMANDS: init Initialize a lotus miner repo diff --git a/documentation/en/cli-lotus-worker.md b/documentation/en/cli-lotus-worker.md index 02cc8801b..bbdce5c12 100644 --- a/documentation/en/cli-lotus-worker.md +++ b/documentation/en/cli-lotus-worker.md @@ -7,7 +7,7 @@ USAGE: lotus-worker [global options] command [command options] [arguments...] VERSION: - 1.28.0-rc3 + 1.28.0-rc4 COMMANDS: run Start lotus worker diff --git a/documentation/en/cli-lotus.md b/documentation/en/cli-lotus.md index d7fdc3a2f..d097733d8 100644 --- a/documentation/en/cli-lotus.md +++ b/documentation/en/cli-lotus.md @@ -7,7 +7,7 @@ USAGE: lotus [global options] command [command options] [arguments...] VERSION: - 1.28.0-rc3 + 1.28.0-rc4 COMMANDS: daemon Start a lotus daemon process