mirror of
https://github.com/filecoin-project/lotus.git
synced 2026-03-13 08:32:30 +08:00
build: release Lotus Node and Miner v1.34.4 (#13489)
* build: release Lotus Node and Miner v1.34.4 build: release Lotus Node and Miner v1.34.4 * chore: update changelog for v1.34.4 release chore: update changelog for v1.34.4 release * chore: backport #13491 to the `release/v1.34.4` branch (#13492) fix: drain F3 data reader when skipping F3 import during snapshot import (#13491) * build: release Lotus Node and Miner v1.34.4 build: release Lotus Node and Miner v1.34.4 * chore: update changelog for v1.34.4 release chore: update changelog for v1.34.4 release * chore: update changelog chore: update changelog
This commit is contained in:
@@ -10,17 +10,18 @@
|
||||
# UNRELEASED
|
||||
|
||||
## 🐛 Bug Fixes
|
||||
- fix: drain F3 data reader when skipping F3 import during snapshot import ([filecoin-project/lotus#13491](https://github.com/filecoin-project/lotus/pull/13491))
|
||||
|
||||
## 👌 Improvements
|
||||
|
||||
# Node v1.34.4-rc1 / 2025-12-10
|
||||
# Node v1.34.4 / 2026-02-05
|
||||
|
||||
This is a patch release candidate primarily to include the fr32 fix required for Storage Provider software. All SPs (including Curio SPs) should update to this latest Lotus release.
|
||||
This is a patch release that includes bug fixes and backports, notably the fr32 fix for Storage Provider compatibility and the F3 restart on calibnet.
|
||||
|
||||
## Bug Fixes
|
||||
|
||||
- fix(eth): trace_filter returns [] for null round ranges ([filecoin-project/lotus#13483](https://github.com/filecoin-project/lotus/pull/13483))
|
||||
- fix(f3): Update F3 manifest to restart F3 on calibnet ([filecoin-project/lotus#13488](https://github.com/filecoin-project/lotus/pull/13488))
|
||||
- fix: drain F3 data reader when skipping F3 import during snapshot import ([filecoin-project/lotus#13491](https://github.com/filecoin-project/lotus/pull/13491))
|
||||
- fix(fr32): Update go-commp-utils to include fr32 fixes for Storage Provider compatibility ([filecoin-project/lotus#13455](https://github.com/filecoin-project/lotus/pull/13455))
|
||||
|
||||
## 📝 Changelog
|
||||
|
||||
2
build/openrpc/full.json
generated
2
build/openrpc/full.json
generated
@@ -2,7 +2,7 @@
|
||||
"openrpc": "1.2.6",
|
||||
"info": {
|
||||
"title": "Lotus RPC API",
|
||||
"version": "1.34.4-rc1"
|
||||
"version": "1.34.4"
|
||||
},
|
||||
"methods": [
|
||||
{
|
||||
|
||||
2
build/openrpc/gateway.json
generated
2
build/openrpc/gateway.json
generated
@@ -2,7 +2,7 @@
|
||||
"openrpc": "1.2.6",
|
||||
"info": {
|
||||
"title": "Lotus RPC API",
|
||||
"version": "1.34.4-rc1"
|
||||
"version": "1.34.4"
|
||||
},
|
||||
"methods": [
|
||||
{
|
||||
|
||||
2
build/openrpc/miner.json
generated
2
build/openrpc/miner.json
generated
@@ -2,7 +2,7 @@
|
||||
"openrpc": "1.2.6",
|
||||
"info": {
|
||||
"title": "Lotus RPC API",
|
||||
"version": "1.34.4-rc1"
|
||||
"version": "1.34.4"
|
||||
},
|
||||
"methods": [
|
||||
{
|
||||
|
||||
2
build/openrpc/v0/gateway.json
generated
2
build/openrpc/v0/gateway.json
generated
@@ -2,7 +2,7 @@
|
||||
"openrpc": "1.2.6",
|
||||
"info": {
|
||||
"title": "Lotus RPC API",
|
||||
"version": "1.34.4-rc1"
|
||||
"version": "1.34.4"
|
||||
},
|
||||
"methods": [
|
||||
{
|
||||
|
||||
2
build/openrpc/v2/full.json
generated
2
build/openrpc/v2/full.json
generated
@@ -2,7 +2,7 @@
|
||||
"openrpc": "1.2.6",
|
||||
"info": {
|
||||
"title": "Lotus RPC API",
|
||||
"version": "1.34.4-rc1"
|
||||
"version": "1.34.4"
|
||||
},
|
||||
"methods": [
|
||||
{
|
||||
|
||||
2
build/openrpc/v2/gateway.json
generated
2
build/openrpc/v2/gateway.json
generated
@@ -2,7 +2,7 @@
|
||||
"openrpc": "1.2.6",
|
||||
"info": {
|
||||
"title": "Lotus RPC API",
|
||||
"version": "1.34.4-rc1"
|
||||
"version": "1.34.4"
|
||||
},
|
||||
"methods": [
|
||||
{
|
||||
|
||||
2
build/openrpc/worker.json
generated
2
build/openrpc/worker.json
generated
@@ -2,7 +2,7 @@
|
||||
"openrpc": "1.2.6",
|
||||
"info": {
|
||||
"title": "Lotus RPC API",
|
||||
"version": "1.34.4-rc1"
|
||||
"version": "1.34.4"
|
||||
},
|
||||
"methods": [
|
||||
{
|
||||
|
||||
@@ -7,7 +7,7 @@ import (
|
||||
)
|
||||
|
||||
// NodeBuildVersion is the local build version of the Lotus daemon
|
||||
const NodeBuildVersion string = "1.34.4-rc1"
|
||||
const NodeBuildVersion string = "1.34.4"
|
||||
|
||||
func NodeUserVersion() BuildVersion {
|
||||
if os.Getenv("LOTUS_VERSION_IGNORE_COMMIT") == "1" {
|
||||
@@ -18,7 +18,7 @@ func NodeUserVersion() BuildVersion {
|
||||
}
|
||||
|
||||
// MinerBuildVersion is the local build version of the Lotus miner
|
||||
const MinerBuildVersion = "1.34.4-rc1"
|
||||
const MinerBuildVersion = "1.34.4"
|
||||
|
||||
func MinerUserVersion() BuildVersion {
|
||||
if os.Getenv("LOTUS_VERSION_IGNORE_COMMIT") == "1" {
|
||||
|
||||
2
documentation/en/cli-lotus-miner.md
generated
2
documentation/en/cli-lotus-miner.md
generated
@@ -8,7 +8,7 @@ USAGE:
|
||||
lotus-miner [global options] command [command options]
|
||||
|
||||
VERSION:
|
||||
1.34.4-rc1
|
||||
1.34.4
|
||||
|
||||
COMMANDS:
|
||||
init Initialize a lotus miner repo
|
||||
|
||||
2
documentation/en/cli-lotus-worker.md
generated
2
documentation/en/cli-lotus-worker.md
generated
@@ -8,7 +8,7 @@ USAGE:
|
||||
lotus-worker [global options] command [command options]
|
||||
|
||||
VERSION:
|
||||
1.34.4-rc1
|
||||
1.34.4
|
||||
|
||||
COMMANDS:
|
||||
run Start lotus worker
|
||||
|
||||
2
documentation/en/cli-lotus.md
generated
2
documentation/en/cli-lotus.md
generated
@@ -8,7 +8,7 @@ USAGE:
|
||||
lotus [global options] command [command options]
|
||||
|
||||
VERSION:
|
||||
1.34.4-rc1
|
||||
1.34.4
|
||||
|
||||
COMMANDS:
|
||||
daemon Start a lotus daemon process
|
||||
|
||||
Reference in New Issue
Block a user