Skip to content

chore(deps): [WPB-9777] bump commonmark from 0.25.1 to 0.28.0#4721

Open
dependabot[bot] wants to merge 1 commit intodevelopfrom
dependabot/gradle/commonmark-0.28.0
Open

chore(deps): [WPB-9777] bump commonmark from 0.25.1 to 0.28.0#4721
dependabot[bot] wants to merge 1 commit intodevelopfrom
dependabot/gradle/commonmark-0.28.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 10, 2026

Bumps commonmark from 0.25.1 to 0.28.0.
Updates org.commonmark:commonmark from 0.25.1 to 0.28.0

Release notes

Sourced from org.commonmark:commonmark's releases.

commonmark-java 0.28.0

Added

  • New extension for alerts (aka callouts/admonitions)
    • Syntax:
      > [!NOTE]
      > The text of the note.
      
    • As types you can use NOTE, TIP, IMPORTANT, WARNING, CAUTION; or configure the extension to add additional ones.
    • Use class AlertsExtension in artifact commonmark-ext-gfm-alerts (#420)
  • New option maxOpenBlockParsers for Parser.Builder to set an overall limit for the depth of block parsing. If set, any nesting beyond the limit will be parsed as paragraph text instead. The default remains unlimited.

commonmark-java 0.27.1

Fixed

  • Line(s) after a hard line break would sometimes also get an unwanted hard line break, e.g. if they ended in emphasis or other non-text inlines (#415)
  • TextContentRenderer (for plain text): Fix nested lists on the same line (#413)
  • Fix minor performance regression with pathological input (deeply nested brackets) that was introduced in version 0.23.0.

commonmark-java 0.27.0

Added

  • Autolink extension: Now supports configuration of different link types that should be recognized and converted to links. See AutolinkExtension#builder

    Type Default? Description
    URL Yes URL with a protocol such as https://example.com
    EMAIL Yes Email address such as foo@example.com
    WWW Yes Address beginning with www such as www.example.com

    Note that this changes the behavior of AutolinkExtension.create() to now also include WWW links by default. To re-enable the previous behavior, use:

    AutolinkExtension.builder().linkTypes(AutolinkType.URL, AutolinkType.EMAIL).build();

commonmark-java 0.26.0

Changed

  • A LinkProcessor using replaceWith now also stops outer links from being parsed as links, same as with wrapTextIn. This prevents nested links, see footnotes change below.

Fixed

  • Fix rendering of image alt text to include contents of code spans (`code`). (#398)
  • footnotes: Fix footnotes nested within links. Before, both the link and the footnote reference would be parsed and lead to nested <a> elements, which

... (truncated)

Changelog

Sourced from org.commonmark:commonmark's changelog.

[0.28.0] - 2026-03-31

Added

  • New extension for alerts (aka callouts/admonitions)
    • Syntax:
      > [!NOTE]
      > The text of the note.
      
    • As types you can use NOTE, TIP, IMPORTANT, WARNING, CAUTION; or configure the extension to add additional ones.
    • Use class AlertsExtension in artifact commonmark-ext-gfm-alerts (#420)
  • New option maxOpenBlockParsers for Parser.Builder to set an overall limit for the depth of block parsing. If set, any nesting beyond the limit will be parsed as paragraph text instead. The default remains unlimited.

[0.27.1] - 2026-01-14

Fixed

  • Line(s) after a hard line break would sometimes also get an unwanted hard line break, e.g. if they ended in emphasis or other non-text inlines (#415)
  • TextContentRenderer (for plain text): Fix nested lists on the same line (#413)
  • Fix minor performance regression with pathological input (deeply nested brackets) that was introduced in version 0.23.0.

[0.27.0] - 2025-10-12

Added

  • Autolink extension: Now supports configuration of different link types that should be recognized and converted to links. See AutolinkExtension#builder

    Type Default? Description
    URL Yes URL with a protocol such as https://example.com
    EMAIL Yes Email address such as foo@example.com
    WWW Yes Address beginning with www such as www.example.com

    Note that this changes the behavior of AutolinkExtension.create() to now also include WWW links by default. To re-enable the previous behavior, use:

    AutolinkExtension.builder().linkTypes(AutolinkType.URL, AutolinkType.EMAIL).build();

[0.26.0] - 2025-09-13

Changed

  • A LinkProcessor using replaceWith now also stops outer links from being parsed as links, same as with wrapTextIn. This prevents nested links, see footnotes change below.

Fixed

  • Fix rendering of image alt text to include contents of code spans (`code`). (#398)
  • footnotes: Fix footnotes nested within links. Before, both the link and the footnote reference would be parsed and lead to nested <a> elements, which

... (truncated)

Commits
  • 9e30657 [maven-release-plugin] prepare release commonmark-parent-0.28.0
  • 75f6a97 Merge pull request #424 from commonmark/release-0.28.0
  • d278947 mvn versions:set -DnewVersion=0.28.0-SNAPSHOT
  • 873a861 Prepare CHANGELOG for version 0.28.0
  • 53a6365 Merge pull request #423 from commonmark/alerts-followup
  • 6621065 Add alerts extension to integration tests
  • e2e2755 README: Add section about alerts
  • 471e639 Merge pull request #420 from ia3andy/gfm-alerts
  • 61200f9 Update commonmark-ext-gfm-alerts/src/main/java/org/commonmark/ext/gfm/alerts/...
  • f40ff54 Merge pull request #422 from spirit-at-canva/spirit-add-node-depth-limit
  • Additional commits viewable in compare view

Updates org.commonmark:commonmark-ext-gfm-strikethrough from 0.25.1 to 0.28.0

Release notes

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

commonmark-java 0.28.0

Added

  • New extension for alerts (aka callouts/admonitions)
    • Syntax:
      > [!NOTE]
      > The text of the note.
      
    • As types you can use NOTE, TIP, IMPORTANT, WARNING, CAUTION; or configure the extension to add additional ones.
    • Use class AlertsExtension in artifact commonmark-ext-gfm-alerts (#420)
  • New option maxOpenBlockParsers for Parser.Builder to set an overall limit for the depth of block parsing. If set, any nesting beyond the limit will be parsed as paragraph text instead. The default remains unlimited.

commonmark-java 0.27.1

Fixed

  • Line(s) after a hard line break would sometimes also get an unwanted hard line break, e.g. if they ended in emphasis or other non-text inlines (#415)
  • TextContentRenderer (for plain text): Fix nested lists on the same line (#413)
  • Fix minor performance regression with pathological input (deeply nested brackets) that was introduced in version 0.23.0.

commonmark-java 0.27.0

Added

  • Autolink extension: Now supports configuration of different link types that should be recognized and converted to links. See AutolinkExtension#builder

    Type Default? Description
    URL Yes URL with a protocol such as https://example.com
    EMAIL Yes Email address such as foo@example.com
    WWW Yes Address beginning with www such as www.example.com

    Note that this changes the behavior of AutolinkExtension.create() to now also include WWW links by default. To re-enable the previous behavior, use:

    AutolinkExtension.builder().linkTypes(AutolinkType.URL, AutolinkType.EMAIL).build();

commonmark-java 0.26.0

Changed

  • A LinkProcessor using replaceWith now also stops outer links from being parsed as links, same as with wrapTextIn. This prevents nested links, see footnotes change below.

Fixed

  • Fix rendering of image alt text to include contents of code spans (`code`). (#398)
  • footnotes: Fix footnotes nested within links. Before, both the link and the footnote reference would be parsed and lead to nested <a> elements, which

... (truncated)

Changelog

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

[0.28.0] - 2026-03-31

Added

  • New extension for alerts (aka callouts/admonitions)
    • Syntax:
      > [!NOTE]
      > The text of the note.
      
    • As types you can use NOTE, TIP, IMPORTANT, WARNING, CAUTION; or configure the extension to add additional ones.
    • Use class AlertsExtension in artifact commonmark-ext-gfm-alerts (#420)
  • New option maxOpenBlockParsers for Parser.Builder to set an overall limit for the depth of block parsing. If set, any nesting beyond the limit will be parsed as paragraph text instead. The default remains unlimited.

[0.27.1] - 2026-01-14

Fixed

  • Line(s) after a hard line break would sometimes also get an unwanted hard line break, e.g. if they ended in emphasis or other non-text inlines (#415)
  • TextContentRenderer (for plain text): Fix nested lists on the same line (#413)
  • Fix minor performance regression with pathological input (deeply nested brackets) that was introduced in version 0.23.0.

[0.27.0] - 2025-10-12

Added

  • Autolink extension: Now supports configuration of different link types that should be recognized and converted to links. See AutolinkExtension#builder

    Type Default? Description
    URL Yes URL with a protocol such as https://example.com
    EMAIL Yes Email address such as foo@example.com
    WWW Yes Address beginning with www such as www.example.com

    Note that this changes the behavior of AutolinkExtension.create() to now also include WWW links by default. To re-enable the previous behavior, use:

    AutolinkExtension.builder().linkTypes(AutolinkType.URL, AutolinkType.EMAIL).build();

[0.26.0] - 2025-09-13

Changed

  • A LinkProcessor using replaceWith now also stops outer links from being parsed as links, same as with wrapTextIn. This prevents nested links, see footnotes change below.

Fixed

  • Fix rendering of image alt text to include contents of code spans (`code`). (#398)
  • footnotes: Fix footnotes nested within links. Before, both the link and the footnote reference would be parsed and lead to nested <a> elements, which

... (truncated)

Commits
  • 9e30657 [maven-release-plugin] prepare release commonmark-parent-0.28.0
  • 75f6a97 Merge pull request #424 from commonmark/release-0.28.0
  • d278947 mvn versions:set -DnewVersion=0.28.0-SNAPSHOT
  • 873a861 Prepare CHANGELOG for version 0.28.0
  • 53a6365 Merge pull request #423 from commonmark/alerts-followup
  • 6621065 Add alerts extension to integration tests
  • e2e2755 README: Add section about alerts
  • 471e639 Merge pull request #420 from ia3andy/gfm-alerts
  • 61200f9 Update commonmark-ext-gfm-alerts/src/main/java/org/commonmark/ext/gfm/alerts/...
  • f40ff54 Merge pull request #422 from spirit-at-canva/spirit-add-node-depth-limit
  • Additional commits viewable in compare view

Updates org.commonmark:commonmark-ext-gfm-tables from 0.25.1 to 0.28.0

Release notes

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

commonmark-java 0.28.0

Added

  • New extension for alerts (aka callouts/admonitions)
    • Syntax:
      > [!NOTE]
      > The text of the note.
      
    • As types you can use NOTE, TIP, IMPORTANT, WARNING, CAUTION; or configure the extension to add additional ones.
    • Use class AlertsExtension in artifact commonmark-ext-gfm-alerts (#420)
  • New option maxOpenBlockParsers for Parser.Builder to set an overall limit for the depth of block parsing. If set, any nesting beyond the limit will be parsed as paragraph text instead. The default remains unlimited.

commonmark-java 0.27.1

Fixed

  • Line(s) after a hard line break would sometimes also get an unwanted hard line break, e.g. if they ended in emphasis or other non-text inlines (#415)
  • TextContentRenderer (for plain text): Fix nested lists on the same line (#413)
  • Fix minor performance regression with pathological input (deeply nested brackets) that was introduced in version 0.23.0.

commonmark-java 0.27.0

Added

  • Autolink extension: Now supports configuration of different link types that should be recognized and converted to links. See AutolinkExtension#builder

    Type Default? Description
    URL Yes URL with a protocol such as https://example.com
    EMAIL Yes Email address such as foo@example.com
    WWW Yes Address beginning with www such as www.example.com

    Note that this changes the behavior of AutolinkExtension.create() to now also include WWW links by default. To re-enable the previous behavior, use:

    AutolinkExtension.builder().linkTypes(AutolinkType.URL, AutolinkType.EMAIL).build();

commonmark-java 0.26.0

Changed

  • A LinkProcessor using replaceWith now also stops outer links from being parsed as links, same as with wrapTextIn. This prevents nested links, see footnotes change below.

Fixed

  • Fix rendering of image alt text to include contents of code spans (`code`). (#398)
  • footnotes: Fix footnotes nested within links. Before, both the link and the footnote reference would be parsed and lead to nested <a> elements, which

... (truncated)

Changelog

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

[0.28.0] - 2026-03-31

Added

  • New extension for alerts (aka callouts/admonitions)
    • Syntax:
      > [!NOTE]
      > The text of the note.
      
    • As types you can use NOTE, TIP, IMPORTANT, WARNING, CAUTION; or configure the extension to add additional ones.
    • Use class AlertsExtension in artifact commonmark-ext-gfm-alerts (#420)
  • New option maxOpenBlockParsers for Parser.Builder to set an overall limit for the depth of block parsing. If set, any nesting beyond the limit will be parsed as paragraph text instead. The default remains unlimited.

[0.27.1] - 2026-01-14

Fixed

  • Line(s) after a hard line break would sometimes also get an unwanted hard line break, e.g. if they ended in emphasis or other non-text inlines (#415)
  • TextContentRenderer (for plain text): Fix nested lists on the same line (#413)
  • Fix minor performance regression with pathological input (deeply nested brackets) that was introduced in version 0.23.0.

[0.27.0] - 2025-10-12

Added

  • Autolink extension: Now supports configuration of different link types that should be recognized and converted to links. See AutolinkExtension#builder

    Type Default? Description
    URL Yes URL with a protocol such as https://example.com
    EMAIL Yes Email address such as foo@example.com
    WWW Yes Address beginning with www such as www.example.com

    Note that this changes the behavior of AutolinkExtension.create() to now also include WWW links by default. To re-enable the previous behavior, use:

    AutolinkExtension.builder().linkTypes(AutolinkType.URL, AutolinkType.EMAIL).build();

[0.26.0] - 2025-09-13

Changed

  • A LinkProcessor using replaceWith now also stops outer links from being parsed as links, same as with wrapTextIn. This prevents nested links, see footnotes change below.

Fixed

  • Fix rendering of image alt text to include contents of code spans (`code`). (#398)
  • footnotes: Fix footnotes nested within links. Before, both the link and the footnote reference would be parsed and lead to nested <a> elements, which

... (truncated)

Commits
  • 9e30657 [maven-release-plugin] prepare release commonmark-parent-0.28.0
  • 75f6a97 Merge pull request #424 from commonmark/release-0.28.0
  • d278947 mvn versions:set -DnewVersion=0.28.0-SNAPSHOT
  • 873a861 Prepare CHANGELOG for version 0.28.0
  • 53a6365 Merge pull request #423 from commonmark/alerts-followup
  • 6621065 Add alerts extension to integration tests
  • e2e2755 README: Add section about alerts
  • 471e639 Merge pull request #420 from ia3andy/gfm-alerts
  • 61200f9 Update commonmark-ext-gfm-alerts/src/main/java/org/commonmark/ext/gfm/alerts/...
  • f40ff54 Merge pull request #422 from spirit-at-canva/spirit-add-node-depth-limit
  • 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 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.25.1 to 0.28.0.

Updates `org.commonmark:commonmark` from 0.25.1 to 0.28.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.25.1...commonmark-parent-0.28.0)

Updates `org.commonmark:commonmark-ext-gfm-strikethrough` from 0.25.1 to 0.28.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.25.1...commonmark-parent-0.28.0)

Updates `org.commonmark:commonmark-ext-gfm-tables` from 0.25.1 to 0.28.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.25.1...commonmark-parent-0.28.0)

---
updated-dependencies:
- dependency-name: org.commonmark:commonmark
  dependency-version: 0.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.commonmark:commonmark-ext-gfm-strikethrough
  dependency-version: 0.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.commonmark:commonmark-ext-gfm-tables
  dependency-version: 0.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Apr 10, 2026
@dependabot dependabot bot requested a review from a team as a code owner April 10, 2026 14:04
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 10, 2026
@dependabot dependabot bot requested review from sbakhtiarov and typfel and removed request for a team April 10, 2026 14:04
@dependabot dependabot bot added the java Pull requests that update Java code label Apr 10, 2026
@sonarqubecloud
Copy link
Copy Markdown

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.

0 participants