Skip to content

Conversation

@renovate
Copy link

@renovate renovate bot commented May 5, 2024

This PR contains the following updates:

Package Type Update Change
pulldown-cmark dependencies minor 0.1.20.13.0

Release Notes

raphlinus/pulldown-cmark (pulldown-cmark)

v0.13.0

Compare Source

Breaking Changes

New Features

Bug Fixes and Code Enhancements

Docs

New Contributors

Full Changelog: pulldown-cmark/pulldown-cmark@v0.12.2...v0.13.0

v0.12.2: 0.12.2

Compare Source

What's Changed

New Contributors

Full Changelog: pulldown-cmark/pulldown-cmark@v0.12.1...v0.12.2

v0.12.1: 0.12.1

Compare Source

Security

New features

Developers

New Contributors

Full Changelog: pulldown-cmark/pulldown-cmark@v0.12.0...v0.12.1

v0.12.0: 0.12.0

Compare Source

Thanks to all contributors! This release mainly adds the long awaited commonmark-hs description lists (under a flag) and enables the blockquote kind in TagEnd reverted in 0.11.2.

Breaking changes

New features

Other changes

Full Changelog: pulldown-cmark/pulldown-cmark@v0.11.2...v0.12.0

v0.11.3: 0.11.3

Compare Source

Security

Full Changelog: pulldown-cmark/pulldown-cmark@v0.11.2...v0.11.3

v0.11.2

Compare Source

Revert BlockQuote kind to avoid breaking change.

v0.11.1

Compare Source

Thanks to all people involved in this release! The main change of this release is the reduction of the MSRV to 1.71.1, but it also includes a lot of bug fixes and a new mdBook for user-friendly documentation.

Breaking changes

What's Changed

New Contributors

Full Changelog: pulldown-cmark/pulldown-cmark@v0.11.0...v0.11.1

v0.11.0: 0.11.0

Compare Source

Finally, the so long awaited math mode is here! Enable the option to use it.

This release also includes other improvements and bugfixes, please see the changelog below for more details. Thanks to all contributors that has made possible this release!

Breaking changes

New features

  • Math mode

Bugfixes

New Contributors

Full Changelog: pulldown-cmark/pulldown-cmark@v0.10.3...v0.11.0

v0.10.3

Compare Source

The main change of this release is the simd feature was not being used in the escape functions since the version 0.10 due to a mistake during the separation of the crate pulldown-cmark-escape.

The crate pulldown-cmark-escape has been updated to the version 0.10.1.

What's Changed

Full Changelog: pulldown-cmark/pulldown-cmark@v0.10.2...v0.10.3

v0.10.2

New release with some fixes and improvements. Note the 0.10.1 is missing (yanked from crates.io) due to a conflict with the clap version and the Rust minimum version (1.74 now instead of 1.70).

Thanks to all people that contributed to this release!

What's Changed

New Contributors

Full Changelog: pulldown-cmark/pulldown-cmark@v0.10.0...v0.10.2

v0.10.0

Compare Source

This is a huge release after a a long time without a major release, with many bugfixes and several new features. Thanks to all people involved!

Breaking Changes

New Features

Bugfixes

Other Changes

New Contributors

Full Changelog: pulldown-cmark/pulldown-cmark@v0.9.6...v0.10.0

v0.9.6: 0.9.6

Compare Source

cargo build fails when --locked is passed for 0.9.4 and 0.9.5 #​833

v0.9.5: 0.9.5

Compare Source

Set range end to Paragraph if returned early because of footnote definition #​831

v0.9.4: 0.9.4

Compare Source

  • Allow footnote definitions to not be separated by blank lines #​825
  • chore: Update bitflags from 1.3.x to 2.x #​694

v0.9.3: 0.9.3

Compare Source

This patch prepares the release of the minor version 0.9.3. It's forked off 5c7881c and includes a cherry-pick of 48b5931.

Changelog

Parser

Even though this is a minor release, it changes changes how some inputs are parsed. These changes are made to comply with the CommonMark and GitHub Flavored Markdown specifications.

First, pulldown-cmark now supports strikethrough with a pair of single tildes in addition to double tildes, if the strikethrough option is enabled. For example, ~this~ is now equal to ~~this~~ and will be parsed like this.

The second change fixes a bug in the parser where a specific edge case with brackets and inline code ([`]`]) was incorrectly parsed as a link. This change should not affect most users of pulldown-cmark.

