Hello community,
here is the log from the commit of package ghc-persistent-postgresql for
openSUSE:Factory checked in at 2017-04-11 09:43:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-persistent-postgresql (Old)
and /work/SRC/openSUSE:Factory/.ghc-persistent-postgresql.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-persistent-postgresql"
Tue Apr 11 09:43:05 2017 rev:3 rq:485152 version:2.6.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-persistent-postgresql/ghc-persistent-postgresql.changes
2016-11-02 12:46:52.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.ghc-persistent-postgresql.new/ghc-persistent-postgresql.changes
2017-04-11 09:43:06.390512995 +0200
@@ -1,0 +2,5 @@
+Tue Mar 14 09:26:26 UTC 2017 - [email protected]
+
+- Update to version 2.6.1 with cabal2obs.
+
+-------------------------------------------------------------------
Old:
----
persistent-postgresql-2.6.tar.gz
New:
----
persistent-postgresql-2.6.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-persistent-postgresql.spec ++++++
--- /var/tmp/diff_new_pack.OFjd8k/_old 2017-04-11 09:43:07.878302824 +0200
+++ /var/tmp/diff_new_pack.OFjd8k/_new 2017-04-11 09:43:07.882302260 +0200
@@ -1,7 +1,7 @@
#
# spec file for package ghc-persistent-postgresql
#
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
%global pkg_name persistent-postgresql
Name: ghc-%{pkg_name}
-Version: 2.6
+Version: 2.6.1
Release: 0
Summary: Backend for the persistent library using postgresql
License: MIT
++++++ persistent-postgresql-2.6.tar.gz -> persistent-postgresql-2.6.1.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/persistent-postgresql-2.6/ChangeLog.md
new/persistent-postgresql-2.6.1/ChangeLog.md
--- old/persistent-postgresql-2.6/ChangeLog.md 2016-08-10 05:20:24.000000000
+0200
+++ new/persistent-postgresql-2.6.1/ChangeLog.md 2017-03-06
14:00:51.000000000 +0100
@@ -1,3 +1,8 @@
+## 2.6.1
+
+* Match changes in persistent
+* Clean up warnings
+
## 2.6
* Atomic upsert support for postgreSQL backend
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/persistent-postgresql-2.6/Database/Persist/Postgresql.hs
new/persistent-postgresql-2.6.1/Database/Persist/Postgresql.hs
--- old/persistent-postgresql-2.6/Database/Persist/Postgresql.hs
2016-08-10 05:20:24.000000000 +0200
+++ new/persistent-postgresql-2.6.1/Database/Persist/Postgresql.hs
2017-03-03 10:45:56.000000000 +0100
@@ -31,7 +31,6 @@
import Data.Fixed (Pico)
import qualified Database.PostgreSQL.Simple as PG
-import qualified Database.PostgreSQL.Simple.TypeInfo as PG
import qualified Database.PostgreSQL.Simple.TypeInfo.Static as PS
import qualified Database.PostgreSQL.Simple.Internal as PG
import qualified Database.PostgreSQL.Simple.ToField as PGTF
@@ -91,7 +90,7 @@
-- | PostgresServerVersionError exception. This is thrown when persistent
-- is unable to find the version of the postgreSQL server.
-data PostgresServerVersionError = PostgresServerVersionError String deriving
Typeable
+data PostgresServerVersionError = PostgresServerVersionError String deriving
Data.Typeable.Typeable
instance Show PostgresServerVersionError where
show (PostgresServerVersionError uniqueMsg) =
@@ -201,6 +200,7 @@
, connRDBMS = "postgresql"
, connLimitOffset = decorateSQLWithLimitOffset "LIMIT ALL"
, connLogFunc = logFunc
+ , connMaxParams = Nothing
}
prepare' :: PG.Connection -> Text -> IO Statement
@@ -1111,7 +1111,8 @@
connNoLimit = undefined,
connRDBMS = undefined,
connLimitOffset = undefined,
- connLogFunc = undefined}
+ connLogFunc = undefined,
+ connMaxParams = Nothing}
result = runReaderT $ runWriterT $ runWriterT mig
resp <- result sqlbackend
mapM_ T.putStrLn $ map snd $ snd resp
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/persistent-postgresql-2.6/persistent-postgresql.cabal
new/persistent-postgresql-2.6.1/persistent-postgresql.cabal
--- old/persistent-postgresql-2.6/persistent-postgresql.cabal 2016-08-14
00:03:58.000000000 +0200
+++ new/persistent-postgresql-2.6.1/persistent-postgresql.cabal 2017-03-06
14:00:54.000000000 +0100
@@ -1,5 +1,5 @@
name: persistent-postgresql
-version: 2.6
+version: 2.6.1
license: MIT
license-file: LICENSE
author: Felipe Lessa, Michael Snoyman <[email protected]>
@@ -19,7 +19,7 @@
, transformers >= 0.2.1
, postgresql-simple >= 0.4.0 && < 0.6
, postgresql-libpq >= 0.6.1 && < 0.10
- , persistent >= 2.6 && < 3
+ , persistent >= 2.6.1 && < 3
, containers >= 0.2
, bytestring >= 0.9
, text >= 0.7