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

Clean up transaction oracle as we go, take two #1275

Merged
merged 53 commits into from
May 18, 2020
Merged
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
60304f7
update CHANGELOG.md
campoy Jun 20, 2019
2e8b26d
Removed ristretto from CHANGELOG
campoy Jun 21, 2019
01ae3ae
Removed Loader from CHANGELOG
campoy Jun 21, 2019
8454221
updated CHANGELOG to include new Options API
campoy Jun 24, 2019
a05b111
Revert "Add options to transform backup data back and forth to a diff…
martinmr Jun 27, 2019
c31c92b
Merge tag 'v2.0.1-rc1' into release/v2.0
danielmai Jan 2, 2020
bd8da72
Update CHANGELOG for v2.0.1 release. (#1181)
lgalatin Jan 2, 2020
8fd5740
Add missing commits to release/v2.0 branch (#1245)
Mar 6, 2020
07f2496
Revert "Add missing commits to release/v2.0 branch (#1245)"
Mar 24, 2020
ddc1a8c
Cast sz to uint32 to fix compilation on 32 bit (#1175)
paralin Dec 28, 2019
f4d9d4a
Fix commit sha for WithInMemory in CHANGELOG. (#1172)
lgalatin Jan 2, 2020
ab09a2d
Fix windows build (#1177)
Jan 7, 2020
0234798
Fix checkOverlap in compaction (#1166)
Jan 8, 2020
ad317f1
Remove the 'this entry should've caught' log from value.go (#1170)
Jan 8, 2020
2cf1fca
Avoid sync in inmemory mode (#1190)
Jan 14, 2020
0ea2ca8
Use fastRand instead of locked-rand in skiplist (#1173)
Jan 14, 2020
bfe0cd6
Add Jaegar to list of projects (#1192)
Jan 14, 2020
c1d6ffa
Run all tests on CI (#1189)
Jan 15, 2020
19a1af4
Improve write stalling on level 0 and 1
Jan 15, 2020
119a431
Update ristretto to version 8f368f2 (#1195)
Jan 16, 2020
7d160ff
Support disabling the cache completely. (#1183) (#1185)
damz Jan 16, 2020
06513c4
Fix L0/L1 stall test (#1201)
Jan 20, 2020
2ce0c4d
Disable compression and set ZSTD Compression Level to 1 (#1191)
Jan 20, 2020
3677be6
Add support for caching bloomfilters (#1204)
Jan 27, 2020
61d3466
Rework concurrency semantics of valueLog.maxFid (#1184) (#1187)
damz Jan 27, 2020
8e536d2
Change else-if statements to idiomatic switch statements. (#1207)
martinmr Jan 31, 2020
22e2555
Fix flaky TestPageBufferReader2 test (#1210)
Feb 5, 2020
da91676
Replace t.Fatal with require.NoError in tests (#1213)
Feb 10, 2020
8ac172e
Add missing package to README for badger.NewEntry (#1223)
Dieterbe Feb 24, 2020
d91e7f8
Remove ExampleDB_Subscribe Test (#1214)
Feb 24, 2020
02f6feb
Fix int overflow for 32bit (#1216)
vardhanapoorv Feb 24, 2020
1235dfb
Update CHANGELOG for Badger 2.0.2 release. (#1230)
lgalatin Feb 26, 2020
c6f4e1a
Initialize vlog before starting compactions in db.Open (#1226)
Feb 27, 2020
4500ae1
Fix ValueThreshold for in-memory mode (#1235)
Mar 3, 2020
83fd5c3
Remove coveralls from Travis Build(#1219)
janisz Mar 4, 2020
d8bd219
Add Dkron to README (#1241)
Mar 4, 2020
437b7f9
fix changelog for v2.0.2 (#1244)
Mar 6, 2020
89e1fa7
Compress/Encrypt Blocks in the background (#1227)
Mar 12, 2020
75c464b
Add support for watching nil prefix in subscribe API (#1246)
Mar 13, 2020
fbddfd2
Add BypassDirLock option (#1243)
Mar 13, 2020
77308f2
Add separate cache for bloomfilters (#1260)
Mar 16, 2020
942fb39
Disable cache by default (#1257)
Mar 16, 2020
b551699
Update changelog for v2.0.3
Mar 24, 2020
ec0ff30
Clean up transaction oracle as we go
damz Jan 14, 2020
7f2b2ea
Resolve all comments from #1198
muXxer Mar 24, 2020
aeaec93
Do not process committedTxns in managed mode
Apr 20, 2020
042a8da
Revert "Update changelog for v2.0.3"
May 13, 2020
a9702d1
Merge master
May 13, 2020
8cc268a
minor fixes
May 13, 2020
6cf249b
Merge branch 'oracle-cleanup' of https://github.com/muXxer/badger int…
May 13, 2020
7cc2b85
fix conflict
May 13, 2020
0857129
Merge branch 'master' into pr-1275
May 13, 2020
d6985bd
Address review comments
May 18, 2020
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
Prev Previous commit
Next Next commit
Update CHANGELOG for v2.0.1 release. (#1181)
(cherry picked from commit 23a73cd)
lgalatin authored and danielmai committed Jan 2, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit bd8da724f5d24a1b01766aa2265f7ae51e1fe493
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Serialization Versioning](VERSIONING.md).

## [Unreleased]
## [2.0.1] - 2020-01-02

### New APIs

@@ -274,7 +274,8 @@ Bug fix:
## [1.0.1] - 2017-11-06
* Fix an uint16 overflow when resizing key slice

[Unreleased]: https://github.com/dgraph-io/badger/compare/v2.0.0...HEAD
[Unreleased]: https://github.com/dgraph-io/badger/compare/v2.0.1...HEAD
[2.0.1]: https://github.com/dgraph-io/badger/compare/v2.0.0...v2.0.1
[2.0.0]: https://github.com/dgraph-io/badger/compare/v1.6.0...v2.0.0
[1.6.0]: https://github.com/dgraph-io/badger/compare/v1.5.5...v1.6.0
[1.5.5]: https://github.com/dgraph-io/badger/compare/v1.5.3...v1.5.5