ngx-export-tools 1.2.3 → 1.2.3.1
raw patch · 3 files changed
+9/−4 lines, 3 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- NgxExport.Tools.Combinators: voidHandler' :: IO a -> Bool -> IO ByteString
+ NgxExport.Tools.Combinators: voidHandler' :: IO a -> b -> IO ByteString
Files
- Changelog.md +5/−0
- NgxExport/Tools/Combinators.hs +3/−3
- ngx-export-tools.cabal +1/−1
Changelog.md view
@@ -1,3 +1,8 @@+### 1.2.3.1++- Stick to the original polymorphic type signature of *voidHandler'* to avoid+ breakage of existing dependent code.+ ### 1.2.3 - Added a void service *voidService* which helps to load global data from Nginx
NgxExport/Tools/Combinators.hs view
@@ -70,8 +70,8 @@ -- | Runs an effectful computation and then returns an empty 'L.ByteString'. ----- The same as 'voidHandler' except it accepts an additional boolean value--- which is ignored. Implemented as+-- The same as 'voidHandler' except it accepts an additional value which is+-- ignored. Implemented as -- -- @ -- voidHandler' = const . 'voidHandler'@@ -91,7 +91,7 @@ -- -- @since 1.2.1 voidHandler' :: IO a -- ^ Target computation- -> Bool -- ^ Ignored boolean value+ -> b -- ^ Ignored value -> IO L.ByteString voidHandler' = const . voidHandler
ngx-export-tools.cabal view
@@ -1,5 +1,5 @@ name: ngx-export-tools-version: 1.2.3+version: 1.2.3.1 synopsis: Extra tools for Nginx Haskell module description: Extra tools for <https://github.com/lyokha/nginx-haskell-module Nginx Haskell module>.