Skip to content

Releases: kivikakk/cmark-gfm-hs

0.2.6

28 Aug 14:21
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.2.5...0.2.6

0.2.5

26 Sep 21:02
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.2.4...0.2.5

0.2.4

21 Sep 23:15
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.2.3...0.2.4

0.2.3

09 Mar 03:25
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.2.2...0.2.3

0.2.2

16 Sep 01:58
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.2.1...0.2.2

0.2.1

16 Sep 01:38
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.2.0...0.2.1

0.2.0

09 Apr 04:34
Compare
Choose a tag to compare

Pulls in upstream changes:

cmark 0.6 (08 Apr 2019)

  • Update to cmark 0.29.0.
  • Export optUnsafe. Note that the default is now to suppress
    potentially unsafe HTML; set optUnsafe to return to the old behavior.

Full Changelog: 0.1.8...0.2.0

0.1.8

14 Mar 02:40
Compare
Choose a tag to compare

Pulls in upstream changes:

cmark 0.5.6.3 (13 Mar 2019)

  • Use snoc instead of <> to add the null terminator.

cmark 0.5.6.2 (13 Mar 2019)

  • Ensure that withtext adds a null terminator (jgm#14).
    This fixes a regression due to PR jgm#13, which caused
    random content to appear in rendered TEXT nodes.

0.1.7

12 Mar 23:29
Compare
Choose a tag to compare
  • Update to cmark-gfm 0.28.3.gfm.20.

Also pulls in upstream changes:

cmark 0.5.6.1 (11 Mar 2019):

  • Fix CString memory leaks (Anders Kaseorg). The renderer functions return
    a malloc’d string which the caller is expected to free.

  • Fix use-after-free bugs (Anders Kaseorg). useAsCString frees the
    CString after the IO action finishes executing, so passing return as that
    action can never be correct. To make sure the CString gets freed at the
    right time, we need a “with”-style abstraction, not just a conversion
    function. While we’re here replace this with withCStringLen, which also
    makes fewer copies.

  • Show node type on error for unknown node type.

0.1.6

12 Mar 23:28
Compare
Choose a tag to compare
  • Update to cmark-gfm 0.28.3.gfm.18.
  • optUnsafe is now exposed, instead of optSafe.