Skip to content

Commit 364479f

Browse files
authored
Merge pull request #414 from ipfs-force-community/chore/bump-v2.9.0-rc1
chore: bump version to v2.9.0-rc1
2 parents 10ca887 + d2fe0ae commit 364479f

File tree

5 files changed

+36
-4
lines changed

5 files changed

+36
-4
lines changed

CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
# droplet changelog
22

3+
## v2.9.0-rc1
4+
5+
* Update README.md [[#341](https://github.com/ipfs-force-community/droplet/pull/341)]
6+
* doc: fix link [[#349](https://github.com/ipfs-force-community/droplet/pull/349)]
7+
* chore: Remove dependency on io/ioutil package [[#355](https://github.com/ipfs-force-community/droplet/pull/355)]
8+
* feat: persist shard to mysql [[#354](https://github.com/ipfs-force-community/droplet/pull/354)]
9+
* feat: tools: generate car index and import index to mongo [[#356](https://github.com/ipfs-force-community/droplet/pull/356)]
10+
* fix: close reader [[#363](https://github.com/ipfs-force-community/droplet/pull/363)]
11+
* add issue template [[#361](https://github.com/ipfs-force-community/droplet/pull/361)]
12+
* fix: import deals slow [[#371](https://github.com/ipfs-force-community/droplet/pull/371)]
13+
* feat: add pprof [[#369](https://github.com/ipfs-force-community/droplet/pull/369)]
14+
* Chore/merge v2.8 [[#372](https://github.com/ipfs-force-community/droplet/pull/372)]
15+
* fix: memory leak [[#375](https://github.com/ipfs-force-community/droplet/pull/375)]
16+
* fix: import boost deal [[#376](https://github.com/ipfs-force-community/droplet/pull/376)]
17+
* doc:修正导入离线订单命令为./droplet storage deal import-data [[#380](https://github.com/ipfs-force-community/droplet/pull/380)]
18+
* Create 模拟官方机器人HTTP方式检索 [[#385](https://github.com/ipfs-force-community/droplet/pull/385)]
19+
* Fix/gen index tool [[#386](https://github.com/ipfs-force-community/droplet/pull/386)]
20+
* chore: output average write to log [[#390](https://github.com/ipfs-force-community/droplet/pull/390)]
21+
* update deploy docs / 更新部署文档 [[#392](https://github.com/ipfs-force-community/droplet/pull/392)]
22+
* fix: not set retrieval deal status [[#391](https://github.com/ipfs-force-community/droplet/pull/391)]
23+
* feat: add IAuthClient stub [[#399](https://github.com/ipfs-force-community/droplet/pull/399)]
24+
* feat: support filter deals by SectorExpiration [[#404](https://github.com/ipfs-force-community/droplet/pull/404)]
25+
* fix: handle slashed deal [[#402](https://github.com/ipfs-force-community/droplet/pull/402)]
26+
* fix: Use the unified piecestorage object [[#409](https://github.com/ipfs-force-community/droplet/pull/409)]
27+
* fix: parse address failed [[#411](https://github.com/ipfs-force-community/droplet/pull/411)]
28+
* chore: update venus & go-data-transfer [[#397](https://github.com/ipfs-force-community/droplet/pull/397)]
29+
* feat: Automatically delete temporary car files [[#413](https://github.com/ipfs-force-community/droplet/pull/413)]
30+
331
## v2.8.0
432

533
* fix: repo compatibility for cli [[#348](https://github.com/ipfs-force-community/droplet/pull/348)]

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -65,20 +65,24 @@ build: $(BUILD_DEPS)
6565
droplet: $(BUILD_DEPS)
6666
rm -f droplet
6767
go build -o ./droplet $(GOFLAGS) ./cmd/droplet
68+
.PHONY: droplet
6869

6970
droplet-client: $(BUILD_DEPS)
7071
rm -f droplet-client
7172
go build -o ./droplet-client $(GOFLAGS) ./cmd/droplet-client
73+
.PHONY: droplet-client
7274

7375
index: $(BUILD_DEPS)
7476
rm -f index-tool
7577
go build -o ./index-tool $(GOFLAGS) ./tools/index
78+
.PHONY: index
7679

7780
debug: $(BUILD_DEPS)
7881
rm -f droplet-client
7982
rm -f droplet
8083
go build -o ./droplet-client $(GOFLAGS) -gcflags="all=-N -l" ./cmd/droplet-client
8184
go build -o ./droplet $(GOFLAGS) -gcflags="all=-N -l" ./cmd/droplet
85+
.PHONY: debug
8286

8387
# docker
8488
.PHONY: docker

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ require (
4040
github.com/ipfs-force-community/metrics v1.0.1-0.20230626064437-eed34cb166f5
4141
github.com/ipfs-force-community/sophon-auth v1.13.0-rc1
4242
github.com/ipfs-force-community/sophon-gateway v1.13.0-rc1
43-
github.com/ipfs-force-community/sophon-messager v1.12.1-0.20230719025513-b11768735c5f
43+
github.com/ipfs-force-community/sophon-messager v1.13.0-rc1
4444
github.com/ipfs-force-community/venus-common-utils v0.0.0-20220217030526-e5e4c6bc14f7
4545
github.com/ipfs/boxo v0.10.0
4646
github.com/ipfs/go-blockservice v0.5.0

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1233,8 +1233,8 @@ github.com/ipfs-force-community/sophon-auth v1.13.0-rc1 h1:d4N2I7QDlK0WNgvaMb3Z+
12331233
github.com/ipfs-force-community/sophon-auth v1.13.0-rc1/go.mod h1:+S04oHCcJS6hylIv1kb74mA/m7qe41m6Py1hTFLM6rE=
12341234
github.com/ipfs-force-community/sophon-gateway v1.13.0-rc1 h1:5BYVfOfbYSpRJ2bency5OObFYaIj+BMYd2oN4haP5sY=
12351235
github.com/ipfs-force-community/sophon-gateway v1.13.0-rc1/go.mod h1:pYhNxq7lr3UNiNFPIVOJpGMVYzXNnkKQkZAOg/wK1ag=
1236-
github.com/ipfs-force-community/sophon-messager v1.12.1-0.20230719025513-b11768735c5f h1:3O0hFYvP8Cx7X1rdOh24vAc9lUzYIRtpV1m5Ufr1+NM=
1237-
github.com/ipfs-force-community/sophon-messager v1.12.1-0.20230719025513-b11768735c5f/go.mod h1:Vo9VnDwYJmVFaWrHtFPCiZNxFWqWQFgucQcmA3hA+VU=
1236+
github.com/ipfs-force-community/sophon-messager v1.13.0-rc1 h1:GZ/hMwDBILXeS1SmaNweA3haCTjdnDltq2Ck2z/tle8=
1237+
github.com/ipfs-force-community/sophon-messager v1.13.0-rc1/go.mod h1:ODYPt8b4AZ1ZUp4SnmGJIUbgGvTIu5JLwbRdu/oVSIk=
12381238
github.com/ipfs-force-community/venus-common-utils v0.0.0-20220217030526-e5e4c6bc14f7 h1:v/1/INcqm3kHLauWQYB63MwWJRWGz+3WEuUPp0jzIl8=
12391239
github.com/ipfs-force-community/venus-common-utils v0.0.0-20220217030526-e5e4c6bc14f7/go.mod h1:sSTUXgIu95tPHvgcYhdLuELmgPJWCP/pNMFtsrVtOyA=
12401240
github.com/ipfs/bbloom v0.0.1/go.mod h1:oqo8CVWsJFMOZqTglBG4wydCE4IQA/G2/SEofB0rjUI=

version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package version
33
var (
44
CurrentCommit string
55

6-
Version = "v2.8.0"
6+
Version = "v2.9.0-rc1"
77
)
88

99
func UserVersion() string {

0 commit comments

Comments
 (0)