Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ghc-commonmark-pandoc for
openSUSE:Factory checked in at 2026-06-10 15:58:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-commonmark-pandoc (Old)
and /work/SRC/openSUSE:Factory/.ghc-commonmark-pandoc.new.2375 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-commonmark-pandoc"
Wed Jun 10 15:58:32 2026 rev:16 rq:1358344 version:0.3
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-commonmark-pandoc/ghc-commonmark-pandoc.changes
2025-02-17 20:54:38.536764718 +0100
+++
/work/SRC/openSUSE:Factory/.ghc-commonmark-pandoc.new.2375/ghc-commonmark-pandoc.changes
2026-06-10 15:59:11.683739549 +0200
@@ -1,0 +2,15 @@
+Sun May 31 14:58:19 UTC 2026 - Peter Simons <[email protected]>
+
+- Update commonmark-pandoc to version 0.3.
+ ## 0.3
+
+ * Define Applicative instances of IsBlock, IsInline etc.
+ (Ashley Yakeley).
+
+ * Track wikilinks with a class instead of the title (Evan Silberman).
+ The use of `title="wikilink"` in HTML output likely traces back to
+ Pandoc's hijacking of the title attribute for this purpose back when
+ Pandoc links didn't have Attrs. A coordinated change in Pandoc moves
+ this more appropriately into a class.
+
+-------------------------------------------------------------------
Old:
----
commonmark-pandoc-0.2.3.tar.gz
New:
----
commonmark-pandoc-0.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-commonmark-pandoc.spec ++++++
--- /var/tmp/diff_new_pack.fCk7H7/_old 2026-06-10 15:59:13.051796241 +0200
+++ /var/tmp/diff_new_pack.fCk7H7/_new 2026-06-10 15:59:13.051796241 +0200
@@ -1,7 +1,7 @@
#
# spec file for package ghc-commonmark-pandoc
#
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2026 SUSE LLC
#
# 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 commonmark-pandoc
%global pkgver %{pkg_name}-%{version}
Name: ghc-%{pkg_name}
-Version: 0.2.3
+Version: 0.3
Release: 0
Summary: Bridge between commonmark and pandoc AST
License: BSD-3-Clause
++++++ commonmark-pandoc-0.2.3.tar.gz -> commonmark-pandoc-0.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/commonmark-pandoc-0.2.3/changelog.md
new/commonmark-pandoc-0.3/changelog.md
--- old/commonmark-pandoc-0.2.3/changelog.md 2001-09-09 03:46:40.000000000
+0200
+++ new/commonmark-pandoc-0.3/changelog.md 2001-09-09 03:46:40.000000000
+0200
@@ -1,5 +1,16 @@
# Changelog for commonmark-pandoc
+## 0.3
+
+ * Define Applicative instances of IsBlock, IsInline etc.
+ (Ashley Yakeley).
+
+ * Track wikilinks with a class instead of the title (Evan Silberman).
+ The use of `title="wikilink"` in HTML output likely traces back to
+ Pandoc's hijacking of the title attribute for this purpose back when
+ Pandoc links didn't have Attrs. A coordinated change in Pandoc moves
+ this more appropriately into a class.
+
## 0.2.3
- Track wikilinks with a class instead of the title (Evan
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/commonmark-pandoc-0.2.3/commonmark-pandoc.cabal
new/commonmark-pandoc-0.3/commonmark-pandoc.cabal
--- old/commonmark-pandoc-0.2.3/commonmark-pandoc.cabal 2001-09-09
03:46:40.000000000 +0200
+++ new/commonmark-pandoc-0.3/commonmark-pandoc.cabal 2001-09-09
03:46:40.000000000 +0200
@@ -1,5 +1,5 @@
name: commonmark-pandoc
-version: 0.2.3
+version: 0.3
synopsis: Bridge between commonmark and pandoc AST.
description: This library provides typeclasses for rendering
commonmark to Pandoc types.
@@ -27,7 +27,7 @@
src
build-depends:
base >= 4.9 && <5
- , commonmark >= 0.2.4.1 && < 0.3
+ , commonmark >= 0.3 && < 0.4
, commonmark-extensions >= 0.2.5 && < 0.3
, pandoc-types >= 1.21 && < 1.24
, text
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/commonmark-pandoc-0.2.3/src/Commonmark/Pandoc.hs
new/commonmark-pandoc-0.3/src/Commonmark/Pandoc.hs
--- old/commonmark-pandoc-0.2.3/src/Commonmark/Pandoc.hs 2001-09-09
03:46:40.000000000 +0200
+++ new/commonmark-pandoc-0.3/src/Commonmark/Pandoc.hs 2001-09-09
03:46:40.000000000 +0200
@@ -5,6 +5,7 @@
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE UndecidableInstances #-}
+{-# LANGUAGE MonoLocalBinds #-}
module Commonmark.Pandoc
( Cm(..)