[go: up one dir, main page]

Skip to content

Releases: canonical/dqlite

dqlite v1.18.0

23 Oct 03:27
6339f32
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.16.7...v1.18.0

dqlite v1.17.1 LTS

23 Oct 18:10
ee1766c
Compare
Choose a tag to compare

This is a release in the v1.17.x LTS series. It exists only for technical reasons and there are no functional differences from v1.17.0.

dqlite v1.17.0 LTS

22 Oct 18:09
a89a6a5
Compare
Choose a tag to compare

This is the first release of the dqlite v1.17.x LTS release series. This release series will incorporate fixes for security issues and possibly other major bugs at the maintainers' discretion. It will not see any new features or breaking changes. You can track this LTS release series by following the lts-1.17.x branch; ongoing development will continue on master.

Compared to the last non-LTS release (dqlite v1.16.7), this release contains:

Full Changelog: v1.16.7...v1.17.0

dqlite v1.17.0 LTS (first release candidate)

18 Oct 05:47
f48c244
Compare
Choose a tag to compare

This is a release candidate for dqlite v1.17.0, which will be the first release of the v1.17.x LTS series.

dqlite v1.16.7

29 Jul 12:48
Compare
Choose a tag to compare

This release contains three bug fixes:

See also the full list of commits.

Note that the v1.16.6 tag is flawed and should not be treated as a release, since (due to human error) it points to a commit for which the version numbers in configure.ac and dqlite.h still read 1.16.5. This release is functionally identical to the v1.16.6 tag and should be used instead.

dqlite v1.16.6

26 Jul 15:06
39ffc97
Compare
Choose a tag to compare

This release contains three bug fixes:

See also the full list of commits.

dqlite v1.16.5

25 Jun 16:42
Compare
Choose a tag to compare

Significant changes in this release:

  • dqlite now uses file locking to ensure that two nodes don't run concurrently using the same data directory (#656).
  • The minimum required version of libuv has been increased to 1.34 (#617).

This release also includes smaller bug fixes, plus new code (not yet enabled) related to the future move to storing databases and WALs on disk.

dqlite v1.16.4

23 Feb 15:32
Compare
Choose a tag to compare

This release fixes some bugs in dqlite's build system that were introduced when developing the --enable-build-raft option:

  • Fix building without --enable-build-raft when liblz4 is not available: #603
  • Fix building with vendored sqlite3.c: #607

It also introduces code for a new thread pool that will be used in future versions of dqlite, but is not currently enabled:

dqlite v1.16.3

21 Feb 20:31
Compare
Choose a tag to compare

This release brings a new option for dqlite's configure script, --enable-build-raft. When this option is passed, dqlite will build and use a private Raft implementation instead of linking to an external libraft. --enable-build-raft is the preferred way to use dqlite going forward, but linking to an external libraft remains supported for now, and is the default if the new flag is not passed.

One other internal change is included in this release:

  • Fix many cases of arithmetic on void pointers (#569)

dqlite v1.16.2

15 Feb 15:17
Compare
Choose a tag to compare

This release brings a fix for using dqlite with SQLite versions greater than 3.45.0 (#564), plus:

  • A more readable logging format (#542).
  • An internal improvement to how dqlite reacts to Raft state changes (#545).
  • A new dqlite_node configuration option to control snapshot compression (#567, thanks to new contributor @cnnrznn).