diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,14 @@
 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.50.1
+### Fixed
+- Do not allow incoming POST requests of unlimited body size.
+
+## 0.50.0
+### Added
+- Limit number of simultaneous xpubs being cached.
+
 ## 0.49.0
 ### Changed
 - Improve conduit merging algorithm.
diff --git a/haskoin-store-data.cabal b/haskoin-store-data.cabal
--- a/haskoin-store-data.cabal
+++ b/haskoin-store-data.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 06763167c3dba87d18b701073a8f3a23b9c45c01d135a9a844f0f2e1f5a3a6cc
+-- hash: 13f8f0ba579a236b57f68a26931aa6432e0f8764138f16dba038e157f3c01c76
 
 name:           haskoin-store-data
-version:        0.49.0
+version:        0.50.1
 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
@@ -167,7 +167,6 @@
 import           Data.ByteString         (ByteString)
 import qualified Data.ByteString         as BS
 import qualified Data.ByteString.Builder as BSB
-import qualified Data.ByteString.Lazy    as BSL
 import           Data.Bytes.Get
 import qualified Data.Bytes.Get          as Bytes.Get
 import           Data.Bytes.Put
@@ -2977,8 +2976,8 @@
 instance Ord BinfoXPubPath where
     compare = compare `on` f
        where
-         f b = ( xPubParent (getBinfoXPubPathKey b),
-                 getBinfoXPubPathDeriv b
+         f b = ( xPubParent (getBinfoXPubPathKey b)
+               , getBinfoXPubPathDeriv b
                )
 
 binfoXPubPathToJSON :: Network -> BinfoXPubPath -> Value
diff --git a/src/Haskoin/Store/WebCommon.hs b/src/Haskoin/Store/WebCommon.hs
--- a/src/Haskoin/Store/WebCommon.hs
+++ b/src/Haskoin/Store/WebCommon.hs
@@ -556,8 +556,3 @@
     proxyLabel = const "txids"
     encodeParam _ ts = Just $ txHashToHex <$> ts
     parseParam _ = mapM hexToTxHash
-
-
----------------------------------------
--- Blockchain.info API Compatibility --
----------------------------------------
