engine-io 1.2.22 → 1.2.23
raw patch · 2 files changed
+16/−6 lines, 2 filesdep ~aesondep ~basedep ~base64-bytestringPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: aeson, base, base64-bytestring, bytestring, mwc-random
API changes (from Hackage documentation)
- Network.EngineIO: Payload :: (Vector Packet) -> Payload
+ Network.EngineIO: Payload :: Vector Packet -> Payload
- Network.EngineIO: ServerAPI :: m (HashMap ByteString [ByteString]) -> Int -> ByteString -> Builder -> forall a. m a -> forall a. Parser a -> m (Either String a) -> m ByteString -> ServerApp -> m () -> ServerAPI m
+ Network.EngineIO: ServerAPI :: m (HashMap ByteString [ByteString]) -> (Int -> ByteString -> Builder -> forall a. m a) -> (forall a. Parser a -> m (Either String a)) -> m ByteString -> (ServerApp -> m ()) -> ServerAPI m
Files
- Changelog.md +10/−0
- engine-io.cabal +6/−6
Changelog.md view
@@ -1,3 +1,13 @@+## 1.2.23 -- 2020-12-14++### Other Changes++* Increased the upper-bound of `aeson` to < 1.6.+* Increased the upper-bound of `base64-bytestring` to < 1.3.+* Increased the upper-bound of `base` to < 4.15.+* Increased the upper-bound of `bytestring` to < 0.12.+* Increased the upper-bound of `mwc-random` to < 0.16.+ ## 1.2.22 -- 2018-09-30 ### Other Changes
engine-io.cabal view
@@ -1,5 +1,5 @@ name: engine-io-version: 1.2.22+version: 1.2.23 synopsis: A Haskell implementation of Engine.IO homepage: http://github.com/ocharles/engine.io license: BSD3@@ -27,16 +27,16 @@ RankNTypes, OverloadedStrings, RecordWildCards build-depends:- aeson >=0.7 && <1.5,+ aeson >=0.7 && <1.6, async >=2.0 && <2.3, attoparsec >=0.11 && <0.14,- base >=4.6 && <4.13,- base64-bytestring >=1.0 && <1.1,- bytestring >=0.10.2.0 && <0.11,+ base >=4.8 && <4.15,+ base64-bytestring >=1.0 && <1.3,+ bytestring >=0.10.2.0 && <0.12, errors >= 2.0.0 && <2.4, free >= 4.9 && <5.2, monad-loops >=0.4 && <0.5,- mwc-random >=0.13 && <0.15,+ mwc-random >=0.13 && <0.16, stm >=2.4 && <2.6, stm-delay >= 0.1.1 && <0.2, text >=0.11 && <1.3,