haskoin-store-data 0.49.0 → 0.50.1
raw patch · 4 files changed
+12/−10 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +8/−0
- haskoin-store-data.cabal +2/−2
- src/Haskoin/Store/Data.hs +2/−3
- src/Haskoin/Store/WebCommon.hs +0/−5
CHANGELOG.md view
@@ -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.
haskoin-store-data.cabal view
@@ -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
src/Haskoin/Store/Data.hs view
@@ -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
src/Haskoin/Store/WebCommon.hs view
@@ -556,8 +556,3 @@ proxyLabel = const "txids" encodeParam _ ts = Just $ txHashToHex <$> ts parseParam _ = mapM hexToTxHash--------------------------------------------- Blockchain.info API Compatibility ------------------------------------------