Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-pandoc-server for openSUSE:Factory checked in at 2025-09-12 21:09:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-pandoc-server (Old) and /work/SRC/openSUSE:Factory/.ghc-pandoc-server.new.1977 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-pandoc-server" Fri Sep 12 21:09:54 2025 rev:12 rq:1304135 version:0.1.1 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-pandoc-server/ghc-pandoc-server.changes 2025-05-22 16:57:51.296422351 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-pandoc-server.new.1977/ghc-pandoc-server.changes 2025-09-12 21:10:11.764912191 +0200 @@ -1,0 +2,6 @@ +Sat Sep 6 21:56:48 UTC 2025 - Peter Simons <psim...@suse.com> + +- Update pandoc-server to version 0.1.1. + Upstream does not provide a change log file. + +------------------------------------------------------------------- Old: ---- pandoc-server-0.1.0.11.tar.gz New: ---- pandoc-server-0.1.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-pandoc-server.spec ++++++ --- /var/tmp/diff_new_pack.peuqtp/_old 2025-09-12 21:10:12.268933444 +0200 +++ /var/tmp/diff_new_pack.peuqtp/_new 2025-09-12 21:10:12.272933613 +0200 @@ -19,7 +19,7 @@ %global pkg_name pandoc-server %global pkgver %{pkg_name}-%{version} Name: ghc-%{pkg_name} -Version: 0.1.0.11 +Version: 0.1.1 Release: 0 Summary: Pandoc document conversion as an HTTP servant-server License: GPL-2.0-or-later ++++++ pandoc-server-0.1.0.11.tar.gz -> pandoc-server-0.1.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pandoc-server-0.1.0.11/pandoc-server.cabal new/pandoc-server-0.1.1/pandoc-server.cabal --- old/pandoc-server-0.1.0.11/pandoc-server.cabal 2001-09-09 03:46:40.000000000 +0200 +++ new/pandoc-server-0.1.1/pandoc-server.cabal 2001-09-09 03:46:40.000000000 +0200 @@ -1,6 +1,6 @@ cabal-version: 2.4 name: pandoc-server -version: 0.1.0.11 +version: 0.1.1 build-type: Simple license: GPL-2.0-or-later license-file: COPYING.md @@ -49,7 +49,7 @@ library import: common-options - build-depends: pandoc >= 3.5 && < 3.8, + build-depends: pandoc >= 3.8 && < 3.9, pandoc-types >= 1.22 && < 1.24, containers >= 0.6.0.1 && < 0.9, aeson >= 2.0 && < 2.3, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pandoc-server-0.1.0.11/src/Text/Pandoc/Server.hs new/pandoc-server-0.1.1/src/Text/Pandoc/Server.hs --- old/pandoc-server-0.1.0.11/src/Text/Pandoc/Server.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/pandoc-server-0.1.1/src/Text/Pandoc/Server.hs 2001-09-09 03:46:40.000000000 +0200 @@ -275,8 +275,11 @@ let isStandalone = optStandalone opts let toformat = formatName writerFormat - hlStyle <- traverse (lookupHighlightingStyle . T.unpack) - $ optHighlightStyle opts + hlStyle <- case optSyntaxHighlighting opts of + "none" -> pure NoHighlighting + "idiomatic" -> pure IdiomaticHighlighting + "default" -> pure DefaultHighlighting + s -> Skylighting <$> lookupHighlightingStyle (T.unpack s) mbTemplate <- if isStandalone then case optTemplate opts of @@ -327,8 +330,7 @@ , writerHtmlQTags = optHtmlQTags opts , writerSlideLevel = optSlideLevel opts , writerTopLevelDivision = optTopLevelDivision opts - , writerListings = optListings opts - , writerHighlightStyle = hlStyle + , writerHighlightMethod = hlStyle , writerSetextHeaders = optSetextHeaders opts , writerListTables = optListTables opts , writerEpubSubdirectory = T.pack $ optEpubSubdirectory opts