Skip to content

Commit 18f6256

Browse files
authored
Merge pull request #5911 from filecoin-project/pre/v1.11
Pre/v1.11 / 合并预发布分支
2 parents f699baa + 6aff310 commit 18f6256

File tree

2 files changed

+29
-3
lines changed

2 files changed

+29
-3
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# venus changelog
22

3+
## v1.11.0-rc1
4+
5+
### New Features
6+
* feat: add bootstrap peers flag / 添加bootstrap节点的Flag [#5742](https://github.com/filecoin-project/venus/pull/5742)
7+
* feat: add status api to detect api ready / 添加状态检测接口 [#5740](https://github.com/filecoin-project/venus/pull/5740)
8+
* feat: update auth client with token /更新authClient的token授权 [[#5752](https://github.com/filecoin-project/venus/pull/5752)]
9+
* feat: make chain tipset fetching 1000x faster / chain fetch 优化 [[#5824](https://github.com/filecoin-project/venus/pull/5824)]
10+
* feat: get signer deal detail /增加获取单个存储订单和检索订单的接口 [[#5831](https://github.com/filecoin-project/venus/pull/5831)]
11+
* feat: update cache to the new generic version /缓存库版本升级 [[#5857](https://github.com/filecoin-project/venus/pull/5857)]
12+
* feat: add docker push by @hunjixin /增加推送到镜像仓库的功能 [[#5889](https://github.com/filecoin-project/venus/pull/5889)]
13+
14+
### Bug Fixes
15+
16+
* fix: Saving genesis blocks when importing snapshots by @simlecode / 修复删除 badger chain 后导入快照失败 [[#5892](https://github.com/filecoin-project/venus/pull/5892)]
17+
* fix: use FIL pointer to unmarshaltext by @simlecode /设置UnmarshalText方法的接收器为FIL指针 [[#5869](https://github.com/filecoin-project/venus/pull/5869)]
18+
* fix: not sync in 2k network by @hunjixin / 修复2k网络同步失败 [[#5748](https://github.com/filecoin-project/venus/pull/5748)]
19+
20+
321
## v1.10.1
422

523
* 修复 evm 命令部署合约失败 [[#5785](https://github.com/filecoin-project/venus/pull/5785)]

Makefile

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,13 +123,21 @@ build: $(BUILD_DEPS)
123123

124124

125125
.PHONY: docker
126-
127-
128126
TAG:=test
129127
docker: $(BUILD_DEPS)
130-
curl -O https://raw.githubusercontent.com/filecoin-project/venus-docs/master/script/docker/dockerfile
128+
ifdef DOCKERFILE
129+
cp $(DOCKERFILE) ./dockerfile
130+
else
131+
curl -o dockerfile https://raw.githubusercontent.com/filecoin-project/venus-docs/master/script/docker/dockerfile
132+
endif
133+
131134
docker build --build-arg https_proxy=$(BUILD_DOCKER_PROXY) --build-arg BUILD_TARGET=venus -t venus .
135+
docker tag venus:latest filvenus/venus:$(TAG)
136+
137+
ifdef PRIVATE_REGISTRY
132138
docker tag venus:latest $(PRIVATE_REGISTRY)/filvenus/venus:$(TAG)
139+
endif
140+
133141

134142
docker-push: docker
135143
docker push $(PRIVATE_REGISTRY)/filvenus/venus:$(TAG)

0 commit comments

Comments
 (0)