persistent-mongoDB 2.13.0.0 → 2.13.0.1
raw patch · 5 files changed
+14/−1 lines, 5 filesdep ~http-api-datadep ~resource-poolPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: http-api-data, resource-pool
API changes (from Hackage documentation)
Files
- ChangeLog.md +8/−0
- persistent-mongoDB.cabal +1/−1
- test/EmbedTestMongo.hs +1/−0
- test/EntityEmbedTestMongo.hs +1/−0
- test/main.hs +3/−0
ChangeLog.md view
@@ -1,5 +1,13 @@ # Changelog for persistent-mongoDB +## 2.13.0.1++* [#1367](https://github.com/yesodweb/persistent/pull/1367),+ [#1366](https://github.com/yesodweb/persistent/pull/1367),+ [#1338](https://github.com/yesodweb/persistent/pull/1338),+ [#1335](https://github.com/yesodweb/persistent/pull/1335)+ * Support GHC 9.2+ ## 2.13.0.0 * Fix persistent 2.13 changes [#1286](https://github.com/yesodweb/persistent/pull/1286)
persistent-mongoDB.cabal view
@@ -1,5 +1,5 @@ name: persistent-mongoDB-version: 2.13.0.0+version: 2.13.0.1 license: MIT license-file: LICENSE author: Greg Weber <greg@gregweber.info>
test/EmbedTestMongo.hs view
@@ -1,5 +1,6 @@ {-# LANGUAGE EmptyDataDecls #-} {-# LANGUAGE DataKinds, ExistentialQuantification #-}+{-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE MultiParamTypeClasses #-}
test/EntityEmbedTestMongo.hs view
@@ -1,5 +1,6 @@ {-# LANGUAGE EmptyDataDecls #-} {-# LANGUAGE DataKinds, ExistentialQuantification #-}+{-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE QuasiQuotes #-}
test/main.hs view
@@ -1,5 +1,6 @@ {-# LANGUAGE EmptyDataDecls #-} {-# LANGUAGE DataKinds, ExistentialQuantification #-}+{-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE QuasiQuotes #-}@@ -46,6 +47,7 @@ import qualified HtmlTest import qualified LargeNumberTest import qualified MaxLenTest+import qualified MaybeFieldDefsTest import qualified MigrationOnlyTest import qualified PersistentTest import qualified Recursive@@ -127,6 +129,7 @@ LargeNumberTest.specsWith (db' (deleteWhere ([] :: [Filter (LargeNumberTest.NumberGeneric backend)]))) MaxLenTest.specsWith dbNoCleanup+ MaybeFieldDefsTest.specsWith dbNoCleanup Recursive.specsWith (db' Recursive.cleanup) SumTypeTest.specsWith (dbNoCleanup) Nothing