File tree Expand file tree Collapse file tree 2 files changed +29
-3
lines changed Expand file tree Collapse file tree 2 files changed +29
-3
lines changed Original file line number Diff line number Diff line change 1
1
# venus changelog
2
2
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
+
3
21
## v1.10.1
4
22
5
23
* 修复 evm 命令部署合约失败 [[ #5785 ] ( https://github.com/filecoin-project/venus/pull/5785 )]
Original file line number Diff line number Diff line change @@ -123,13 +123,21 @@ build: $(BUILD_DEPS)
123
123
124
124
125
125
.PHONY : docker
126
-
127
-
128
126
TAG: =test
129
127
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
+
131
134
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
132
138
docker tag venus:latest $(PRIVATE_REGISTRY)/filvenus/venus:$(TAG)
139
+ endif
140
+
133
141
134
142
docker-push : docker
135
143
docker push $(PRIVATE_REGISTRY ) /filvenus/venus:$(TAG )
You can’t perform that action at this time.
0 commit comments