Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 31, 2025

Bumps org.commonmark:commonmark from 0.24.0 to 0.27.0.

Release notes

Sourced from org.commonmark:commonmark's releases.

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 [email protected]
    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 table heading, matching GitHub's behavior. (#381)

Fixed

  • MarkdownRenderer: Fix precedence for nodeRendererFactory: Factories passed to the builder can now override rendering for core node types. (#368)
  • MarkdownRenderer: Fix exception with ordered lists with a long first number followed by a shorter one (#382)
  • Fix warning in Eclipse about "missing 'requires transitive'" (#358)
  • Fix Android incompatibility with requireNonNullElseGet (#369)
Changelog

Sourced from org.commonmark:commonmark's changelog.

[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 [email protected]
    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 table heading, matching GitHub's behavior. (#381)

Fixed

  • MarkdownRenderer: Fix precedence for nodeRendererFactory: Factories passed to the builder can now override rendering for core node types. (#368)
  • MarkdownRenderer: Fix exception with ordered lists with a long first number followed by a shorter one (#382)
  • Fix warning in Eclipse about "missing 'requires transitive'" (#358)
  • Fix Android incompatibility with requireNonNullElseGet (#369)
Commits
  • 70f6819 [maven-release-plugin] prepare release commonmark-parent-0.27.0
  • d2138af Merge pull request #407 from commonmark/release-0.27.0
  • 9fd4b9a Merge pull request #408 from commonmark/java-25
  • de91f05 Test on Java 25
  • c55b0ec Prepare for version 0.27.0
  • 76b2168 Prepare CHANGELOG for version 0.27.0
  • 2a4f4c4 Merge pull request #406 from rdestefa/issue-298-www-links
  • 889709c Typo
  • 53bf47d Fix Test Failure
  • e49094c Address PR Comments 2
  • Additional commits viewable in compare view

Dependabot compatibility score

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 [org.commonmark:commonmark](https://github.com/commonmark/commonmark-java) from 0.24.0 to 0.27.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.24.0...commonmark-parent-0.27.0)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the bot: dependencies update PRs that update a dependency file, used by Dependabot. label Oct 31, 2025
@dependabot dependabot bot requested a review from a team as a code owner October 31, 2025 08:05
@dependabot dependabot bot added the bot: dependencies update PRs that update a dependency file, used by Dependabot. label Oct 31, 2025
@dependabot dependabot bot requested review from adalpari and removed request for a team October 31, 2025 08:05
@dangermattic
Copy link
Collaborator

1 Warning
⚠️ PR is not assigned to a milestone.

Generated by 🚫 Danger

@sonarqubecloud
Copy link

@wpmobilebot
Copy link
Contributor

Project dependencies changes

list
! Upgraded Dependencies
org.commonmark:commonmark:0.27.0, (changed from 0.24.0)
tree
-\--- org.commonmark:commonmark:0.24.0
+\--- org.commonmark:commonmark:0.27.0

@wpmobilebot
Copy link
Contributor

App Icon📲 You can test the changes from this Pull Request in WordPress by scanning the QR code below to install the corresponding build.
App NameWordPress
FlavorJalapeno
Build TypeDebug
Versionpr22328-72cf74d
Commit72cf74d
Direct Downloadwordpress-prototype-build-pr22328-72cf74d.apk
Note: Google Login is not supported on these builds.

@wpmobilebot
Copy link
Contributor

App Icon📲 You can test the changes from this Pull Request in Jetpack by scanning the QR code below to install the corresponding build.
App NameJetpack
FlavorJalapeno
Build TypeDebug
Versionpr22328-72cf74d
Commit72cf74d
Direct Downloadjetpack-prototype-build-pr22328-72cf74d.apk
Note: Google Login is not supported on these builds.

@adalpari
Copy link
Contributor

adalpari commented Nov 4, 2025

Copy link
Contributor

@adalpari adalpari left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@adalpari adalpari merged commit 816297f into trunk Nov 4, 2025
24 of 25 checks passed
@adalpari adalpari deleted the dependabot/gradle/org.commonmark-commonmark-0.27.0 branch November 4, 2025 13:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bot: dependencies update PRs that update a dependency file, used by Dependabot.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants