Hello community,

here is the log from the commit of package ghc-yaml for openSUSE:Factory 
checked in at 2020-05-11 13:37:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-yaml (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-yaml.new.2738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-yaml"

Mon May 11 13:37:00 2020 rev:33 rq:801067 version:0.11.3.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-yaml/ghc-yaml.changes        2019-12-27 
13:59:22.856832617 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-yaml.new.2738/ghc-yaml.changes      
2020-05-11 13:37:03.960578283 +0200
@@ -1,0 +2,8 @@
+Wed May  6 06:54:10 UTC 2020 - psim...@suse.com
+
+- Update yaml to version 0.11.3.0.
+  ## 0.11.3.0
+
+  * Don't wrap up async exceptions 
[#185](https://github.com/snoyberg/yaml/issues/185)
+
+-------------------------------------------------------------------

Old:
----
  yaml-0.11.2.0.tar.gz

New:
----
  yaml-0.11.3.0.tar.gz

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

Other differences:
------------------
++++++ ghc-yaml.spec ++++++
--- /var/tmp/diff_new_pack.eQcxxT/_old  2020-05-11 13:37:05.384581268 +0200
+++ /var/tmp/diff_new_pack.eQcxxT/_new  2020-05-11 13:37:05.384581268 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-yaml
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 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
@@ -19,7 +19,7 @@
 %global pkg_name yaml
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        0.11.2.0
+Version:        0.11.3.0
 Release:        0
 Summary:        Support for parsing and rendering YAML documents
 License:        BSD-3-Clause

++++++ yaml-0.11.2.0.tar.gz -> yaml-0.11.3.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.11.2.0/ChangeLog.md 
new/yaml-0.11.3.0/ChangeLog.md
--- old/yaml-0.11.2.0/ChangeLog.md      2019-11-06 07:13:43.000000000 +0100
+++ new/yaml-0.11.3.0/ChangeLog.md      2020-03-10 05:49:47.000000000 +0100
@@ -1,5 +1,9 @@
 # ChangeLog for yaml
 
+## 0.11.3.0
+
+* Don't wrap up async exceptions 
[#185](https://github.com/snoyberg/yaml/issues/185)
+
 ## 0.11.2.0
 
 * Reduces some of the code duplication between the `encode` and `encodePretty` 
functions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.11.2.0/src/Data/Yaml/Internal.hs 
new/yaml-0.11.3.0/src/Data/Yaml/Internal.hs
--- old/yaml-0.11.2.0/src/Data/Yaml/Internal.hs 2019-11-06 07:13:43.000000000 
+0100
+++ new/yaml-0.11.3.0/src/Data/Yaml/Internal.hs 2020-03-10 05:49:47.000000000 
+0100
@@ -303,12 +303,13 @@
               -> IO (Either ParseException ([Warning], a))
 decodeHelper_ src = do
     x <- try $ runResourceT $ runStateT (runConduit $ src .| runReaderT parse 
[]) (ParseState Map.empty [])
-    return $ case x of
+    case x of
         Left e
-            | Just pe <- fromException e -> Left pe
-            | Just ye <- fromException e -> Left $ InvalidYaml $ Just (ye :: 
YamlException)
-            | otherwise -> Left $ OtherParseException e
-        Right (y, st) -> either
+            | Just pe <- fromException e -> return $ Left pe
+            | Just ye <- fromException e -> return $ Left $ InvalidYaml $ Just 
(ye :: YamlException)
+            | Just sae <- fromException e -> throwIO (sae :: 
SomeAsyncException)
+            | otherwise -> return $ Left $ OtherParseException e
+        Right (y, st) -> return $ either
             (Left . AesonException)
             Right
             ((,) (parseStateWarnings st) <$> parseEither parseJSON y)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.11.2.0/yaml.cabal new/yaml-0.11.3.0/yaml.cabal
--- old/yaml-0.11.2.0/yaml.cabal        2019-11-06 11:13:39.000000000 +0100
+++ new/yaml-0.11.3.0/yaml.cabal        2020-03-10 05:50:08.000000000 +0100
@@ -1,13 +1,13 @@
 cabal-version: 1.12
 
--- This file has been generated from package.yaml by hpack version 0.31.2.
+-- This file has been generated from package.yaml by hpack version 0.33.0.
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 1755dcdb4772fa7e743958ba68b120522981238fdcdac9fdc7494a36809ff6ae
+-- hash: 4160e171cfd5a87614a9fbf40f548f75306e24d499c44f71c279d15f8c4e2c39
 
 name:           yaml
-version:        0.11.2.0
+version:        0.11.3.0
 synopsis:       Support for parsing and rendering YAML documents.
 description:    README and API documentation are available at 
<https://www.stackage.org/package/yaml>
 category:       Data


Reply via email to