Hello community,

here is the log from the commit of package pandoc for openSUSE:Factory checked 
in at 2020-11-12 22:45:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/pandoc (Old)
 and      /work/SRC/openSUSE:Factory/.pandoc.new.24930 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "pandoc"

Thu Nov 12 22:45:39 2020 rev:50 rq:847884 version:2.11.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/pandoc/pandoc.changes    2020-10-27 
19:03:27.710940426 +0100
+++ /work/SRC/openSUSE:Factory/.pandoc.new.24930/pandoc.changes 2020-11-12 
22:45:45.902540970 +0100
@@ -1,0 +2,144 @@
+Sun Nov  8 09:53:28 UTC 2020 - [email protected]
+
+- Update pandoc to version 2.11.1.1.
+  ## pandoc 2.11.1.1 (2020-11-07)
+
+    * Citeproc: improve punctuation in in-text note citations (#6813).
+      Previously in-text note citations inside a footnote would sometimes have
+      the final period stripped, even if it was needed (e.g. on the end of
+      'ibid').
+
+    * Use citeproc 0.1.1.1.  This improves the decision about when
+      to use `ibid` in cases where citations are used inside
+      a footnote (#6813).
+
+    * Support `nocase` spans for `csljson` output.
+
+    * Require latest commonmark, commonmark-extensions.
+      This fixes a bug with `autolink_bare_uris` and commonmark.
+
+    * LaTeX reader: better handling of `\\` inside math in table cells (#6811).
+
+    * DokuWiki writer:  translate language names for code elements
+      and improve whitespace (#6807).
+
+    * MediaWiki writer: use `syntaxhighlight` tag instead of deprecated
+      `source` for highlighted code (#6810).  Also support `startFrom`
+      attribute and `numberLines`.
+
+    * Lint code in PRs and when committing to master (#6790,
+      Albert Krewinkel).
+
+    * doc/filters.md: describe technical details of filter invocations (#6815,
+      Albert Krewinkel).
+
+-------------------------------------------------------------------
+Sat Nov  7 15:35:11 UTC 2020 - [email protected]
+
+- Update pandoc to version 2.11.1.
+  ## pandoc 2.11.1 (2020-11-03)
+
+    * DocBook Reader: fix duplicate bibliography bug (#6773, Nils Carlson).
+
+    * HTML reader:
+
+      + Parse contents of iframes (#6770).
+      + Parse inline svg as image unless `raw_html` is set in the reader (in
+        which case the svg is passed through as raw HTML) (#6770).
+
+    * LaTeX reader:
+
+      + Fix bug parsing macro arguments (#6796).  If `\cL` is
+        defined as `\mathcal{L}`, and `\til` as `\tilde{#1}`, then
+        `\til\cL` should expand to `\tilde{\mathcal{L}}`, but
+        pandoc was expanding it to `\tilde\mathcal{L}`.  This is
+        fixed by parsing the arguments in "verbatim mode" when the
+        macro expands arguments at the point of use.
+      + Properly support optional (cite) argument for
+        `\blockquote` from `csquotes` (#6802).
+
+    * LaTeX writer: Improved calculation of table column widths.
+      We now have LaTeX do the calculation, using `\tabcolsep`.
+      So we should now have accurate relative column widths no
+      matter what the text width.  The default template has been modified to 
load
+      the calc package if tables are used.
+
+    * HTML writer: Fix duplicate "class" attribute for table
+      rows (Andy Morris).
+
+    * Text.Pandoc.Filter: allow shorter YAML representation of Citeproc
+      (Albert Krewinkel).  The map-based YAML representation of filters expects
+      `type` and `path` fields. The path field had to be present for all filter
+      types, but is not used for citeproc filters. The field can now be omitted
+      when type is "citeproc", as described in the MANUAL.
+
+    * Text.Pandoc.Error: Add `PandocBibliographyError` constructor
+      for `PandocError` [API change].  This ensures that bibliography parsing
+      errors generate messages that include the bibliography file name --
+      otherwise it can be quite mysterious where it is coming from.
+
+    * Citeproc: properly handle `csl` field with `data:` URI (#6783).
+      This is used with the JATS writer, so this fixes a regression
+      in pandoc 2.11 with JATS output and citeproc.
+
+    * Allow `citation-abbreviations` in defaults file.
+
+    * JATS templates: ensure `jats_publishing` output is valid
+      (Albert Krewinkel).
+
+    * LaTeX template:  Fix `CSLRightInline`, so that it does not
+      run over the right margin.
+
+    * HTML template: default CSS tweaks (Mauro Bieg and John
+      MacFarlane).
+
+      - Fix margin before codeblock
+      - Add `monobackgroundcolor` variable, making the background color
+        and padding of code optional.
+      - Ensure that backgrounds from highlighting styles take precedence over
+        monobackgroundcolor
+      - Remove list markers from TOC
+      - Add margin-bottom where needed
+      - Remove italics from blockquote styling
+      - Change borders and spacing in tables to be more consistent with other
+         output formats
+      - Style h5, h6
+      - Set font-size for print media to 12pt.
+      - Reduce interline space.
+      - Reduce interparagraph space.
+      - Reduce line width.
+      - Remove the special `line-height: 1` for table cells.
+      - Remove the special line-height for pre.
+      - Ensure that there is a bit more space before a heading
+        than after.
+      - Slightly reduced space after title header.
+      - Add CSS example to MANUAL
+
+    * man template:  Change comment that triggers `tbl` from
+      `.\"t` to `'\" t`, as specified in groff_man(7) (#6803).
+
+    * Use latest commonmark, commonmark-extensions.
+      This fixes a bug with nested blocks in footnotes with the
+      `footnote` extension to `commonmark`.  See jgm/commonmark-hs#63.
+
+    * Citeproc: use comma for in-text citations inside footnotes.
+      When an author-in-text citation like `@foo` occurs in a footnote,
+      we now render it with:  `AUTHOR NAME + COMMA + SPACE + REST`.
+      Previously we rendered: `AUTHOR NAME + SPACE + "(" + REST + ")"`.
+      This gives better results.  Note that normal citations are still
+      rendered in parentheses.
+
+    * Use latest citeproc:
+
+      + citeproc no longer capitalizes notes, so we do it
+        in pandoc when appropriate.
+      + Closes #6783.
+
+    * Clarify manual on `--track-changes` (#6801).
+
+    * Add `doc/jats.md` to document pandoc's handling of JATS
+      (#6794, Albert Krewinkel).
+
+    * Fix code example in lua-filters.md (#6795).
+
+-------------------------------------------------------------------

Old:
----
  pandoc-2.11.0.4.tar.gz

New:
----
  pandoc-2.11.1.1.tar.gz

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

Other differences:
------------------
++++++ pandoc.spec ++++++
--- /var/tmp/diff_new_pack.6fev1p/_old  2020-11-12 22:45:47.174542299 +0100
+++ /var/tmp/diff_new_pack.6fev1p/_new  2020-11-12 22:45:47.178542302 +0100
@@ -19,7 +19,7 @@
 %global pkg_name pandoc
 %bcond_with tests
 Name:           %{pkg_name}
-Version:        2.11.0.4
+Version:        2.11.1.1
 Release:        0
 Summary:        Conversion between markup formats
 License:        GPL-2.0-or-later

++++++ pandoc-2.11.0.4.tar.gz -> pandoc-2.11.1.1.tar.gz ++++++
/work/SRC/openSUSE:Factory/pandoc/pandoc-2.11.0.4.tar.gz 
/work/SRC/openSUSE:Factory/.pandoc.new.24930/pandoc-2.11.1.1.tar.gz differ: 
char 31, line 1
_______________________________________________
openSUSE Commits mailing list -- [email protected]
To unsubscribe, email [email protected]
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives: 
https://lists.opensuse.org/archives/list/[email protected]

Reply via email to