Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release -> master #6828

Merged
merged 27 commits into from
Jul 22, 2021
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
38b476c
set version to v1.10.1-dev
magik6k Jul 2, 2021
bb2b134
commit batch: Initialize the FailedSectors map
magik6k Jul 1, 2021
1a86963
fix: miner balance is not enough, so that ProveCommitAggregate msg ex…
firesWu Jun 29, 2021
0421669
ensure agg fee is adequate
firesWu Jun 29, 2021
76fff49
remove precommit check in handleCommitFailed
GFZRZK Jun 28, 2021
ab2503f
gofmt
magik6k Jun 30, 2021
c21e275
handleSubmitCommitAggregate() exception handling
Jun 25, 2021
6d555c9
commit batch: AggregateAboveBaseFee config
magik6k Jul 1, 2021
3370450
commit batch: Regression test nil FailedSectors map
magik6k Jul 1, 2021
504882e
fix ticket expiration check, otherwise it may cause a large number of…
llifezou Jun 30, 2021
5aeacd2
fix getTicket: sector precommitted but expired case
llifezou Jul 1, 2021
4c3bcd1
Update extern/storage-sealing/states_sealing.go
llifezou Jul 2, 2021
db30d89
Update extern/storage-sealing/states_sealing.go
llifezou Jul 2, 2021
4fe3ecb
to optimize the batchwait
Jun 30, 2021
c5ea17f
Fix: precommit_batch method used the wrong cfg.PreCommitBatchWait
sunday527 Jul 2, 2021
ebbfe03
Fix tiny error in check-client-datacap
ribasushi Jul 2, 2021
0511770
storage: Fix FinalizeSector with sectors in stoage paths
magik6k Jul 1, 2021
29763df
set version to v1.10.1-rc1
magik6k Jul 2, 2021
9457444
Add v1.10.1-rc1 changelog
jennijuju Jul 2, 2021
a06ecde
recommend to update
jennijuju Jul 2, 2021
0b5d155
format fix and small clarification
jennijuju Jul 2, 2021
7531e54
bump the version to v1.10.1
jennijuju Jul 5, 2021
067b45d
Update CHANGELOG.md
jennijuju Jul 5, 2021
8bf06ba
Update CHANGELOG.md
jennijuju Jul 5, 2021
f972021
Update CHANGELOG.md
jennijuju Jul 5, 2021
4b6258f
Update CHANGELOG.md
jennijuju Jul 5, 2021
dfa57ff
Merge branch 'master' into misc/merge-release
jennijuju Jul 22, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# Lotus changelog

# 1.10.1 / 2021-07-05

This is an optional but **highly recommended** release of Lotus for lotus miners that has many bug fixes and improvements based on the feedback we got from the community since HyperDrive.

## New Features
- commit batch: AggregateAboveBaseFee config #6650
- `AggregateAboveBaseFee` is added to miner sealing configuration for setting the network base fee to start aggregating proofs. When the network base fee is lower than this value, the prove commits will be submitted individually via `ProveCommitSector`. According to the [Batch Incentive Alignment](https://github.com/filecoin-project/FIPs/blob/master/FIPS/fip-0013.md#batch-incentive-alignment) introduced in FIP-0013, we recommend miners to set this value to 0.15 nanoFIL(which is the default value) to avoid unexpected aggregation fee in burn and enjoy the most benefits of aggregation!

## Bug Fixes
- storage: Fix FinalizeSector with sectors in storage paths #6652
- Fix tiny error in check-client-datacap #6664
- Fix: precommit_batch method used the wrong cfg.PreCommitBatchWait #6658
- to optimize the batchwait #6636
- fix getTicket: sector precommitted but expired case #6635
- handleSubmitCommitAggregate() exception handling #6595
- remove precommit check in handleCommitFailed #6634
- ensure agg fee is adequate
- fix: miner balance is not enough, so that ProveCommitAggregate msg exec failed #6623
- commit batch: Initialize the FailedSectors map #6647

Contributors

| Contributor | Commits | Lines ± | Files Changed |
|-------------|---------|---------|---------------|
| @magik6k| 7 | +151/-56 | 21 |
| @llifezou | 4 | +59/-20 | 4 |
| @johnli-helloworld | 2 | +45/-14 | 4 |
| @wangchao | 1 | +1/-27 | 1 |
| Jerry | 2 | +9/-4 | 2 |
| @zhoutian527 | 1 | +2/-2 | 1 |
| @ribasushi| 1 | +1/-1 | 1 |


# 1.10.0 / 2021-06-23

This is a mandatory release of Lotus that introduces Filecoin network v13, codenamed the HyperDrive upgrade. The
Expand Down