diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,34 @@
 The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
 and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
 
+## 0.65.11
+### Fixed
+- Backport fixes from version 1.5.0.
+
+## 0.65.10
+### Changed
+- Revert to older LTS Haskell to attempt to resolve memory leak.
+
+### Removed
+- Remove unnecessary lock release.
+
+## 0.65.9
+### Changed
+- Be more aggressive caching individual transactions.
+- Introduce a periodic cache mempool sync task.
+
+## 0.65.8
+### Changed
+- Perform health check in separate thread.
+
+## 0.65.7
+### Changed
+- Do not sync mempool to Redis if node is not up-to-date.
+
+## 0.65.6
+### Changed
+- Improve caching ingestion performance.
+
 ## 0.65.5
 ### Added
 - Fee field added to Blockchain.info-style export-history endpoint.
diff --git a/haskoin-store-data.cabal b/haskoin-store-data.cabal
--- a/haskoin-store-data.cabal
+++ b/haskoin-store-data.cabal
@@ -1,13 +1,13 @@
 cabal-version: 1.12
 
--- This file has been generated from package.yaml by hpack version 0.34.4.
+-- This file has been generated from package.yaml by hpack version 0.36.0.
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 4d0d11cec087e9b2fb4e83ec304affb161540dcb95249d85f6580b161d85abf7
+-- hash: 19c4af0dd8e49ef78c83229c78e4762a8bbc2246023fc8d1e61306b5d1a87fa7
 
 name:           haskoin-store-data
-version:        0.65.5
+version:        0.65.11
 synopsis:       Data for Haskoin Store
 description:    Please see the README on GitHub at <https://github.com/haskoin/haskoin-store#readme>
 category:       Bitcoin, Finance, Network
diff --git a/src/Haskoin/Store/Data.hs b/src/Haskoin/Store/Data.hs
--- a/src/Haskoin/Store/Data.hs
+++ b/src/Haskoin/Store/Data.hs
@@ -553,15 +553,7 @@
     unspentScript :: !ByteString,
     unspentAddress :: !(Maybe Address)
   }
-  deriving (Show, Eq, Generic, Hashable, NFData)
-
--- | Follow same order as in database and cache by inverting outpoint sort
--- order.
-instance Ord Unspent where
-  compare a b =
-    compare
-      (unspentBlock a, unspentPoint b)
-      (unspentBlock b, unspentPoint a)
+  deriving (Show, Eq, Ord, Generic, Hashable, NFData)
 
 instance Serial Unspent where
   serialize Unspent {..} = do
