katip-wai 0.1.2.2 → 0.1.2.3
raw patch · 2 files changed
+13/−5 lines, 2 filesdep ~bytestringdep ~textPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: bytestring, text
API changes (from Hackage documentation)
- Katip.Wai: runApplication :: MonadIO m => (forall a. m a -> IO a) -> ApplicationT m -> Application
+ Katip.Wai: runApplication :: MonadIO m => (forall a. () => m a -> IO a) -> ApplicationT m -> Application
- Katip.Wai: type ApplicationT m = Request -> (Response -> m ResponseReceived) -> m ResponseReceived
+ Katip.Wai: type ApplicationT (m :: Type -> Type) = Request -> Response -> m ResponseReceived -> m ResponseReceived
- Katip.Wai: type MiddlewareT m = ApplicationT m -> ApplicationT m
+ Katip.Wai: type MiddlewareT (m :: Type -> Type) = ApplicationT m -> ApplicationT m
Files
- CHANGELOG.md +9/−1
- katip-wai.cabal +4/−4
CHANGELOG.md view
@@ -24,6 +24,13 @@ ## [Unreleased] +## [0.1.2.3] - 2024-01-01++### Fixed++- Increased upper bound for `text`+- Increased upper bound for `bytestring`+ ## [0.1.2.2] - 2023-06-29 ### Fixed@@ -65,7 +72,8 @@ - Initial release -[unreleased]: https://github.com/Disco-Dave/katip-wai/compare/releases/0.1.2.2...HEAD+[unreleased]: https://github.com/Disco-Dave/katip-wai/compare/releases/0.1.2.3...HEAD+[0.1.2.3]: https://github.com/Disco-Dave/katip-wai/compare/releases/0.1.2.2...releases/0.1.2.3 [0.1.2.2]: https://github.com/Disco-Dave/katip-wai/compare/releases/0.1.2.1...releases/0.1.2.2 [0.1.2.1]: https://github.com/Disco-Dave/katip-wai/compare/releases/0.1.2.0...releases/0.1.2.1 [0.1.2.0]: https://github.com/Disco-Dave/katip-wai/compare/releases/0.1.1.0...releases/0.1.2.0
katip-wai.cabal view
@@ -1,7 +1,7 @@ cabal-version: 2.2 name: katip-wai-version: 0.1.2.2+version: 0.1.2.3 synopsis: WAI middleware for logging request and response info through katip. description: WAI middleware for logging request and response info through katip. Please see the README on GitHub at <https://github.com/Disco-Dave/katip-wai#readme>@@ -14,7 +14,7 @@ author: David Burkett maintainer: David Burkett -copyright: 2022 David Burkett+copyright: 2024 David Burkett license: BSD-3-Clause license-file: LICENSE @@ -61,10 +61,10 @@ build-depends: , aeson >=0.6 && <2.3 , base >=4.7 && <5- , bytestring >=0.9 && <0.12+ , bytestring >=0.9 && <0.13 , http-types >=0.12 && <0.13 , katip >=0.8 && <0.9- , text >=0.11 && <2.1+ , text >=0.11 && <2.2 , uuid >=1.3 && <1.4 , wai >=3.0 && <3.3