Badger Versions Save

Fast key-value DB in Go.

v4.2.0

8 months ago

This release contains new and updated metrics for Badger, as well as several bug fixes.

Breaking

  • feat(metrics): fix and update metrics in badger (#1948)
  • fix(metrics): remove badger version in the metrics name (#1982)

Fixed

  • fix(db): avoid panic in parallel reads after closing DB (#1987)
  • fix(logging): fix direct access to logger (#1980)
  • fix(sec): bump google.golang.org/grpc from 1.20.1 to 1.53.0 (#1977)
  • fix(sec): update gopkg.in/yaml.v2 package (#1969)
  • fix(test): fix flakiness of TestPersistLFDiscardStats (#1963)
  • fix(stream): setup oracle correctly in stream writer (#1968) (#1904)
  • fix(stream): improve incremental stream writer (#1901)
  • fix(test): improve the params in BenchmarkDbGrowth (#1967)
  • fix(sync): sync active memtable and value log on Db.Sync (#1847) (#1953)
  • fix(test): handle draining of closed channel, speed up test. (#1957)
  • fix(test): fix table checksum test. Test on uncompressed. (#1952)
  • fix(level): change split key range right key to use ts=0 (#1932)
  • fix(test): the new test case PagebufferReader5 introduced an error. (#1936)
  • fix(test): add missing unlock in TestPersistLFDiscardStats (#1924)
  • fix(PageBufferReader): should conform to io.Reader interface (#1935)
  • fix(publisher): publish updates after persistence in WAL (#1917)

CI

  • chore(ci): split off coverage workflow (#1944)
  • chore(ci): adding trivy scanning workflow (#1925)

v4.1.0

1 year ago

This release adds support for incremental stream writer. We also do some cleanup in the docs and resolve some CI issues for community PR's. We resolve high and medium CVE's and fix #1833.

Features

  • feat(stream): add support for incremental stream writer (#1722) (#1874)

Fixes

  • chore: upgrade xxhash from v1.1.0 to v2.1.2 (#1910) (fixes #1833)

Security

  • chore(deps): bump golang.org/x/net from 0.0.0-20201021035429-f5854403a974 to 0.7.0 (#1885)

CVE's

Chores

  • fix(docs): update README (#1915)
  • cleanup sstable file after tests (#1912)
  • chore(ci): add dgraph regression tests (#1908)
  • docs: fix the default value in docs (#1909)
  • chore: update URL for unsupported manifest version error (#1905)
  • docs(README): add raft-badger to projects using badger (#1902)
  • sync the docs with README with projects using badger (#1903)
  • fix: update code comments for WithNumCompactors (#1900)
  • docs: add loggie to projects using badger (#1882)
  • chore(memtable): refactor code for memtable flush (#1866)
  • resolve coveralls issue for community PR's (#1892, #1894, #1896)

Full Changelog: https://github.com/dgraph-io/badger/compare/v4.0.1...v4.1.0

v4.0.1

1 year ago

This release fixes a bug in the maxHeaderSize parameter that could lead to panics. We introduce an external magic number to keep track of external dependencies. We bump up the minimum required Go version to 1.19. No changes were made to the format of data on disk. This is a major release because we are making a switch to SemVer in order to make it easier for the community to understand when breaking API and data format changes are made.

Warning The tag v4.0.0 has been retracted due to a bug in publisher. Use v4.0.1 (see #1889)

Fixed

  • fix(pb): fix generated protos #1888
  • fix(publisher): initialize the atomic variable #1889
  • fix: update maxHeaderSize #1877
  • feat(externalMagic): Introduce external magic number (#1745) #1852
  • fix(bench): bring in benchmark fixes from main #1863

Chores

  • upgrade go to 1.19 #1868
  • moving from CalVer to SemVer
  • chore(cd): tag based deployments #1887
  • chore(ci): fail fast when testing #1890
  • enable linters (gosimple, govet, lll, unused, staticcheck, errcheck, ineffassign, gofmt) #1871 #1870 #1876
  • remove dependency on io/ioutil #1879
  • various doc and comment fixes #1857

Full Changelog: https://github.com/dgraph-io/badger/compare/v3.2103.5...v4.0.1

v3.2103.5

1 year ago

We release Badger CLI tool binaries for amd64 and now arm64. This release does not involve any core code changes to Badger. We added a CD job for building Badger for arm64.

v3.2103.4

1 year ago

This patches an issue that could lead to manifest corruption. Fix was merged in #1756. Addresses this issue on Discuss and this issue on Badger. We also bring the release branch to parity with main by updating the CI/CD jobs, Readme, Codeowners, PR and issue templates, etc.

Fixed

  • fix(manifest): fix manifest corruption due to race condition in concurrent compactions (#1756)

Chores

  • Add CI/CD jobs to release branch
  • Add PR and Issue templates to release branch
  • Update Codeowners in release branch
  • Update Readme in release branch

Full Changelog: https://github.com/dgraph-io/badger/compare/v3.2103.3...v3.2103.4

v3.2103.3

1 year ago

This is a minor patch release that fixes arm64 related issues. The issues in the z package in Ristretto were resolved in Ristretto v0.1.1.

Fixed

  • fix(arm64): bump ristretto v0.1.0 --> v0.1.1 (#1806)

Full Changelog: https://github.com/dgraph-io/badger/compare/v3.2103.2...v3.2103.3

v3.2103.2

2 years ago

This patch release contains:

Fixed

  • fix(compact): close vlog after the compaction at L0 has been completed (#1752)
  • fix(builder): put the upper limit on reallocation (#1748)
  • deps: Bump github.com/google/flatbuffers to v1.12.1 (#1746)
  • fix(levels): Avoid a deadlock when acquiring read locks in levels (#1744)
  • fix(pubsub): avoid deadlock in publisher and subscriber (#1749) (#1751)

Full Changelog: https://github.com/dgraph-io/badger/compare/v3.2103.1...v3.2103.2

v2.2007.4

2 years ago

Fixed

  • Fix build on Plan 9 (#1451) (#1508) (#1738)

Features

  • feat(zstd): backport replacement of DataDog's zstd with Klauspost's zstd (#1736)

v2.2007.3

2 years ago

This patch release contains:

Fixed

  • fix(maxVersion): Use choosekey instead of KeyToList (#1532) #1533
  • fix(flatten): Add --num_versions flag (#1518) #1520
  • fix(build): Fix integer overflow on 32-bit architectures #1558
  • fix(pb): avoid protobuf warning due to common filename (#1519)

Features

  • Add command to stream contents of DB into another DB. (#1486)

New APIs

  • DB.StreamDB
  • DB.MaxVersion

v3.2103.1

2 years ago

This release removes CGO dependency opf badger by using Klauspost's ZSTD instead of Datadog's ZSTD. Also, this has some of the fixes.

Fixed

  • fix(compaction): copy over the file ID when building tables #1713
  • fix: Fix conflict detection for managed DB (#1716)
  • fix(pendingWrites): don't skip the pending entries with version=0 (#1721)

Features

  • feat(zstd): replace datadog's zstd with Klauspost's zstd (#1709)