Releases: canonical/dqlite
dqlite v1.18.2
What's Changed
- Dynamic trailing computation by @marco6 in #714
- fix: Prevent dqlite_server_stop() called multiple times by @just-now in #738
- chore: update CLA check job by @marco6 in #741
- chore: rename float_t to real_t by @marco6 in #746
- chore: drop support for 20.04 by @marco6 in #745
- fix: reduce trace stack usage by @marco6 in #743
- fix: free shallow snapshot headers correctly by @marco6 in #744
- fix: database truncation by @marco6 in #748
- feat: add timers support in raft_io by @marco6 in #750
- feat: use SQLITE_STATIC binding by @marco6 in #753
- chore: improve gateway readability by @marco6 in #752
- test: add stress test by @marco6 in #754
- ci: remove clang-tidy by @letFunny in #755
- refactor: new exec state machine by @marco6 in #740
- fix: dump database without open by @marco6 in #756
- feat: allow vacuum on main by @marco6 in #734
- perf: merge raft barrier requests by @marco6 in #742
- fix: errorcode return by @marco6 in #757
- fix: use-after-free for prepared statement by @marco6 in #762
- fix: unresponsive connection after leadership lost by @marco6 in #758
- fix: silly cast for vfs time by @marco6 in #759
- fix: missing barrier events by @marco6 in #761
- feat: keep connection open on leadership loss by @marco6 in #763
- fix: use clang for musl builds by @marco6 in #764
- refactor: separate VFS journal behavior by @marco6 in #760
- chore: remove useless stdbool.h by @marco6 in #765
- refactor: group semantically vfs methods by @marco6 in #769
- refactor: remove deprecated vfs interface by @marco6 in #751
- refactor: remove useless undef by @marco6 in #775
- fix: read main file when out of range by @marco6 in #772
- refactor: separate
{Wal,Main,DiskMain}File
s behaviour by @marco6 in #770 - test: improve stress test reader by @marco6 in #776
- chore: remove vfs2 by @marco6 in #779
- feat: implement randomness initialization on Linux by @marco6 in #777
- feat: improve db__open initialization by @marco6 in #778
- test: fix wait times for gateway tests by @marco6 in #780
- fix: enable foreign key support by default by @marco6 in #782
- fix: retry fallocate if EINTR is returned by @marco6 in #787
- refactor: improve
Vfs{Poll,Abort,Apply}
interface by @marco6 in #783 - chore: fix pipeline by @marco6 in #785
- test: improve error message for stress test by @marco6 in #791
- refactor: use an in-memory file to serve shared memory by @marco6 in #790
- chore: bump header version by @marco6 in #792
- chore: enable testing arm64 builds by @marco6 in #793
Full Changelog: v1.18.1...v1.18.2
dqlite v1.17.2 LTS
dqlite v1.18.0
What's Changed
- Add an API for querying the last raft log entry by @cole-miller in #683
- Fix the build when liblz4 is missing and test it by @cole-miller in #693
- github: Test with musl by @cole-miller in #682
- Propagate raft_recover errors and improve tracing by @petrutlucian94 in #702
- Remove option to link separately-built libraft by @cole-miller in #690
- Remove dqlite-next build configuration by @cole-miller in #704
- Start instrumenting existing code with state machines by @cole-miller in #678
- Snapshot checkpointing by @marco6 in #710
- Refactor leader.c to fix stack growth in handle_exec_sql by @cole-miller in #697
- Fix frames leak when VfsPoll fails by @cole-miller in #713
Full Changelog: v1.16.7...v1.18.0
dqlite v1.17.1 LTS
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
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:
- Add an API for querying the last raft log entry by @cole-miller in #683
- Fix the build when liblz4 is missing and test it by @cole-miller in #693
- github: Test with musl by @cole-miller in #682
- Propagate raft_recover errors and improve tracing by @petrutlucian94 in #702
- Remove option to link separately-built libraft by @cole-miller in #690
- Remove dqlite-next build configuration by @cole-miller in #704
- Start instrumenting existing code with state machines by @cole-miller in #678
- Snapshot checkpointing by @marco6 in #710
- Refactor leader.c to fix stack growth in handle_exec_sql by @cole-miller in #697
- Fix frames leak when VfsPoll fails by @cole-miller in #713
Full Changelog: v1.16.7...v1.17.0
dqlite v1.17.0 LTS (first release candidate)
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
This release contains three bug fixes:
- Fix a possible UAF by @zouyonghao in #669
- bugfix: reading segment, correctly stop on error by @letFunny in #672
- Cleanup prepared statement during node close by @marco6 in #675
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
This release contains three bug fixes:
- Fix a possible UAF by @zouyonghao in #669
- bugfix: reading segment, correctly stop on error by @letFunny in #672
- Cleanup prepared statement during node close by @marco6 in #675
See also the full list of commits.
dqlite v1.16.5
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
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: