You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+34Lines changed: 34 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,40 @@ The format is a variant of [Keep a Changelog](https://keepachangelog.com/en/1.0.
5
5
6
6
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). Breaking changes should trigger an increment to the major version. Features increment the minor version and fixes or other changes increment the patch number.
7
7
8
+
<aname="v0.10.0"></a>
9
+
## [v0.10.0] - 2022-05-23
10
+
11
+
### Feat
12
+
13
+
- Distributed Worker Pattern (#929)
14
+
- Implementation of pattern described in [Distributed Lily Worker Pattern Doc](https://www.notion.so/pl-strflt/Distributed-Lily-Worker-Pattern-bbf101e392144e4184fae1ef7074ee02)
15
+
- Modifies Lily to distribute tipset indexing across a pool of lily nodes using a redis queue. Lily may now run as a tipset-worker or a notifier
16
+
- Notifier
17
+
- Lily will add tipsets for indexing to a redis queue, walk, watch, fill, and index jobs may be used to notify the queue of tipsets to index.
18
+
- Tipset-Worker
19
+
- Lily will consume tipsets from a redis queue and index their state.
20
+
- Improved Job CLI (#944)
21
+
- All jobs: `watch`, `walk`, `index`, `find`, `fill`, and `survey` are now under the `job run` command.
22
+
- Improved documentation describing how to run each type of job and the work it performs.
23
+
- Extend `watch`, `walk`, `index` and `fill` jobs with a sub-command `notify` which causes the corresponding job to notify configured redis queue of work to process.
24
+
- Parallel HAMT Diffing (#952)
25
+
- Allows HAMTs to be diffed in parallel with a configurable number of goroutines, improving indexing performance.
26
+
- Parallel AMT Diffing (#953)
27
+
- Allows AMTs to be diffed in parallel with a configurable number of goroutines, improving indexing performance.
28
+
29
+
### Fix
30
+
- Include parsed_message task in alias (#951)
31
+
- includes the `parsed_message` task in the `messages` task alias.
32
+
- Update urfave/cli to the latest version (#965)
33
+
- fixes #964 ensuring task names are properly parsed on the CLI.
34
+
- Remove null characters from market_deal_proposal label field (#957)
35
+
- fixes #930 by preventing invalid data from being written to CSV files for the market_deal_proposal model
0 commit comments