persistent-sqlite 2.8.0 → 2.8.1
raw patch · 3 files changed
+8/−2 lines, 3 filesdep ~persistent
Dependency ranges changed: persistent
Files
- ChangeLog.md +4/−0
- Database/Persist/Sqlite.hs +2/−0
- persistent-sqlite.cabal +2/−2
ChangeLog.md view
@@ -1,3 +1,7 @@+## 2.8.1++* Updated `SqlBackend` definition to set `connPutManySql`. [#770](https://github.com/yesodweb/persistent/pull/770)+ ## 2.8.0 * Switch from `MonadBaseControl` to `MonadUnliftIO`
Database/Persist/Sqlite.hs view
@@ -152,6 +152,7 @@ , connStmtMap = smap , connInsertSql = insertSql' , connUpsertSql = Nothing+ , connPutManySql = Nothing , connInsertManySql = Nothing , connClose = Sqlite.close conn , connMigrateSql = migrate'@@ -344,6 +345,7 @@ , connLimitOffset = decorateSQLWithLimitOffset "LIMIT -1" , connLogFunc = undefined , connUpsertSql = undefined+ , connPutManySql = undefined , connMaxParams = Just 999 } result = runReaderT . runWriterT . runWriterT $ mig
persistent-sqlite.cabal view
@@ -1,5 +1,5 @@ name: persistent-sqlite-version: 2.8.0+version: 2.8.1 license: MIT license-file: LICENSE author: Michael Snoyman <michael@snoyman.com>@@ -28,7 +28,7 @@ build-depends: base >= 4.8 && < 5 , bytestring >= 0.9.1 , transformers >= 0.2.1- , persistent >= 2.8.0 && < 3+ , persistent >= 2.8.1 && < 3 , unliftio-core , containers >= 0.2 , text >= 0.7