From 1de87e965842a91157d4dd9149ad6d3113e1cbe6 Mon Sep 17 00:00:00 2001 From: simlecode <69969590+simlecode@users.noreply.github.com> Date: Tue, 13 Jun 2023 14:15:35 +0800 Subject: [PATCH] chore: bump version to v1.12.0-rc1 --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ go.mod | 2 +- go.sum | 4 ++-- pkg/constants/version.go | 2 +- 4 files changed, 33 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9c95d0e6c..1b0ce38f03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # venus changelog +## v1.12.0-rc1 + +* fix: update UpgradeHyggeHeight to -21 in forcenet [[#5912](https://github.com/filecoin-project/venus/pull/5912)] +* opt: push all tag to tianyan by [[#5934](https://github.com/filecoin-project/venus/pull/5934)] +* fix: supply release id [[#5938](https://github.com/filecoin-project/venus/pull/5938)] +* feat: change init logic [[#5941](https://github.com/filecoin-project/venus/pull/5941)] +* fix: fix import when less than 900 height [[#5950](https://github.com/filecoin-project/venus/pull/5950)] +* opt: remove perm adapt strategy [[#5953](https://github.com/filecoin-project/venus/pull/5953)] +* feat: message pool: change locks to RWMutexes for performance [[#5964](https://github.com/filecoin-project/venus/pull/5964)] +* feat: mpool: prune excess messages before selection [[#5967](https://github.com/filecoin-project/venus/pull/5967)] +* fix: Fix generating version in the current directory [[#5972](https://github.com/filecoin-project/venus/pull/5972)] +* Opt/remove init option [[#5974](https://github.com/filecoin-project/venus/pull/5974)] +* Fix/not store event [[#5977](https://github.com/filecoin-project/venus/pull/5977)] +* fix: fetch filecoin-ffi failed [[#5981](https://github.com/filecoin-project/venus/pull/5981)] +* feat: add unseal state / 增加了 unseal 的状态类型 [[#5990](https://github.com/filecoin-project/venus/pull/5990)] +* feat: chain: speed up calculation of genesis circ supply [[#5991](https://github.com/filecoin-project/venus/pull/5991)] +* fix: gas estimation: do not special case paych collects [[#5992](https://github.com/filecoin-project/venus/pull/5992)] +* feat: downgrade perm for eth from write to read [[#5995](https://github.com/filecoin-project/venus/pull/5995)] +* feat: verify eth filter's block index is in hex [[#5996](https://github.com/filecoin-project/venus/pull/5996)] +* feat: Network parameters add an Eip155ChainID field [[#5997](https://github.com/filecoin-project/venus/pull/5997)] +* opt: add codecov token [[#5998](https://github.com/filecoin-project/venus/pull/5998)] +* opt: MinerInfo adds the PendingOwnerAddress field [[#5999](https://github.com/filecoin-project/venus/pull/5999)] +* feat: add ExecutionTrace cache [[#6000](https://github.com/filecoin-project/venus/pull/6000)] +* feat: add batch deal for market [[#5829](https://github.com/filecoin-project/venus/pull/5829)] +* check if epoch is negative in GetTipsetByHeight() [[#6008](https://github.com/filecoin-project/venus/pull/6008)] +* chore: rename market to droplet [[#6005](https://github.com/filecoin-project/venus/pull/6005)] +* feat: add vm execution lanes [[#6011](https://github.com/filecoin-project/venus/pull/6011)] +* refactor: market: rename OfflineDealImport to DealsImport [[#6012](https://github.com/filecoin-project/venus/pull/6012)] + ## v1.11.1 * fix: windowPoST verify fail [[#fvm-1750](https://github.com/filecoin-project/ref-fvm/pull/1750)] diff --git a/go.mod b/go.mod index 4537fc8ed3..7cd3f3615b 100644 --- a/go.mod +++ b/go.mod @@ -57,7 +57,7 @@ require ( github.com/hashicorp/golang-lru/v2 v2.0.2 github.com/howeyc/gopass v0.0.0-20190910152052-7cb4b85ec19c github.com/ipfs-force-community/metrics v1.0.1-0.20211022060227-11142a08b729 - github.com/ipfs-force-community/sophon-auth v1.11.1-0.20230607031351-bc57c2b78f44 + github.com/ipfs-force-community/sophon-auth v1.12.0-rc1 github.com/ipfs/go-blockservice v0.4.0 github.com/ipfs/go-cid v0.3.2 github.com/ipfs/go-datastore v0.6.0 diff --git a/go.sum b/go.sum index 76662a55d7..26f97db1c5 100644 --- a/go.sum +++ b/go.sum @@ -684,8 +684,8 @@ github.com/ipfs-force-community/go-jsonrpc v0.1.7 h1:e0ZTapGFhDY54j0QpRYN54Q3FHa github.com/ipfs-force-community/go-jsonrpc v0.1.7/go.mod h1:jBSvPTl8V1N7gSTuCR4bis8wnQnIjHbRPpROol6iQKM= github.com/ipfs-force-community/metrics v1.0.1-0.20211022060227-11142a08b729 h1:elS3KmzAMVrcZpmP2RMEjs9Zlwh6LfhJTfYQdj4TREs= github.com/ipfs-force-community/metrics v1.0.1-0.20211022060227-11142a08b729/go.mod h1:mn40SioMuKtjmRumHFy/fJ26Pn028XuDjUJE9dorjyw= -github.com/ipfs-force-community/sophon-auth v1.11.1-0.20230607031351-bc57c2b78f44 h1:mezDnUywtX74k8onT/8M8FtKw1rEPFHH24DCkK78VeM= -github.com/ipfs-force-community/sophon-auth v1.11.1-0.20230607031351-bc57c2b78f44/go.mod h1:cGYCfjA/BDB/Km9P7Za6t1hmwpFlPKf8ho/CHmLG81Y= +github.com/ipfs-force-community/sophon-auth v1.12.0-rc1 h1:Rm91rxnwbx6ejEIPh7Bmf/+cWaNezhSj/zwmIkG9MG4= +github.com/ipfs-force-community/sophon-auth v1.12.0-rc1/go.mod h1:cGYCfjA/BDB/Km9P7Za6t1hmwpFlPKf8ho/CHmLG81Y= github.com/ipfs/bbloom v0.0.1/go.mod h1:oqo8CVWsJFMOZqTglBG4wydCE4IQA/G2/SEofB0rjUI= github.com/ipfs/bbloom v0.0.4 h1:Gi+8EGJ2y5qiD5FbsbpX/TMNcJw8gSqr7eyjHa4Fhvs= github.com/ipfs/bbloom v0.0.4/go.mod h1:cS9YprKXpoZ9lT0n/Mw/a6/aFV6DTjTLYHeA+gyqMG0= diff --git a/pkg/constants/version.go b/pkg/constants/version.go index ff4fbf9a9a..837e68733f 100644 --- a/pkg/constants/version.go +++ b/pkg/constants/version.go @@ -5,7 +5,7 @@ import ( ) // BuildVersion is the local build version, set by build system -const BuildVersion = "1.11.1" +const BuildVersion = "1.12.0-rc1" var CurrentCommit string