Hello community,

here is the log from the commit of package ghc-yesod-job-queue for 
openSUSE:Factory checked in at 2017-08-31 21:02:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-yesod-job-queue (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-yesod-job-queue.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-yesod-job-queue"

Thu Aug 31 21:02:10 2017 rev:2 rq:513548 version:0.3.0.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-yesod-job-queue/ghc-yesod-job-queue.changes  
2017-05-09 18:08:07.278742014 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-yesod-job-queue.new/ghc-yesod-job-queue.changes 
    2017-08-31 21:02:13.326870442 +0200
@@ -1,0 +2,5 @@
+Thu Jul 27 14:07:15 UTC 2017 - psim...@suse.com
+
+- Update to version 0.3.0.4.
+
+-------------------------------------------------------------------

Old:
----
  yesod-job-queue-0.3.0.2.tar.gz

New:
----
  yesod-job-queue-0.3.0.4.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ghc-yesod-job-queue.spec ++++++
--- /var/tmp/diff_new_pack.CbpMW6/_old  2017-08-31 21:02:14.170751874 +0200
+++ /var/tmp/diff_new_pack.CbpMW6/_new  2017-08-31 21:02:14.186749627 +0200
@@ -18,7 +18,7 @@
 
 %global pkg_name yesod-job-queue
 Name:           ghc-%{pkg_name}
-Version:        0.3.0.2
+Version:        0.3.0.4
 Release:        0
 Summary:        Background jobs library for Yesod
 License:        BSD-3-Clause

++++++ yesod-job-queue-0.3.0.2.tar.gz -> yesod-job-queue-0.3.0.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yesod-job-queue-0.3.0.2/Yesod/JobQueue/Types.hs 
new/yesod-job-queue-0.3.0.4/Yesod/JobQueue/Types.hs
--- old/yesod-job-queue-0.3.0.2/Yesod/JobQueue/Types.hs 2016-12-02 
10:39:39.000000000 +0100
+++ new/yesod-job-queue-0.3.0.4/Yesod/JobQueue/Types.hs 2017-05-16 
19:46:56.000000000 +0200
@@ -1,3 +1,4 @@
+{-# OPTIONS_HADDOCK prune #-}
 {-# LANGUAGE TemplateHaskell #-}
 
 module Yesod.JobQueue.Types where
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yesod-job-queue-0.3.0.2/Yesod/JobQueue.hs 
new/yesod-job-queue-0.3.0.4/Yesod/JobQueue.hs
--- old/yesod-job-queue-0.3.0.2/Yesod/JobQueue.hs       2016-12-02 
10:39:39.000000000 +0100
+++ new/yesod-job-queue-0.3.0.4/Yesod/JobQueue.hs       2017-05-09 
04:25:28.000000000 +0200
@@ -33,7 +33,7 @@
 import Control.Monad.Trans.Class (lift)
 import Control.Monad.Trans.Control (MonadBaseControl)
 import Control.Monad.Trans.Reader (ReaderT, runReaderT)
-import Data.Aeson (ToJSON(toJSON), Value(String), (.=), object)
+import Data.Aeson (Value, (.=), object)
 import Data.Aeson.TH (defaultOptions, deriveToJSON)
 import Data.ByteString (ByteString)
 import qualified Data.ByteString.Char8 as BSC
@@ -69,8 +69,7 @@
     , jobId :: U.UUID
     , startTime :: UTCTime
     } deriving (Eq)
-instance ToJSON U.UUID where
-    toJSON = String . T.pack . U.toString
+
 $(deriveToJSON defaultOptions ''RunningJob)
 
 -- | Manage the running jobs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yesod-job-queue-0.3.0.2/yesod-job-queue.cabal 
new/yesod-job-queue-0.3.0.4/yesod-job-queue.cabal
--- old/yesod-job-queue-0.3.0.2/yesod-job-queue.cabal   2017-05-03 
12:15:41.000000000 +0200
+++ new/yesod-job-queue-0.3.0.4/yesod-job-queue.cabal   2017-05-16 
19:46:56.000000000 +0200
@@ -1,5 +1,5 @@
 name:                yesod-job-queue
-version:             0.3.0.2
+version:             0.3.0.4
 synopsis:            Background jobs library for Yesod.
 description:
   Background jobs library for Yesod
@@ -45,10 +45,10 @@
                      , TypeSynonymInstances
                      , ViewPatterns
   build-depends:       base >= 4.7 && < 5
-                     , aeson
-                     , api-field-json-th
+                     , aeson >= 1.1
+                     , api-field-json-th >= 0.1
                      , bytestring
-                     , cron
+                     , cron >= 0.5.0 && < 0.6
                      , file-embed
                      , hedis
                      , lens
@@ -61,9 +61,9 @@
                      , uuid
                      , yesod >= 1.4 && < 1.5
                      , yesod-core
-                     , yesod-persistent
+                     , yesod-persistent >= 1.4 && < 1.5
                      
-  ghc-options:         -Wall -fwarn-tabs -O2
+  ghc-options:         -Wall -fwarn-tabs
   default-language:    Haskell2010
 
 executable          yesod-job-queue-example
@@ -83,7 +83,7 @@
                      , GeneralizedNewtypeDeriving
                      , DeriveGeneric
 --  other-modules: 
-  ghc-options:      -Wall -fwarn-tabs -O2
+  ghc-options:      -Wall -fwarn-tabs
 
   build-depends:  base >= 4.7 && < 5
                 , yesod
@@ -95,7 +95,7 @@
                 , classy-prelude-yesod
                 , hedis
 
-  ghc-options:    -threaded -O2 -rtsopts -with-rtsopts=-N
+  ghc-options:    -threaded -rtsopts -with-rtsopts=-N
   default-language:    Haskell2010
   
 test-suite yesod-job-queue-test


Reply via email to