pg-schema 0.7.0.0 → 0.7.0.1
raw patch · 3 files changed
+4/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +3/−0
- pg-schema.cabal +1/−1
- src/PgSchema/DML/InsertJSON.hs +0/−1
ChangeLog.md view
@@ -1,5 +1,8 @@ # Changelog for pg-schema +## 0.7.0.1+- Bug fixing (upsertJSON_ without change fields: on conflict do nothing)+ ## 0.7.0.0 - Bug fixing (updateText_ signature)
pg-schema.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.12 name: pg-schema-version: 0.7.0.0+version: 0.7.0.1 category: Database author: Dmitry Olshansky maintainer: olshanskydr@gmail.com
src/PgSchema/DML/InsertJSON.hs view
@@ -206,7 +206,6 @@ , " " <> sWhere] ups0 pk | L.null plainsOthers = case mbSetVars of- Just [] -> addSemiColon ins0 Just xs -> ins0 <> [ " on conflict do nothing;"] <> [" " <> intercalate' " " xs] Nothing -> ins0 <> addSemiColon ([ " on conflict do nothing"] <> rets)