From d9eba2f8f3f999ecb0cf1a4c51698beaf3c9f7ac Mon Sep 17 00:00:00 2001 From: Philip O'Toole Date: Wed, 4 Aug 2021 23:38:40 -0400 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ed45fdd..c7aaf74d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ -## 6.0.3 (unreleased) +## 6.1.0 (unreleased) +This release makes significant changes to SQLite database connection handling, resulting in proper support for high-performance concurrent reads queries of in-memory databases (the default choice for rqlite). + +### New features +- [PR 842](https://github.com/rqlite/rqlite/pull/842): Use `vfs=memdb` allowing concurrent read queries of in-memory databases. + +### Implementation changes and bug fixes - [PR #841](https://github.com/rqlite/rqlite/pull/841): Remove support for specifying SQLite DSN. +- [PR 842](https://github.com/rqlite/rqlite/pull/842): Use read-only database connection for read queries, ensuring write SQL commands are not executed on the wrong endpoint. ## 6.0.2 (July 31st 2021) This release addresses a significant issue related to SQLite connection handling and multithreading. All users should upgrade to this version.