Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump commonmark.version from 0.22.0 to 0.23.0 #40

Merged
merged 1 commit into from
Sep 19, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 17, 2024

Bumps commonmark.version from 0.22.0 to 0.23.0.
Updates org.commonmark:commonmark from 0.22.0 to 0.23.0

Changelog

Sourced from org.commonmark:commonmark's changelog.

[0.23.0] - 2024-09-16

Added

  • New extension for footnotes!
    • Syntax:
      Main text[^1]
      

      [^1]: Additional text in a footnote

    • Inline footnotes like ^[inline footnote] are also supported when enabled via an option in FootnotesExtension.Builder
    • Use class FootnotesExtension in artifact commonmark-ext-footnotes (#332)
  • New option omitSingleParagraphP in HtmlRenderer.Builder for not using <p> tags for when a document only has one paragraph (#150)
  • Support for custom link processing during inline parsing (e.g. [foo]), see Parser.Builder#linkProcessor
  • Support for extending inline parsing with custom inline content parsers. See Parser.Builder#customInlineContentParserFactory. This allows users/extensions to hook into inline parsing on a deeper level than before (e.g. with delimiter processors). It can be used to add support for math/latex formulas or other inline syntax. (#321)

Changed

  • The default DefaultUrlSanitizer now also allows data as a protocol. Use the constructor with a list to customize this. (#329)
  • LinkReferenceDefinition now extends Block (it was extending Node directly before)
  • MarkdownRenderer: Don't escape = text if it's the first node in a block (#335)

Fixed

  • Fix parsing of link reference definitions with incorrect title syntax (followed by characters other than space/tab). In that case, the title was set to the partially-parsed title and the source spans were wrong. (#315)
  • Fix source spans of blocks with lazy continuation lines (#337)
  • MarkdownRenderer: Preserve thematic break literals (#331)
Commits
  • 59aa908 [maven-release-plugin] prepare release commonmark-parent-0.23.0
  • 15bd59f Merge pull request #341 from commonmark/release-0.23
  • bc231e2 Prepare for version 0.23.0
  • 369dbab Prepare CHANGELOG for release 0.23
  • 0fb7a16 Merge pull request #340 from commonmark/issue-150-omit-single-paragraph-p
  • 8c819ab Add omitSingleParagraphP option to HtmlRenderer.Builder
  • db57101 Merge pull request #338 from commonmark/issue-335-md-escaping-equals
  • 3785185 Merge pull request #339 from commonmark/issue-337-lazy-continuation-line-sour...
  • 7be4204 Fix source spans of blocks with lazy continuation lines
  • 26d4df9 Don't escape = text if it's the first node in a block
  • Additional commits viewable in compare view

Updates org.commonmark:commonmark-ext-heading-anchor from 0.22.0 to 0.23.0

Changelog

Sourced from org.commonmark:commonmark-ext-heading-anchor's changelog.

[0.23.0] - 2024-09-16

Added

  • New extension for footnotes!
    • Syntax:
      Main text[^1]
      

      [^1]: Additional text in a footnote

    • Inline footnotes like ^[inline footnote] are also supported when enabled via an option in FootnotesExtension.Builder
    • Use class FootnotesExtension in artifact commonmark-ext-footnotes (#332)
  • New option omitSingleParagraphP in HtmlRenderer.Builder for not using <p> tags for when a document only has one paragraph (#150)
  • Support for custom link processing during inline parsing (e.g. [foo]), see Parser.Builder#linkProcessor
  • Support for extending inline parsing with custom inline content parsers. See Parser.Builder#customInlineContentParserFactory. This allows users/extensions to hook into inline parsing on a deeper level than before (e.g. with delimiter processors). It can be used to add support for math/latex formulas or other inline syntax. (#321)

Changed

  • The default DefaultUrlSanitizer now also allows data as a protocol. Use the constructor with a list to customize this. (#329)
  • LinkReferenceDefinition now extends Block (it was extending Node directly before)
  • MarkdownRenderer: Don't escape = text if it's the first node in a block (#335)

Fixed

  • Fix parsing of link reference definitions with incorrect title syntax (followed by characters other than space/tab). In that case, the title was set to the partially-parsed title and the source spans were wrong. (#315)
  • Fix source spans of blocks with lazy continuation lines (#337)
  • MarkdownRenderer: Preserve thematic break literals (#331)
Commits
  • 59aa908 [maven-release-plugin] prepare release commonmark-parent-0.23.0
  • 15bd59f Merge pull request #341 from commonmark/release-0.23
  • bc231e2 Prepare for version 0.23.0
  • 369dbab Prepare CHANGELOG for release 0.23
  • 0fb7a16 Merge pull request #340 from commonmark/issue-150-omit-single-paragraph-p
  • 8c819ab Add omitSingleParagraphP option to HtmlRenderer.Builder
  • db57101 Merge pull request #338 from commonmark/issue-335-md-escaping-equals
  • 3785185 Merge pull request #339 from commonmark/issue-337-lazy-continuation-line-sour...
  • 7be4204 Fix source spans of blocks with lazy continuation lines
  • 26d4df9 Don't escape = text if it's the first node in a block
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps `commonmark.version` from 0.22.0 to 0.23.0.

Updates `org.commonmark:commonmark` from 0.22.0 to 0.23.0
- [Release notes](https://github.com/commonmark/commonmark-java/releases)
- [Changelog](https://github.com/commonmark/commonmark-java/blob/main/CHANGELOG.md)
- [Commits](commonmark/commonmark-java@commonmark-parent-0.22.0...commonmark-parent-0.23.0)

Updates `org.commonmark:commonmark-ext-heading-anchor` from 0.22.0 to 0.23.0
- [Release notes](https://github.com/commonmark/commonmark-java/releases)
- [Changelog](https://github.com/commonmark/commonmark-java/blob/main/CHANGELOG.md)
- [Commits](commonmark/commonmark-java@commonmark-parent-0.22.0...commonmark-parent-0.23.0)

---
updated-dependencies:
- dependency-name: org.commonmark:commonmark
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.commonmark:commonmark-ext-heading-anchor
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Sep 17, 2024
@io7m io7m merged commit b7eab86 into develop Sep 19, 2024
5 checks passed
@dependabot dependabot bot deleted the dependabot/maven/develop/commonmark.version-0.23.0 branch September 19, 2024 09:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant