packages feed

log-postgres 0.9.0.0 → 0.9.0.1

raw patch · 3 files changed

+6/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,3 +1,6 @@+# log-postgres-0.9.0.1 (2023-03-14)+* Add support for GHC 9.6.+ # log-postgres-0.9.0.0 (2022-09-21) * Remove deprecated `pgLogger`. * Generalize logger related functions to `MonadUnliftIO`.
log-postgres.cabal view
@@ -1,6 +1,6 @@ cabal-version:       2.0 name:                log-postgres-version:             0.9.0.0+version:             0.9.0.1 synopsis:            Structured logging solution (PostgreSQL back end)  description:         PostgreSQL back end for the 'log' library suite.@@ -18,7 +18,7 @@ category:            System build-type:          Simple extra-source-files:  CHANGELOG.md, README.md-tested-with:         GHC ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.4 || ==9.4.2+tested-with:         GHC ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.7 || ==9.4.4 || ==9.6.1  Source-repository head   Type:     git
src/Log/Backend/PostgreSQL.hs view
@@ -3,6 +3,7 @@  import Control.Concurrent import Control.Exception.Lifted+import Control.Monad import Control.Monad.State.Lazy import Control.Monad.IO.Unlift import Data.Aeson ((.=), Value(..), object, encode)