From f015f18fa3c45c37676a68721052766bf8c3a47b Mon Sep 17 00:00:00 2001 From: John Murret Date: Fri, 17 Mar 2023 12:18:17 -0600 Subject: [PATCH] Adding changelog for 1.4.0 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49476897c..b190ba867 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # UNRELEASED +# 1.4.0 (March 17th, 2023) + +FEATURES +* Support log stores with a montonically increasing index. Implementing a log store with the `MonotonicLogStore` interface where `IsMonotonic()` returns true will allow Raft to clear all previous logs on user restores of Raft snapshots. + +BUG FIXES +* Restoring a snapshot with the raft-wal log store caused a panic due to index gap that is created during snapshot restores. + # 1.3.0 (April 22nd, 2021) IMPROVEMENTS