Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 24, 2026

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

Release notes

Sourced from org.commonmark:commonmark's releases.

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 is disallowed. Now, only the footnote is parsed and the outer link becomes plain text; this matches the behavior of links. (#400)

commonmark-java 0.25.1

Fixed

  • footnotes: Fix parsing of footnote definitions containing multiple paragraphs separated by blank lines. Before it only worked if paragraphs were separated by lines of 4 spaces. (#388)

commonmark-java 0.25.0

Added

  • Include OSGi metadata in jars (META-INF/MANIFEST.MF files) (#378)
  • More documentation with examples for Node classes (#370)

Changed

  • GitHub tables: Tables are now parsed even if there's no blank line before the

... (truncated)

Changelog

Sourced from org.commonmark:commonmark's changelog.

[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 is disallowed. Now, only the footnote is parsed and the outer link becomes plain text; this matches the behavior of links. (#400)

[0.25.1] - 2025-08-01

Fixed

  • footnotes: Fix parsing of footnote definitions containing multiple paragraphs separated by blank lines. Before it only worked if paragraphs were separated by lines of 4 spaces. (#388)

[0.25.0] - 2025-06-20

Added

  • Include OSGi metadata in jars (META-INF/MANIFEST.MF files) (#378)
  • More documentation with examples for Node classes (#370)

Changed

  • GitHub tables: Tables are now parsed even if there's no blank line before the

... (truncated)

Commits
  • cded1b1 [maven-release-plugin] prepare release commonmark-parent-0.27.1
  • eb7bac0 Prepare CHANGELOG for version 0.27.1
  • 582855d Merge pull request #417 from commonmark/issue-413
  • fc23e49 Merge pull request #418 from commonmark/fix-parse-brackets-opt
  • c946bfe Make nested brackets optimization more effective again
  • 67f8405 Make list holder classes innner classes
  • 2753bf2 TextContentRenderer: Fix nested lists on the same line
  • 353278c Merge pull request #416 from commonmark/issue-415
  • fd33435 Fix line break parsing after hard line break
  • 0418c83 Merge pull request #409 from zapek/patch-1
  • Additional commits viewable in compare view

Updates org.commonmark:commonmark-java from 0.23.0 to 0.27.1

Updates org.commonmark:commonmark-ext-gfm-tables from 0.23.0 to 0.27.1

Release notes

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

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 is disallowed. Now, only the footnote is parsed and the outer link becomes plain text; this matches the behavior of links. (#400)

commonmark-java 0.25.1

Fixed

  • footnotes: Fix parsing of footnote definitions containing multiple paragraphs separated by blank lines. Before it only worked if paragraphs were separated by lines of 4 spaces. (#388)

commonmark-java 0.25.0

Added

  • Include OSGi metadata in jars (META-INF/MANIFEST.MF files) (#378)
  • More documentation with examples for Node classes (#370)

Changed

  • GitHub tables: Tables are now parsed even if there's no blank line before the

... (truncated)

Changelog

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

[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 is disallowed. Now, only the footnote is parsed and the outer link becomes plain text; this matches the behavior of links. (#400)

[0.25.1] - 2025-08-01

Fixed

  • footnotes: Fix parsing of footnote definitions containing multiple paragraphs separated by blank lines. Before it only worked if paragraphs were separated by lines of 4 spaces. (#388)

[0.25.0] - 2025-06-20

Added

  • Include OSGi metadata in jars (META-INF/MANIFEST.MF files) (#378)
  • More documentation with examples for Node classes (#370)

Changed

  • GitHub tables: Tables are now parsed even if there's no blank line before the

... (truncated)

Commits
  • cded1b1 [maven-release-plugin] prepare release commonmark-parent-0.27.1
  • eb7bac0 Prepare CHANGELOG for version 0.27.1
  • 582855d Merge pull request #417 from commonmark/issue-413
  • fc23e49 Merge pull request #418 from commonmark/fix-parse-brackets-opt
  • c946bfe Make nested brackets optimization more effective again
  • 67f8405 Make list holder classes innner classes
  • 2753bf2 TextContentRenderer: Fix nested lists on the same line
  • 353278c Merge pull request #416 from commonmark/issue-415
  • fd33435 Fix line break parsing after hard line break
  • 0418c83 Merge pull request #409 from zapek/patch-1
  • Additional commits viewable in compare view

Updates org.commonmark:commonmark-ext-yaml-front-matter from 0.23.0 to 0.27.1

Release notes

Sourced from org.commonmark:commonmark-ext-yaml-front-matter's releases.

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 is disallowed. Now, only the footnote is parsed and the outer link becomes plain text; this matches the behavior of links. (#400)

commonmark-java 0.25.1

Fixed

  • footnotes: Fix parsing of footnote definitions containing multiple paragraphs separated by blank lines. Before it only worked if paragraphs were separated by lines of 4 spaces. (#388)

commonmark-java 0.25.0

Added

  • Include OSGi metadata in jars (META-INF/MANIFEST.MF files) (#378)
  • More documentation with examples for Node classes (#370)

Changed

  • GitHub tables: Tables are now parsed even if there's no blank line before the

... (truncated)

Changelog

Sourced from org.commonmark:commonmark-ext-yaml-front-matter's changelog.

[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 is disallowed. Now, only the footnote is parsed and the outer link becomes plain text; this matches the behavior of links. (#400)

[0.25.1] - 2025-08-01

Fixed

  • footnotes: Fix parsing of footnote definitions containing multiple paragraphs separated by blank lines. Before it only worked if paragraphs were separated by lines of 4 spaces. (#388)

[0.25.0] - 2025-06-20

Added

  • Include OSGi metadata in jars (META-INF/MANIFEST.MF files) (#378)
  • More documentation with examples for Node classes (#370)

Changed

  • GitHub tables: Tables are now parsed even if there's no blank line before the

... (truncated)

Commits
  • cded1b1 [maven-release-plugin] prepare release commonmark-parent-0.27.1
  • eb7bac0 Prepare CHANGELOG for version 0.27.1
  • 582855d Merge pull request #417 from commonmark/issue-413
  • fc23e49 Merge pull request #418 from commonmark/fix-parse-brackets-opt
  • c946bfe Make nested brackets optimization more effective again
  • 67f8405 Make list holder classes innner classes
  • 2753bf2 TextContentRenderer: Fix nested lists on the same line
  • 353278c Merge pull request #416 from commonmark/issue-415
  • fd33435 Fix line break parsing after hard line break
  • 0418c83 Merge pull request #409 from zapek/patch-1
  • Additional commits viewable in compare view

Updates org.commonmark:commonmark-ext-gfm-strikethrough from 0.23.0 to 0.27.1

Release notes

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

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 is disallowed. Now, only the footnote is parsed and the outer link becomes plain text; this matches the behavior of links. (#400)

commonmark-java 0.25.1

Fixed

  • footnotes: Fix parsing of footnote definitions containing multiple paragraphs separated by blank lines. Before it only worked if paragraphs were separated by lines of 4 spaces. (#388)

commonmark-java 0.25.0

Added

  • Include OSGi metadata in jars (META-INF/MANIFEST.MF files) (#378)
  • More documentation with examples for Node classes (#370)

Changed

  • GitHub tables: Tables are now parsed even if there's no blank line before the

... (truncated)

Changelog

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

[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 is disallowed. Now, only the footnote is parsed and the outer link becomes plain text; this matches the behavior of links. (#400)

[0.25.1] - 2025-08-01

Fixed

  • footnotes: Fix parsing of footnote definitions containing multiple paragraphs separated by blank lines. Before it only worked if paragraphs were separated by lines of 4 spaces. (#388)

[0.25.0] - 2025-06-20

Added

  • Include OSGi metadata in jars (META-INF/MANIFEST.MF files) (#378)
  • More documentation with examples for Node classes (#370)

Changed

  • GitHub tables: Tables are now parsed even if there's no blank line before the

... (truncated)

Commits
  • cded1b1 [maven-release-plugin] prepare release commonmark-parent-0.27.1
  • eb7bac0 Prepare CHANGELOG for version 0.27.1
  • 582855d Merge pull request #417 from commonmark/issue-413
  • fc23e49 Merge pull request #418 from commonmark/fix-parse-brackets-opt
  • c946bfe Make nested brackets optimization more effective again
  • 67f8405 Make list holder classes innner classes
  • 2753bf2 TextContentRenderer: Fix nested lists on the same line
  • 353278c Merge pull request #416 from commonmark/issue-415
  • fd33435 Fix line break parsing after hard line break
  • 0418c83 Merge pull request #409 from zapek/patch-1
  • Additional commits viewable in compare view

Updates org.commonmark:commonmark-ext-footnotes from 0.23.0 to 0.27.1

Release notes

Sourced from org.commonmark:commonmark-ext-footnotes's releases.

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 is disallowed. Now, only the footnote is parsed and the outer link becomes plain text; this matches the behavior of links. (#400)

commonmark-java 0.25.1

Fixed

  • footnotes: Fix parsing of footnote definitions containing multiple paragraphs separated by blank lines. Before it only worked if paragraphs were separated by lines of 4 spaces. (#388)

commonmark-java 0.25.0

Added

  • Include OSGi metadata in jars (META-INF/MANIFEST.MF files) (#378)
  • More documentation with examples for Node classes (#370)

Changed

  • GitHub tables: Tables are now parsed even if there's no blank line before the

... (truncated)

Changelog

Sourced from org.commonmark:commonmark-ext-footnotes's changelog.

[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 is disallowed. Now, only the footnote is parsed and the outer link becomes plain text; this matches the behavior of links. (#400)

[0.25.1] - 2025-08-01

Fixed

  • footnotes: Fix parsing of footnote definitions containing multiple paragraphs separated by blank lines. Before it only worked if paragraphs were separated by lines of 4 spaces. (#388)

[0.25.0] - 2025-06-20

Added

  • Include OSGi metadata in jars (META-INF/MANIFEST.MF files) (#378)
  • More documentation with examples for Node classes (#370)

Changed

  • GitHub tables: Tables are now parsed even if there's no blank line before the

... (truncated)

Commits
  • cded1b1 [maven-release-plugin] prepare release commonmark-parent-0.27.1
  • eb7bac0 Prepare CHANGELOG for version 0.27.1
  • 582855d Merge pull request #417 from commonmark/issue-413
  • fc23e49 Merge pull request #418 from commonmark/fix-parse-brackets-opt
  • c946bfe Make nested brackets optimization more effective again
  • 67f8405 Make list holder classes innner classes
  • 2753bf2 TextContentRenderer: Fix nested lists on the same line
  • 353278c Merge pull request #416 from commonmark/issue-415
  • fd33435 Fix line break parsing after hard line break
  • 0418c83 Merge pull request #409 from zapek/patch-1
  • 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)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jan 24, 2026
@dependabot dependabot bot force-pushed the dependabot/maven/commonmark.version-0.27.1 branch from b5c2ddc to 5e8446e Compare January 24, 2026 23:01
Bumps `commonmark.version` from 0.23.0 to 0.27.1.

Updates `org.commonmark:commonmark` from 0.23.0 to 0.27.1
- [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.23.0...commonmark-parent-0.27.1)

Updates `org.commonmark:commonmark-java` from 0.23.0 to 0.27.1

Updates `org.commonmark:commonmark-ext-gfm-tables` from 0.23.0 to 0.27.1
- [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.23.0...commonmark-parent-0.27.1)

Updates `org.commonmark:commonmark-ext-yaml-front-matter` from 0.23.0 to 0.27.1
- [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.23.0...commonmark-parent-0.27.1)

Updates `org.commonmark:commonmark-ext-gfm-strikethrough` from 0.23.0 to 0.27.1
- [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.23.0...commonmark-parent-0.27.1)

Updates `org.commonmark:commonmark-ext-footnotes` from 0.23.0 to 0.27.1
- [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.23.0...commonmark-parent-0.27.1)

---
updated-dependencies:
- dependency-name: org.commonmark:commonmark
  dependency-version: 0.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.commonmark:commonmark-java
  dependency-version: 0.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.commonmark:commonmark-ext-gfm-tables
  dependency-version: 0.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.commonmark:commonmark-ext-yaml-front-matter
  dependency-version: 0.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.commonmark:commonmark-ext-gfm-strikethrough
  dependency-version: 0.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.commonmark:commonmark-ext-footnotes
  dependency-version: 0.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/maven/commonmark.version-0.27.1 branch from 5e8446e to 8121110 Compare January 26, 2026 00:37
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