impl Debug for Everything

All public types in the pulldown-cmark library now implement the Debug trait.

PRs included in this release

New Contributors

Full Changelog: pulldown-cmark/pulldown-cmark@v0.9.2...v0.9.3

v0.9.2

Compare Source

This release includes fixes for a few panics and other minor bugs.

v0.9.1: 0.9.1

Compare Source

Fixes minor parsing bug in nested lists.

v0.9.0: 0.9.0

Compare Source

This release brings a number of changes.

New features

  • Thanks to @​lo48576, pulldown now optionally supports custom header ids and classes for headers. Set ENABLE_HEADING_ATTRIBUTES in the options to enable.
  • Users can now access reference definitions, information that was previously only exposed internally.
  • Pulldown is now CommonMark 0.30 compliant.

Changes

  • The function signature for the broken link callback has changed slightly to allow for FnMut functions.

There have also been a number of (small) parsing bug fixes.

v0.8.0: 0.8.0

Compare Source

This release brings support for markdown smart punctuation. Further, it comes with a renewed design for broken link callbacks. Finally, it fixes a few minor parsing bugs.

v0.7.2: 0.7.2

Compare Source

Changes:

  • Minor parsing fixes

v0.7.1

Compare Source

v0.7.0: 0.7.0

Compare Source

Minor parsing fixes and bug fixes. Now exposes the difference between delimited code blocks and indented code blocks.

v0.6.1

Compare Source

v0.6.0: 0.6.0

Compare Source

This is a backward incompatible release. However, most users will not experience any breakage. It also fixes some parser correctness bugs.

Breaking changes:

  • the get_offset method on the parser was removed. Its semantics were poorly defined and only provided users with the start offset of the next event. To get proper source mapping information which includes the entire source range for each event, upgrade the Parser to an OffsetIter using the into_offset_iter method. This produces an iterator over (Event, Range<usize>) tuples.
  • the Event::HtmlBlock and Event::InlineHTML event variants were removed. Inline HTML is now represented by regular HTML events.
  • horizontal rules are now events, and no longer (empty) tags.
  • Event::Header(i32) has been replaced by Event::Heading(u32).
  • the starting index of numbered lists is now represented by a u64 instead of a usize.
  • the FIRST_PASS option has been removed.

v0.5.3: 0.5.3

Compare Source

Changes:

  • Addresses rare panics in emphasis routine
  • Fixes some parser correctness issues
  • Small bugfixes

v0.5.2: 0.5.2

Compare Source

Changes:

  • bug fixes
  • improved parsing correctness

v0.5.1: 0.5.1

Compare Source

Changes:

  • removes last remaining unsafe block in default mode (without simd feature);
  • various bug fixes and guards against quadratic behavior;
  • very minor performance bumps.

v0.5.0: 0.5

Compare Source

Additions:

  • CommonMark 0.29 compatibility
  • SIMD accelerated parsers feature
  • Guards against known pathological inputs causing quadratic scanning time
  • Speed improvements

Changes:

  • Code spans are no longer tags, but are now events containing a single CowStr. This is a breaking change.

v0.4.1: 0.4.1

Compare Source

Minor release with a number of small bug fixes. No breaking changes.

v0.4.0: 0.4

Compare Source

New extensions (strikethrough, task lists), public CowStr and InlineStr and some small fixes.

This is not backward compatible with v0.3.0, but the changes should be very manageable.

v0.3.0

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/pulldown-cmark-0.x branch from 2b35f69 to 93eeee2 Compare May 23, 2024 05:40
@renovate renovate bot changed the title Update Rust crate pulldown-cmark to 0.10.0 Update Rust crate pulldown-cmark to 0.11.0 May 23, 2024
@renovate renovate bot force-pushed the renovate/pulldown-cmark-0.x branch from 93eeee2 to c2a2d6a Compare August 17, 2024 20:47
@renovate renovate bot changed the title Update Rust crate pulldown-cmark to 0.11.0 Update Rust crate pulldown-cmark to 0.12.0 Aug 17, 2024
@renovate renovate bot force-pushed the renovate/pulldown-cmark-0.x branch from c2a2d6a to e511e32 Compare February 15, 2025 11:07
@renovate renovate bot changed the title Update Rust crate pulldown-cmark to 0.12.0 Update Rust crate pulldown-cmark to 0.13.0 Feb 15, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants