Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-pandoc for openSUSE:Factory 
checked in at 2023-04-14 13:12:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-pandoc (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-pandoc.new.19717 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-pandoc"

Fri Apr 14 13:12:55 2023 rev:2 rq:1079177 version:3.1.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-pandoc/ghc-pandoc.changes    2023-04-04 
21:22:14.369815059 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-pandoc.new.19717/ghc-pandoc.changes 
2023-04-14 13:13:02.507551390 +0200
@@ -1,0 +2,301 @@
+Thu Apr 13 09:33:57 UTC 2023 - Peter Simons <[email protected]>
+
+- Install the pandoc.1 man page. [bsc#1172058]
+
+-------------------------------------------------------------------
+Wed Apr 12 23:48:12 UTC 2023 - Peter Simons <[email protected]>
+
+- Update pandoc to version 3.1.2.
+  ## pandoc 3.1.2 (2023-03-26)
+
+    * Add a Lua REPL (Albert Krewinkel). This can be started
+      with `pandoc lua -i`.  It is also possible to instruct a filter to
+      open the REPL at a certain point, for debugging (see `pandoc.cli.repl`).
+
+    * Support `typst` as a `--pdf-engine`.
+
+    * Add typst writer (#8713).  New module Text.Pandoc.Writers.Typst,
+      exporting `writeTypst` [API change].
+
+    * Org reader:
+
+      + Allow zero width space as an escape character (#8716,
+        Christian Christiansen). Allow the character U+200B to be used as
+        an escape character as described in the Org-mode documentation
+        (<https://orgmode.org/manual/Escape-Character.html>).
+
+    * DocBook reader:
+
+      + Handle "book" for xref references (#8712, Andres Freund)
+        This also adds a test xref to book and part.
+      + Handle `<part>` (#8712).
+
+    * HTML reader:
+
+      + Fix behavior with `-native_spans-raw_html` (#8711). Previously with
+        this configuration, `<span>`s were not treated as inline elements at 
all.
+
+    * HTML writer:
+
+      + Avoid duplicate classes (#8705).
+      + Use img element instead of embed for `.svg.gz` and `.png.gz` etc. 
(#8699).
+      + HTML writer footnotes changes (#8695): when 
`--reference-location=section`
+        or `=block`, use an `aside` element for the notes rather than a 
`section`.
+        When `--reference-location=section`, include the `aside` element inside
+        the section element, rather than outside. (In slide shows, this option
+        causes footnotes on a slide to be displayed at the bottom of the 
slide.)
+
+    * EPUB writer:
+
+      + Use different structure for epub footnotes (#8676, see #8672, #5583).
+        Many EPUB readers are thrown off by pandoc's current footnote
+        output.  Both the ol and the fact that the footnote backlink is
+        at the end of the note seem to pose problems.
+        With this commit, we now create a list of aside (or div) elements,
+        instead of an ordered list. Each element begins with a note number
+        that is linked back to the note reference.  (So, the backlink occurs
+        at the beginning rather than the end.) Thanks to @Porges and @lewer.
+
+    * Docx writer:
+
+      + Include abstract title (#8702). Uses localized term for abstract.
+
+    * Markdown writer:
+
+      + Use implicit figures if there's a caption but no alt (#8689,
+        Albert Krewinkel).
+
+    * Jira reader (Albert Krewinkel):
+
+      + Add panel title as nested div (#8681).
+      + Require jira-wiki-markup 1.5.1 (#8680). This fixes a bug in the parser
+        that caused text between two exclamation marks to be parsed as an
+        image. The first `!` of image markup must now be followed by a
+        non-space character; otherwise, the enclosed text is parsed as
+        normal content.
+
+    * Ms writer:
+
+      + Fix handling of Figure (#8660).
+
+    * ICML writer:
+
+      + Fix images with data (#8675). The Contents element
+        should be inside Properties.
+
+    * LaTeX writer:
+
+      + Add Chinese to Babel languages.
+      + Fix background image in Beamer when there are figure environments 
(#8671,
+        Martín Pozo).
+
+    * LaTeX template:
+
+      + Add `babelfonts` variable to default LaTeX template.
+        This allows specifying certain fonts to be used with
+        certain babel languages. Thanks to Frederik Elwert.
+      + Fix highlight/underline with lualatex (#8707). We need the lua-ul 
package
+        instead of soul, which doesn't work with lualatex.
+
+    * Lua (Albert Krewinkel):
+
+      + Add `pandoc.cli.repl` function
+      + Fix `json.encode` for nested AST elements. Ensures that objects with
+        nested AST elements can be encoded as JSON.
+      + Auto-generate docs for pandoc modules.
+      + Load text module as `pandoc.text`. This only affects the name in the
+        Lua-internal documentation. It is still possible to load the modules
+        via `require 'text'`, although this is deprecated.
+      + Move docs from module `text` to `pandoc.text`
+        The latter is easier to use and more consistent with the other modules.
+      + Keep the Lua stack clean A metatable used during initialization was
+        not properly removed from the stack. Likewise, accessing the
+        CommonState from Lua previously led to the pollution of the
+        Lua stack with a left-over value.
+      * Add function `pandoc.format.from_path`.
+      + Allow to get the JSON encoding of log messages.
+
+    * Text.Pandoc.Format: Add new function `formatFromFilePaths` [API change]
+      (#8710, Albert Krewinkel).
+
+    * The old Text.Pandoc.App.FormatHeuristics module has been removed.
+
+    * In `--version`, use Windows `%APPDATA%` variable to describe
+      user data dir (#8686, Pablo Rodríguez).
+
+    * Text.Pandoc.App.CommandLineOptions: don't lowercase arg to 
`--from`/`--read`
+      (Albert Krewinkel). This prevented users to use custom writers with
+      uppercase characters in their filenames. Format-normalization,
+      including lower-casing of format identifiers, happens during
+      format parsing.
+
+    * Documentation:
+
+      + Add `doc/nix.md`.
+      + Add `doc/extras.md`. This was formally in the website repo.
+      + `doc/lua-filters.md`: improve docs for `pandoc.zip`.
+
+    * Factor out `make_macos_release.sh` from the release candidate workflow.
+      Use cabal instead of stack to build the macos binary.
+
+    * Modify linux/make_artifacts.sh so it will work on cirrus.
+
+    * Switch to hslua-2.3
+
+    * Depend on latest releases of texmath, doclayout.
+
+  ## pandoc 3.1.1 (2023-03-05)
+
+    * EPUB reader: Give additional information in error if the epub
+      zip container can't be unpacked.
+
+    * TSV reader: don't gobble tabs as whitespace (#8661).
+
+    * Org reader: accept empty tables (#8659).
+
+    * LaTeX reader: fix multiplication syntax for tabular (#8658).
+      We recognized `*{6}{...}` but not `*6{...}` or `*6c`.
+
+    * Docx reader: parse image alt texts in LibreOffice generated files.
+      LibreOffice tags images slightly differently than Word; this change lets
+      the parses take that difference into account when looking for an image
+      description (alt text).
+
+    * DocBook reader:
+
+      + Fix `<xref>` references to tables in DocBook files
+        (#8626, Pavol Otto).
+      + Parse `figure` as a Figure element in the AST (#8668).
+
+    * JATS reader: avoid generating duplicate figure captions (#8669).
+
+    * RST reader: align with spec in syntax for role names (#8653).
+      In particular, we now allow colons in row names.
+
+    * Add note on converting from .doc format to FAQs (#8654).
+
+    * Trap error in getAppUserDataDirectory (#8648).
+      This can raise an error if pandoc is run in a non-user environment.
+
+    * LaTeX writer: do not use longtable foot with Beamer (#8638, Albert
+      Krewinkel). The table foot is made part of the table body, as
+      otherwise it won't show up in the output. The root cause for
+      this is that longtable cannot detect page breaks in Beamer.
+
+    * LaTeX template: Add CJKsansfont and CJKmonofont for XeLaTeX
+      (#8656, Yudong Jin). `CJKsansfont` and `CJKmonofont` will be
+      set for xelatex only if `CJKmainfont` is also provided.
+
+    * URL style in ConTeXt (#8612, Thomas Hodgson). Previously, a
+      URL like this would be in monospace text:
+      `\useURL[url1][https://example.com]`.  Now, it will match the
+      main text unless the `linkstyle` variable is set, which
+      controls the styling of all links.  Closes #8602.
+
+    * Asciidoc writer: Properly escape `|` in table cells (#8665).
+
+    * asciidoc{,tor} template: fix revision date when author is unset
++++ 104 more lines (skipped)
++++ between /work/SRC/openSUSE:Factory/ghc-pandoc/ghc-pandoc.changes
++++ and /work/SRC/openSUSE:Factory/.ghc-pandoc.new.19717/ghc-pandoc.changes

Old:
----
  pandoc-3.0.1.tar.gz

New:
----
  pandoc-3.1.2.tar.gz

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

Other differences:
------------------
++++++ ghc-pandoc.spec ++++++
--- /var/tmp/diff_new_pack.8rHFMm/_old  2023-04-14 13:13:04.571563194 +0200
+++ /var/tmp/diff_new_pack.8rHFMm/_new  2023-04-14 13:13:04.575563217 +0200
@@ -20,7 +20,7 @@
 %global pkgver %{pkg_name}-%{version}
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        3.0.1
+Version:        3.1.2
 Release:        0
 Summary:        Conversion between markup formats
 License:        GPL-2.0-or-later
@@ -183,18 +183,18 @@
 - light markup formats (many variants of Markdown, reStructuredText, AsciiDoc,
 Org-mode, Muse, Textile, txt2tags) - HTML formats (HTML 4 and 5) - Ebook
 formats (EPUB v2 and v3, FB2) - Documentation formats (GNU TexInfo, Haddock) -
-Roff formats (man, ms) - TeX formats (LaTeX, ConTeXt) - XML formats (DocBook 4
-and 5, JATS, TEI Simple, OpenDocument) - Outline formats (OPML) - Bibliography
-formats (BibTeX, BibLaTeX, CSL JSON, CSL YAML, RIS) - Word processor formats
-(Docx, RTF, ODT) - Interactive notebook formats (Jupyter notebook ipynb) - Page
-layout formats (InDesign ICML) - Wiki markup formats (MediaWiki, DokuWiki,
-TikiWiki, TWiki, Vimwiki, XWiki, ZimWiki, Jira wiki, Creole) - Slide show
-formats (LaTeX Beamer, PowerPoint, Slidy, reveal.js, Slideous, S5, DZSlides) -
-Data formats (CSV and TSV tables) - PDF (via external programs such as pdflatex
-or wkhtmltopdf)
+Roff formats (man, ms) - TeX formats (LaTeX, ConTeXt) - Typst - XML formats
+(DocBook 4 and 5, JATS, TEI Simple, OpenDocument) - Outline formats (OPML) -
+Bibliography formats (BibTeX, BibLaTeX, CSL JSON, CSL YAML, RIS) - Word
+processor formats (Docx, RTF, ODT) - Interactive notebook formats (Jupyter
+notebook ipynb) - Page layout formats (InDesign ICML) - Wiki markup formats
+(MediaWiki, DokuWiki, TikiWiki, TWiki, Vimwiki, XWiki, ZimWiki, Jira wiki,
+Creole) - Slide show formats (LaTeX Beamer, PowerPoint, Slidy, reveal.js,
+Slideous, S5, DZSlides) - Data formats (CSV and TSV tables) - PDF (via external
+programs such as pdflatex or wkhtmltopdf)
 
 Pandoc can convert mathematical content in documents between TeX, MathML, Word
-equations, roff eqn, and plain text. It includes a powerful system for
+equations, roff eqn, typst, and plain text. It includes a powerful system for
 automatic citations and bibliographies, and it can be customized extensively
 using templates, filters, and custom readers and writers written in Lua.
 
@@ -406,10 +406,13 @@
 %{_datadir}/%{pkg_name}-%{version}/data/templates/default.tei
 %{_datadir}/%{pkg_name}-%{version}/data/templates/default.texinfo
 %{_datadir}/%{pkg_name}-%{version}/data/templates/default.textile
+%{_datadir}/%{pkg_name}-%{version}/data/templates/default.typst
 %{_datadir}/%{pkg_name}-%{version}/data/templates/default.xwiki
 %{_datadir}/%{pkg_name}-%{version}/data/templates/default.zimwiki
+%{_datadir}/%{pkg_name}-%{version}/data/templates/definitions.typst
 %{_datadir}/%{pkg_name}-%{version}/data/templates/styles.citations.html
 %{_datadir}/%{pkg_name}-%{version}/data/templates/styles.html
+%{_datadir}/%{pkg_name}-%{version}/data/templates/template.typst
 %{_datadir}/%{pkg_name}-%{version}/data/translations/*.yaml
 
 %files devel -f %{name}-devel.files

++++++ pandoc-3.0.1.tar.gz -> pandoc-3.1.2.tar.gz ++++++
/work/SRC/openSUSE:Factory/ghc-pandoc/pandoc-3.0.1.tar.gz 
/work/SRC/openSUSE:Factory/.ghc-pandoc.new.19717/pandoc-3.1.2.tar.gz differ: 
char 14, line 1

Reply via email to