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

chore(deps): [WPB-9777] bump commonmark from 0.22.0 to 0.24.0 #3696

Merged
merged 1 commit into from
Dec 4, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 2, 2024

Bumps commonmark from 0.22.0 to 0.24.0.
Updates org.commonmark:commonmark from 0.22.0 to 0.24.0

Release notes

Sourced from org.commonmark:commonmark's releases.

commonmark-java 0.24.0

Added

  • SourceSpan on nodes now have a getInputIndex to get the index within the original input string (in addition to the existing line/column indexes). This is useful when looking up the input source: It can now be done using substring instead of having to split the input into lines first (#348)
  • Configurable line break rendering for TextContentRenderer via lineBreakRendering on the builder; e.g. LineBreakRendering.SEPARATE_BLOCKS will render an empty line between blocks (#344)

Changed

  • Adopted small changes from OpenJDK vendoring to make updates easier for them (#343)

Fixed

  • Enable overriding of built-in node rendering for TextContentRenderer (#346)

commonmark-java 0.23.0

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)
Changelog

Sourced from org.commonmark:commonmark's changelog.

[0.24.0] - 2024-10-21

Added

  • SourceSpan on nodes now have a getInputIndex to get the index within the original input string (in addition to the existing line/column indexes). This is useful when looking up the input source: It can now be done using substring instead of having to split the input into lines first (#348)
  • Configurable line break rendering for TextContentRenderer via lineBreakRendering on the builder; e.g. LineBreakRendering.SEPARATE_BLOCKS will render an empty line between blocks (#344)

Changed

  • Adopted small changes from OpenJDK vendoring to make updates easier for them (#343)

Fixed

  • Enable overriding of built-in node rendering for TextContentRenderer (#346)

[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
  • 9a395ab [maven-release-plugin] prepare release commonmark-parent-0.24.0
  • c1d0326 Merge pull request #353 from commonmark/release-0.24
  • ea85a7d Prepare for version 0.24.0
  • 5e6a5cc Prepare CHANGELOG for release 0.24
  • 13cbd23 Merge pull request #352 from commonmark/java-23-ci
  • 8a379e2 Test on Java 23 as well
  • c5c9547 README: Add source positions section
  • 4e42065 Merge pull request #351 from commonmark/pom-license
  • e009031 Add license to core pom, use SPDX identifier
  • 159249c Merge pull request #348 from commonmark/source-position-input-index
  • Additional commits viewable in compare view

Updates org.commonmark:commonmark-ext-gfm-strikethrough from 0.22.0 to 0.24.0

Release notes

Sourced from org.commonmark:commonmark-ext-gfm-strikethrough's releases.

commonmark-java 0.24.0

Added

  • SourceSpan on nodes now have a getInputIndex to get the index within the original input string (in addition to the existing line/column indexes). This is useful when looking up the input source: It can now be done using substring instead of having to split the input into lines first (#348)
  • Configurable line break rendering for TextContentRenderer via lineBreakRendering on the builder; e.g. LineBreakRendering.SEPARATE_BLOCKS will render an empty line between blocks (#344)

Changed

  • Adopted small changes from OpenJDK vendoring to make updates easier for them (#343)

Fixed

  • Enable overriding of built-in node rendering for TextContentRenderer (#346)

commonmark-java 0.23.0

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)
Changelog

Sourced from org.commonmark:commonmark-ext-gfm-strikethrough's changelog.

[0.24.0] - 2024-10-21

Added

  • SourceSpan on nodes now have a getInputIndex to get the index within the original input string (in addition to the existing line/column indexes). This is useful when looking up the input source: It can now be done using substring instead of having to split the input into lines first (#348)
  • Configurable line break rendering for TextContentRenderer via lineBreakRendering on the builder; e.g. LineBreakRendering.SEPARATE_BLOCKS will render an empty line between blocks (#344)

Changed

  • Adopted small changes from OpenJDK vendoring to make updates easier for them (#343)

Fixed

  • Enable overriding of built-in node rendering for TextContentRenderer (#346)

[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
  • 9a395ab [maven-release-plugin] prepare release commonmark-parent-0.24.0
  • c1d0326 Merge pull request #353 from commonmark/release-0.24
  • ea85a7d Prepare for version 0.24.0
  • 5e6a5cc Prepare CHANGELOG for release 0.24
  • 13cbd23 Merge pull request #352 from commonmark/java-23-ci
  • 8a379e2 Test on Java 23 as well
  • c5c9547 README: Add source positions section
  • 4e42065 Merge pull request #351 from commonmark/pom-license
  • e009031 Add license to core pom, use SPDX identifier
  • 159249c Merge pull request #348 from commonmark/source-position-input-index
  • Additional commits viewable in compare view

Updates org.commonmark:commonmark-ext-gfm-tables from 0.22.0 to 0.24.0

Release notes

Sourced from org.commonmark:commonmark-ext-gfm-tables's releases.

commonmark-java 0.24.0

Added

  • SourceSpan on nodes now have a getInputIndex to get the index within the original input string (in addition to the existing line/column indexes). This is useful when looking up the input source: It can now be done using substring instead of having to split the input into lines first (#348)
  • Configurable line break rendering for TextContentRenderer via lineBreakRendering on the builder; e.g. LineBreakRendering.SEPARATE_BLOCKS will render an empty line between blocks (#344)

Changed

  • Adopted small changes from OpenJDK vendoring to make updates easier for them (#343)

Fixed

  • Enable overriding of built-in node rendering for TextContentRenderer (#346)

commonmark-java 0.23.0

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)
Changelog

Sourced from org.commonmark:commonmark-ext-gfm-tables's changelog.

[0.24.0] - 2024-10-21

Added

  • SourceSpan on nodes now have a getInputIndex to get the index within the original input string (in addition to the existing line/column indexes). This is useful when looking up the input source: It can now be done using substring instead of having to split the input into lines first (#348)
  • Configurable line break rendering for TextContentRenderer via lineBreakRendering on the builder; e.g. LineBreakRendering.SEPARATE_BLOCKS will render an empty line between blocks (#344)

Changed

  • Adopted small changes from OpenJDK vendoring to make updates easier for them (#343)

Fixed

  • Enable overriding of built-in node rendering for TextContentRenderer (#346)

[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
  • 9a395ab [maven-release-plugin] prepare release commonmark-parent-0.24.0
  • c1d0326 Merge pull request #353 from commonmark/release-0.24
  • ea85a7d Prepare for version 0.24.0
  • 5e6a5cc Prepare CHANGELOG for release 0.24
  • 13cbd23 Merge pull request #352 from commonmark/java-23-ci
  • 8a379e2 Test on Java 23 as well
  • c5c9547 README: Add source positions section
  • 4e42065 Merge pull request #351 from commonmark/pom-license
  • e009031 Add license to core pom, use SPDX identifier
  • 159249c Merge pull request #348 from commonmark/source-position-input-index
  • 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` from 0.22.0 to 0.24.0.

Updates `org.commonmark:commonmark` from 0.22.0 to 0.24.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.24.0)

Updates `org.commonmark:commonmark-ext-gfm-strikethrough` from 0.22.0 to 0.24.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.24.0)

Updates `org.commonmark:commonmark-ext-gfm-tables` from 0.22.0 to 0.24.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.24.0)

---
updated-dependencies:
- dependency-name: org.commonmark:commonmark
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.commonmark:commonmark-ext-gfm-strikethrough
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.commonmark:commonmark-ext-gfm-tables
  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 Dec 2, 2024
@dependabot dependabot bot requested review from a team, yamilmedina, alexandreferris, borichellow, MohamadJaara and damian-kaczmarek and removed request for a team December 2, 2024 23:18
Copy link

sonarcloud bot commented Dec 2, 2024

@MohamadJaara MohamadJaara added this pull request to the merge queue Dec 4, 2024
Merged via the queue into develop with commit b8d9515 Dec 4, 2024
11 of 14 checks passed
@MohamadJaara MohamadJaara deleted the dependabot/gradle/commonmark-0.24.0 branch December 4, 2024 13:55
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 size/XS
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants