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

chore: changelog v0.2.1 #252

Merged
merged 6 commits into from
Mar 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .chglog/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ options:
commit_groups:
title_maps:
feat: Features
fix: Bug fixes
fix: Fixes
tools: Tooling
docs: Documentation
perf: Performance
Expand Down
55 changes: 55 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,58 @@
<a name="v0.2.1"></a>
## [v0.2.1](https://github.com/sourcenetwork/defradb/compare/v0.2.0...v0.2.1)

> 2022-03-04

### Features

* Add ability to delete multiple documents using filter ([#206](https://github.com/sourcenetwork/defradb/issues/206))
* Add ability to delete multiple documents, using multiple ids ([#196](https://github.com/sourcenetwork/defradb/issues/196))

### Fixes

* Concurrency control of Document using RWMutex ([#213](https://github.com/sourcenetwork/defradb/issues/213))
* Only log errors and above when benchmarking ([#261](https://github.com/sourcenetwork/defradb/issues/261))
* Handle proper type conversion on sort nodes ([#228](https://github.com/sourcenetwork/defradb/issues/228))
* Return empty array if no values found ([#223](https://github.com/sourcenetwork/defradb/issues/223))
* Close fetcher on error ([#210](https://github.com/sourcenetwork/defradb/issues/210))
* Installing binary using defradb name ([#190](https://github.com/sourcenetwork/defradb/issues/190))

### Tooling

* Add short benchmark runner option ([#263](https://github.com/sourcenetwork/defradb/issues/263))

### Documentation

* Add data format changes documentation folder ([#89](https://github.com/sourcenetwork/defradb/issues/89))
* Correcting typos ([#143](https://github.com/sourcenetwork/defradb/issues/143))
* Update generated CLI docs ([#208](https://github.com/sourcenetwork/defradb/issues/208))
* Updated readme with P2P section ([#220](https://github.com/sourcenetwork/defradb/issues/220))
* Update old or missing license headers ([#205](https://github.com/sourcenetwork/defradb/issues/205))
* Update git-chglog config and template ([#195](https://github.com/sourcenetwork/defradb/issues/195))

### Refactoring

* Introduction of logging system ([#67](https://github.com/sourcenetwork/defradb/issues/67))
* Restructure db/txn/multistore structures ([#199](https://github.com/sourcenetwork/defradb/issues/199))
* Initialize database in constructor ([#211](https://github.com/sourcenetwork/defradb/issues/211))
* Purge all println and ban it ([#253](https://github.com/sourcenetwork/defradb/issues/253))

### Testing

* Detect and force breaking filesystem changes to be documented ([#89](https://github.com/sourcenetwork/defradb/issues/89))
* Boost collection test coverage ([#183](https://github.com/sourcenetwork/defradb/issues/183))

### Continuous integration

* Combine the Lint and Benchmark workflows so that the benchmark job depends on the lint job in one workflow ([#209](https://github.com/sourcenetwork/defradb/issues/209))
* Add rule to only run benchmark if other check are successful ([#194](https://github.com/sourcenetwork/defradb/issues/194))
* Increase linter timeout ([#230](https://github.com/sourcenetwork/defradb/issues/230))

### Chore

* Remove commented out code ([#238](https://github.com/sourcenetwork/defradb/issues/238))
* Remove dead code from multi node ([#186](https://github.com/sourcenetwork/defradb/issues/186))


<a name="v0.2.0"></a>
## [v0.2.0](https://github.com/sourcenetwork/defradb/compare/v0.1.0...v0.2.0)
Expand Down