Skip to content

build(deps): bump the maven-minor-patch group across 1 directory with 20 updates#1555

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/maven/maven-minor-patch-52a4edc75c
Open

build(deps): bump the maven-minor-patch group across 1 directory with 20 updates#1555
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/maven/maven-minor-patch-52a4edc75c

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 22, 2026

Copy link
Copy Markdown
Contributor

Bumps the maven-minor-patch group with 20 updates in the / directory:

Package From To
net.sourceforge.plantuml:plantuml-bsd 1.2026.2 1.2026.6
org.apache.ant:ant 1.10.15 1.10.17
org.commonmark:commonmark 0.27.1 0.29.0
org.commonmark:commonmark-java 0.27.1 0.29.0
org.commonmark:commonmark-ext-gfm-tables 0.27.1 0.29.0
org.commonmark:commonmark-ext-yaml-front-matter 0.27.1 0.29.0
org.commonmark:commonmark-ext-gfm-strikethrough 0.27.1 0.29.0
org.commonmark:commonmark-ext-footnotes 0.27.1 0.29.0
com.github.javaparser:javaparser-core 3.28.0 3.28.2
org.jsoup:jsoup 1.22.1 1.22.2
org.testingisdocumenting.webtau:webtau-core-groovy 2.4 2.6.3
org.testingisdocumenting.webtau:webtau 2.4 2.6.3
org.testingisdocumenting.webtau:webtau-junit5 2.4 2.6.3
org.testingisdocumenting.webtau:webtau-core 2.4 2.6.3
org.testingisdocumenting.webtau:webtau-groovy 2.4 2.6.3
org.testingisdocumenting.webtau:webtau-browser 2.4 2.6.3
org.testingisdocumenting.webtau:webtau-maven-plugin 2.4 2.6.3
org.sonatype.central:central-publishing-maven-plugin 0.10.0 0.11.0
io.swagger.parser.v3:swagger-parser 2.1.39 2.1.44
org.apache.maven:maven-plugin-api 3.9.14 3.9.16

Updates net.sourceforge.plantuml:plantuml-bsd from 1.2026.2 to 1.2026.6

Release notes

Sourced from net.sourceforge.plantuml:plantuml-bsd's releases.

v1.2026.6

What's Changed

New Contributors

Full Changelog: plantuml/plantuml@v1.2026.5...v1.2026.6

v1.2026.5

What's Changed

New Contributors

Full Changelog: plantuml/plantuml@v1.2026.4...v1.2026.5

Release - Native Image (v1.2026.4)

Version v1.2026.4 of the 2026-05-20 at 20:36:00 (UTC)

This is a Native Image release of the latest development work.

Credit or GitHub Action used

v1.2026.4

What's Changed

... (truncated)

Changelog

Sourced from net.sourceforge.plantuml:plantuml-bsd's changelog.

V1.2026.6 (Jun 8, 2026)

V1.2026.5 (May 27, 2026)

V1.2026.4 (May 20, 2026)

... (truncated)

Commits
  • 6287b33 🎉 version 1.2026.6
  • ea7ef9f 👷 fix npm package: ship LICENSE, correct sideEffects and exports map
  • f85b3a0 🐛 fix NPE in SVG nested diagram
  • 6021e24 🚧 preparation for hour/minute/second precision gantts
  • 48c4b30 ⚗️ add experimental diagram_explain to the JS MCP server and flesh out comman...
  • fb5d69d 🐾 add errorLine in MCP check_syntax
  • 52a8090 ✨ add Node/JS MCP server (plantuml-mcp-js) and MCP engine plumbing
  • 0043b6b 👷 add MIT-flavored npm package assembly for @​plantuml/core
  • 269cba3 🍵 enable TeaVM JS build for the MIT license flavor (#2741)
  • c09f4b2 Bump org.sonarqube from 7.3.0.8198 to 7.3.1.8318 (#2738)
  • Additional commits viewable in compare view

Updates org.apache.ant:ant from 1.10.15 to 1.10.17

Updates org.commonmark:commonmark from 0.27.1 to 0.29.0

Release notes

Sourced from org.commonmark:commonmark's releases.

commonmark-java 0.29.0

Added

  • Support rendering GFM task list items to Markdown (#433)
  • Support rendering YAML front matter to Markdown (#434)
  • Alerts
    • Allow customizing HTML attributes for alert title <p> tag via AttributeProvider (#427)
    • New configuration for AlertsExtension to allow authors to provide custom titles per alert. See the custom titles section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow alerts to be nested within other blocks (including other alerts). See this section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow the set of alert types (including standard GFM types) to be completely overwritten. (#435)
      var extension = AlertsExtension.builder()
              .setAllowedTypes(Map.ofEntries(
                      Map.entry("IMPORTANT", "Important"),
                      Map.entry("WARNING", "Warning")
                      Map.entry("BUG", "Known Bug")
              ))
              .build();
    • Support rendering alerts to text (#437)

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

Sourced from org.commonmark:commonmark's changelog.

[0.29.0] - 2026-06-20

Added

  • Support rendering GFM task list items to Markdown (#433)
  • Support rendering YAML front matter to Markdown (#434)
  • Alerts
    • Allow customizing HTML attributes for alert title <p> tag via AttributeProvider (#427)
    • New configuration for AlertsExtension to allow authors to provide custom titles per alert. See the custom titles section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow alerts to be nested within other blocks (including other alerts). See this section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow the set of alert types (including standard GFM types) to be completely overwritten. (#435)
      var extension = AlertsExtension.builder()
              .setAllowedTypes(Map.ofEntries(
                      Map.entry("IMPORTANT", "Important"),
                      Map.entry("WARNING", "Warning")
                      Map.entry("BUG", "Known Bug")
              ))
              .build();
    • Support rendering alerts to text (#437)

[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.
Commits
  • 57cf9fd [maven-release-plugin] prepare release commonmark-parent-0.29.0
  • 4f6b66e Merge pull request #438 from commonmark/release-0.29.0
  • b0f4dbc mvn versions:set -DnewVersion=0.29.0-SNAPSHOT
  • c5f6bc9 Prepare CHANGELOG for version 0.29.0
  • 952ce9d Merge pull request #437 from rdestefa/issue-436-alerts-text-rendering
  • efc90bd Update CHANGELOG.md
  • 0117b82 Update AlertHtmlNodeRenderer.java
  • ffa682e Update AlertTextContentNodeRenderer.java
  • 717dedd Add Text Content Rendering Support for Alerts
  • b146e55 Merge pull request #435 from rdestefa/issue-431-disallow-github-alert-types
  • Additional commits viewable in compare view

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

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

Release notes

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

commonmark-java 0.29.0

Added

  • Support rendering GFM task list items to Markdown (#433)
  • Support rendering YAML front matter to Markdown (#434)
  • Alerts
    • Allow customizing HTML attributes for alert title <p> tag via AttributeProvider (#427)
    • New configuration for AlertsExtension to allow authors to provide custom titles per alert. See the custom titles section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow alerts to be nested within other blocks (including other alerts). See this section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow the set of alert types (including standard GFM types) to be completely overwritten. (#435)
      var extension = AlertsExtension.builder()
              .setAllowedTypes(Map.ofEntries(
                      Map.entry("IMPORTANT", "Important"),
                      Map.entry("WARNING", "Warning")
                      Map.entry("BUG", "Known Bug")
              ))
              .build();
    • Support rendering alerts to text (#437)

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

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

[0.29.0] - 2026-06-20

Added

  • Support rendering GFM task list items to Markdown (#433)
  • Support rendering YAML front matter to Markdown (#434)
  • Alerts
    • Allow customizing HTML attributes for alert title <p> tag via AttributeProvider (#427)
    • New configuration for AlertsExtension to allow authors to provide custom titles per alert. See the custom titles section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow alerts to be nested within other blocks (including other alerts). See this section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow the set of alert types (including standard GFM types) to be completely overwritten. (#435)
      var extension = AlertsExtension.builder()
              .setAllowedTypes(Map.ofEntries(
                      Map.entry("IMPORTANT", "Important"),
                      Map.entry("WARNING", "Warning")
                      Map.entry("BUG", "Known Bug")
              ))
              .build();
    • Support rendering alerts to text (#437)

[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.
Commits
  • 57cf9fd [maven-release-plugin] prepare release commonmark-parent-0.29.0
  • 4f6b66e Merge pull request #438 from commonmark/release-0.29.0
  • b0f4dbc mvn versions:set -DnewVersion=0.29.0-SNAPSHOT
  • c5f6bc9 Prepare CHANGELOG for version 0.29.0
  • 952ce9d Merge pull request #437 from rdestefa/issue-436-alerts-text-rendering
  • efc90bd Update CHANGELOG.md
  • 0117b82 Update AlertHtmlNodeRenderer.java
  • ffa682e Update AlertTextContentNodeRenderer.java
  • 717dedd Add Text Content Rendering Support for Alerts
  • b146e55 Merge pull request #435 from rdestefa/issue-431-disallow-github-alert-types
  • Additional commits viewable in compare view

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

Release notes

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

commonmark-java 0.29.0

Added

  • Support rendering GFM task list items to Markdown (#433)
  • Support rendering YAML front matter to Markdown (#434)
  • Alerts
    • Allow customizing HTML attributes for alert title <p> tag via AttributeProvider (#427)
    • New configuration for AlertsExtension to allow authors to provide custom titles per alert. See the custom titles section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow alerts to be nested within other blocks (including other alerts). See this section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow the set of alert types (including standard GFM types) to be completely overwritten. (#435)
      var extension = AlertsExtension.builder()
              .setAllowedTypes(Map.ofEntries(
                      Map.entry("IMPORTANT", "Important"),
                      Map.entry("WARNING", "Warning")
                      Map.entry("BUG", "Known Bug")
              ))
              .build();
    • Support rendering alerts to text (#437)

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

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

[0.29.0] - 2026-06-20

Added

  • Support rendering GFM task list items to Markdown (#433)
  • Support rendering YAML front matter to Markdown (#434)
  • Alerts
    • Allow customizing HTML attributes for alert title <p> tag via AttributeProvider (#427)
    • New configuration for AlertsExtension to allow authors to provide custom titles per alert. See the custom titles section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow alerts to be nested within other blocks (including other alerts). See this section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow the set of alert types (including standard GFM types) to be completely overwritten. (#435)
      var extension = AlertsExtension.builder()
              .setAllowedTypes(Map.ofEntries(
                      Map.entry("IMPORTANT", "Important"),
                      Map.entry("WARNING", "Warning")
                      Map.entry("BUG", "Known Bug")
              ))
              .build();
    • Support rendering alerts to text (#437)

[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.
Commits
  • 57cf9fd [maven-release-plugin] prepare release commonmark-parent-0.29.0
  • 4f6b66e Merge pull request #438 from commonmark/release-0.29.0
  • b0f4dbc mvn versions:set -DnewVersion=0.29.0-SNAPSHOT
  • c5f6bc9 Prepare CHANGELOG for version 0.29.0
  • 952ce9d Merge pull request #437 from rdestefa/issue-436-alerts-text-rendering
  • efc90bd Update CHANGELOG.md
  • 0117b82 Update AlertHtmlNodeRenderer.java
  • ffa682e Update AlertTextContentNodeRenderer.java
  • 717dedd Add Text Content Rendering Support for Alerts
  • b146e55 Merge pull request #435 from rdestefa/issue-431-disallow-github-alert-types
  • Additional commits viewable in compare view

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

Release notes

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

commonmark-java 0.29.0

Added

  • Support rendering GFM task list items to Markdown (#433)
  • Support rendering YAML front matter to Markdown (#434)
  • Alerts
    • Allow customizing HTML attributes for alert title <p> tag via AttributeProvider (#427)
    • New configuration for AlertsExtension to allow authors to provide custom titles per alert. See the custom titles section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow alerts to be nested within other blocks (including other alerts). See this section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow the set of alert types (including standard GFM types) to be completely overwritten. (#435)
      var extension = AlertsExtension.builder()
              .setAllowedTypes(Map.ofEntries(
                      Map.entry("IMPORTANT", "Important"),
                      Map.entry("WARNING", "Warning")
                      Map.entry("BUG", "Known Bug")
              ))
              .build();
    • Support rendering alerts to text (#437)

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

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

[0.29.0] - 2026-06-20

Added

  • Support rendering GFM task list items to Markdown (#433)
  • Support rendering YAML front matter to Markdown (#434)
  • Alerts
    • Allow customizing HTML attributes for alert title <p> tag via AttributeProvider (#427)
    • New configuration for AlertsExtension to allow authors to provide custom titles per alert. See the custom titles section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow alerts to be nested within other blocks (including other alerts). See this section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow the set of alert types (including standard GFM types) to be completely overwritten. (#435)
      var extension = AlertsExtension.builder()
              .setAllowedTypes(Map.ofEntries(
                      Map.entry("IMPORTANT", "Important"),
                      Map.entry("WARNING", "Warning")
                      Map.entry("BUG", "Known Bug")
              ))
              .build();
    • Support rendering alerts to text (#437)

[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.
Commits
  • 57cf9fd [maven-release-plugin] prepare release commonmark-parent-0.29.0
  • 4f6b66e Merge pull request #438 from commonmark/release-0.29.0
  • b0f4dbc mvn versions:set -DnewVersion=0.29.0-SNAPSHOT
  • c5f6bc9 Prepare CHANGELOG for version 0.29.0
  • 952ce9d Merge pull request #437 from rdestefa/issue-436-alerts-text-rendering
  • efc90bd Update CHANGELOG.md
  • 0117b82 Update AlertHtmlNodeRenderer.java
  • ffa682e Update AlertTextContentNodeRenderer.java
  • 717dedd Add Text Content Rendering Support for Alerts
  • b146e55 Merge pull request #435 from rdestefa/issue-431-disallow-github-alert-types
  • Additional commits viewable in compare view

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

Release notes

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

commonmark-java 0.29.0

Added

  • Support rendering GFM task list items to Markdown (#433)
  • Support rendering YAML front matter to Markdown (#434)
  • Alerts
    • Allow customizing HTML attributes for alert title <p> tag via AttributeProvider (#427)
    • New configuration for AlertsExtension to allow authors to provide custom titles per alert. See the custom titles section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow alerts to be nested within other blocks (including other alerts). See this section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow the set of alert types (including standard GFM types) to be completely overwritten. (#435)
      var extension = AlertsExtension.builder()
              .setAllowedTypes(Map.ofEntries(
                      Map.entry("IMPORTANT", "Important"),
                      Map.entry("WARNING", "Warning")
                      Map.entry("BUG", "Known Bug")
              ))
              .build();
    • Support rendering alerts to text (#437)

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

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

[0.29.0] - 2026-06-20

Added

  • Support rendering GFM task list items to Markdown (#433)
  • Support rendering YAML front matter to Markdown (#434)
  • Alerts
    • Allow customizing HTML attributes for alert title <p> tag via AttributeProvider (#427)
    • New configuration for AlertsExtension to allow authors to provide custom titles per alert. See the custom titles section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow alerts to be nested within other blocks (including other alerts). See this section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow the set of alert types (including standard GFM types) to be completely overwritten. (#435)
      var extension = AlertsExtension.builder()
              .setAllowedTypes(Map.ofEntries(
                      Map.entry("IMPORTANT", "Important"),
                      Map.entry("WARNING", "Warning")
                      Map.entry("BUG", "Known Bug")
              ))
              .build();
    • Support rendering alerts to text (#437)

[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.
Commits
  • 57cf9fd [maven-release-plugin] prepare release commonmark-parent-0.29.0
  • 4f6b66e Merge pull request #438 from commonmark/release-0.29.0
  • b0f4dbc mvn versions:set -DnewVersion=0.29.0-SNAPSHOT
  • c5f6bc9 Prepare CHANGELOG for version 0.29.0
  • 952ce9d Merge pull request #437 from rdestefa/issue-436-alerts-text-rendering
  • efc90bd Update CHANGELOG.md
  • 0117b82 Update AlertHtmlNodeRenderer.java
  • ffa682e Update AlertTextContentNodeRenderer.java
  • 717dedd Add Text Content Rendering Support for Alerts
  • b146e55 Merge pull request #435 from rdestefa/issue-431-disallow-github-alert-types
  • Additional commits viewable in compare view

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

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

Release notes

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

commonmark-java 0.29.0

Added

  • Support rendering GFM task list items to Markdown (#433)
  • Support rendering YAML front matter to Markdown (#434)
  • Alerts
    • Allow customizing HTML attributes for alert title <p> tag via AttributeProvider (#427)
    • New configuration for AlertsExtension to allow authors to provide custom titles per alert. See the custom titles section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow alerts to be nested within other blocks (including other alerts). See this section of the alerts README for more information. (#430)
    • New configuration for AlertsExtension to allow the set of alert types (including...

      Description has been truncated

… 20 updates

Bumps the maven-minor-patch group with 20 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [net.sourceforge.plantuml:plantuml-bsd](https://github.com/plantuml/plantuml) | `1.2026.2` | `1.2026.6` |
| org.apache.ant:ant | `1.10.15` | `1.10.17` |
| [org.commonmark:commonmark](https://github.com/commonmark/commonmark-java) | `0.27.1` | `0.29.0` |
| org.commonmark:commonmark-java | `0.27.1` | `0.29.0` |
| [org.commonmark:commonmark-ext-gfm-tables](https://github.com/commonmark/commonmark-java) | `0.27.1` | `0.29.0` |
| [org.commonmark:commonmark-ext-yaml-front-matter](https://github.com/commonmark/commonmark-java) | `0.27.1` | `0.29.0` |
| [org.commonmark:commonmark-ext-gfm-strikethrough](https://github.com/commonmark/commonmark-java) | `0.27.1` | `0.29.0` |
| [org.commonmark:commonmark-ext-footnotes](https://github.com/commonmark/commonmark-java) | `0.27.1` | `0.29.0` |
| [com.github.javaparser:javaparser-core](https://github.com/javaparser/javaparser) | `3.28.0` | `3.28.2` |
| [org.jsoup:jsoup](https://github.com/jhy/jsoup) | `1.22.1` | `1.22.2` |
| [org.testingisdocumenting.webtau:webtau-core-groovy](https://github.com/testingisdocumenting/webtau) | `2.4` | `2.6.3` |
| [org.testingisdocumenting.webtau:webtau](https://github.com/testingisdocumenting/webtau) | `2.4` | `2.6.3` |
| [org.testingisdocumenting.webtau:webtau-junit5](https://github.com/testingisdocumenting/webtau) | `2.4` | `2.6.3` |
| [org.testingisdocumenting.webtau:webtau-core](https://github.com/testingisdocumenting/webtau) | `2.4` | `2.6.3` |
| [org.testingisdocumenting.webtau:webtau-groovy](https://github.com/testingisdocumenting/webtau) | `2.4` | `2.6.3` |
| [org.testingisdocumenting.webtau:webtau-browser](https://github.com/testingisdocumenting/webtau) | `2.4` | `2.6.3` |
| [org.testingisdocumenting.webtau:webtau-maven-plugin](https://github.com/testingisdocumenting/webtau) | `2.4` | `2.6.3` |
| [org.sonatype.central:central-publishing-maven-plugin](https://github.com/sonatype/central-publishing-maven-plugin) | `0.10.0` | `0.11.0` |
| [io.swagger.parser.v3:swagger-parser](https://github.com/swagger-api/swagger-parser) | `2.1.39` | `2.1.44` |
| [org.apache.maven:maven-plugin-api](https://github.com/apache/maven) | `3.9.14` | `3.9.16` |



Updates `net.sourceforge.plantuml:plantuml-bsd` from 1.2026.2 to 1.2026.6
- [Release notes](https://github.com/plantuml/plantuml/releases)
- [Changelog](https://github.com/plantuml/plantuml/blob/master/CHANGES.md)
- [Commits](plantuml/plantuml@v1.2026.2...v1.2026.6)

Updates `org.apache.ant:ant` from 1.10.15 to 1.10.17

Updates `org.commonmark:commonmark` from 0.27.1 to 0.29.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.27.1...commonmark-parent-0.29.0)

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

Updates `org.commonmark:commonmark-ext-gfm-tables` from 0.27.1 to 0.29.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.27.1...commonmark-parent-0.29.0)

Updates `org.commonmark:commonmark-ext-yaml-front-matter` from 0.27.1 to 0.29.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.27.1...commonmark-parent-0.29.0)

Updates `org.commonmark:commonmark-ext-gfm-strikethrough` from 0.27.1 to 0.29.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.27.1...commonmark-parent-0.29.0)

Updates `org.commonmark:commonmark-ext-footnotes` from 0.27.1 to 0.29.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.27.1...commonmark-parent-0.29.0)

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

Updates `org.commonmark:commonmark-ext-gfm-tables` from 0.27.1 to 0.29.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.27.1...commonmark-parent-0.29.0)

Updates `org.commonmark:commonmark-ext-yaml-front-matter` from 0.27.1 to 0.29.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.27.1...commonmark-parent-0.29.0)

Updates `org.commonmark:commonmark-ext-gfm-strikethrough` from 0.27.1 to 0.29.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.27.1...commonmark-parent-0.29.0)

Updates `org.commonmark:commonmark-ext-footnotes` from 0.27.1 to 0.29.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.27.1...commonmark-parent-0.29.0)

Updates `com.github.javaparser:javaparser-core` from 3.28.0 to 3.28.2
- [Release notes](https://github.com/javaparser/javaparser/releases)
- [Changelog](https://github.com/javaparser/javaparser/blob/master/changelog.md)
- [Commits](javaparser/javaparser@javaparser-parent-3.28.0...javaparser-parent-3.28.2)

Updates `org.jsoup:jsoup` from 1.22.1 to 1.22.2
- [Release notes](https://github.com/jhy/jsoup/releases)
- [Changelog](https://github.com/jhy/jsoup/blob/master/CHANGES.md)
- [Commits](jhy/jsoup@jsoup-1.22.1...jsoup-1.22.2)

Updates `org.testingisdocumenting.webtau:webtau-core-groovy` from 2.4 to 2.6.3
- [Release notes](https://github.com/testingisdocumenting/webtau/releases)
- [Changelog](https://github.com/testingisdocumenting/webtau/blob/master/release.md)
- [Commits](testingisdocumenting/webtau@2.4...2.6.3)

Updates `org.testingisdocumenting.webtau:webtau` from 2.4 to 2.6.3
- [Release notes](https://github.com/testingisdocumenting/webtau/releases)
- [Changelog](https://github.com/testingisdocumenting/webtau/blob/master/release.md)
- [Commits](testingisdocumenting/webtau@2.4...2.6.3)

Updates `org.testingisdocumenting.webtau:webtau-junit5` from 2.4 to 2.6.3
- [Release notes](https://github.com/testingisdocumenting/webtau/releases)
- [Changelog](https://github.com/testingisdocumenting/webtau/blob/master/release.md)
- [Commits](testingisdocumenting/webtau@2.4...2.6.3)

Updates `org.testingisdocumenting.webtau:webtau-core` from 2.4 to 2.6.3
- [Release notes](https://github.com/testingisdocumenting/webtau/releases)
- [Changelog](https://github.com/testingisdocumenting/webtau/blob/master/release.md)
- [Commits](testingisdocumenting/webtau@2.4...2.6.3)

Updates `org.testingisdocumenting.webtau:webtau-groovy` from 2.4 to 2.6.3
- [Release notes](https://github.com/testingisdocumenting/webtau/releases)
- [Changelog](https://github.com/testingisdocumenting/webtau/blob/master/release.md)
- [Commits](testingisdocumenting/webtau@2.4...2.6.3)

Updates `org.testingisdocumenting.webtau:webtau-browser` from 2.4 to 2.6.3
- [Release notes](https://github.com/testingisdocumenting/webtau/releases)
- [Changelog](https://github.com/testingisdocumenting/webtau/blob/master/release.md)
- [Commits](testingisdocumenting/webtau@2.4...2.6.3)

Updates `org.testingisdocumenting.webtau:webtau-maven-plugin` from 2.4 to 2.6.3
- [Release notes](https://github.com/testingisdocumenting/webtau/releases)
- [Changelog](https://github.com/testingisdocumenting/webtau/blob/master/release.md)
- [Commits](testingisdocumenting/webtau@2.4...2.6.3)

Updates `org.testingisdocumenting.webtau:webtau` from 2.4 to 2.6.3
- [Release notes](https://github.com/testingisdocumenting/webtau/releases)
- [Changelog](https://github.com/testingisdocumenting/webtau/blob/master/release.md)
- [Commits](testingisdocumenting/webtau@2.4...2.6.3)

Updates `org.testingisdocumenting.webtau:webtau-junit5` from 2.4 to 2.6.3
- [Release notes](https://github.com/testingisdocumenting/webtau/releases)
- [Changelog](https://github.com/testingisdocumenting/webtau/blob/master/release.md)
- [Commits](testingisdocumenting/webtau@2.4...2.6.3)

Updates `org.testingisdocumenting.webtau:webtau-core` from 2.4 to 2.6.3
- [Release notes](https://github.com/testingisdocumenting/webtau/releases)
- [Changelog](https://github.com/testingisdocumenting/webtau/blob/master/release.md)
- [Commits](testingisdocumenting/webtau@2.4...2.6.3)

Updates `org.testingisdocumenting.webtau:webtau-groovy` from 2.4 to 2.6.3
- [Release notes](https://github.com/testingisdocumenting/webtau/releases)
- [Changelog](https://github.com/testingisdocumenting/webtau/blob/master/release.md)
- [Commits](testingisdocumenting/webtau@2.4...2.6.3)

Updates `org.testingisdocumenting.webtau:webtau-browser` from 2.4 to 2.6.3
- [Release notes](https://github.com/testingisdocumenting/webtau/releases)
- [Changelog](https://github.com/testingisdocumenting/webtau/blob/master/release.md)
- [Commits](testingisdocumenting/webtau@2.4...2.6.3)

Updates `org.sonatype.central:central-publishing-maven-plugin` from 0.10.0 to 0.11.0
- [Commits](https://github.com/sonatype/central-publishing-maven-plugin/commits)

Updates `io.swagger.parser.v3:swagger-parser` from 2.1.39 to 2.1.44
- [Release notes](https://github.com/swagger-api/swagger-parser/releases)
- [Commits](swagger-api/swagger-parser@v2.1.39...v2.1.44)

Updates `org.apache.maven:maven-plugin-api` from 3.9.14 to 3.9.16
- [Release notes](https://github.com/apache/maven/releases)
- [Commits](apache/maven@maven-3.9.14...maven-3.9.16)

Updates `org.testingisdocumenting.webtau:webtau-maven-plugin` from 2.4 to 2.6.3
- [Release notes](https://github.com/testingisdocumenting/webtau/releases)
- [Changelog](https://github.com/testingisdocumenting/webtau/blob/master/release.md)
- [Commits](testingisdocumenting/webtau@2.4...2.6.3)

---
updated-dependencies:
- dependency-name: net.sourceforge.plantuml:plantuml-bsd
  dependency-version: 1.2026.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-minor-patch
- dependency-name: org.apache.ant:ant
  dependency-version: 1.10.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-minor-patch
- dependency-name: org.commonmark:commonmark
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.commonmark:commonmark-java
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.commonmark:commonmark-ext-gfm-tables
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.commonmark:commonmark-ext-yaml-front-matter
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.commonmark:commonmark-ext-gfm-strikethrough
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.commonmark:commonmark-ext-footnotes
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.commonmark:commonmark-java
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.commonmark:commonmark-ext-gfm-tables
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.commonmark:commonmark-ext-yaml-front-matter
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.commonmark:commonmark-ext-gfm-strikethrough
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.commonmark:commonmark-ext-footnotes
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: com.github.javaparser:javaparser-core
  dependency-version: 3.28.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-minor-patch
- dependency-name: org.jsoup:jsoup
  dependency-version: 1.22.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-minor-patch
- dependency-name: org.testingisdocumenting.webtau:webtau-core-groovy
  dependency-version: 2.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.testingisdocumenting.webtau:webtau
  dependency-version: 2.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.testingisdocumenting.webtau:webtau-junit5
  dependency-version: 2.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.testingisdocumenting.webtau:webtau-core
  dependency-version: 2.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.testingisdocumenting.webtau:webtau-groovy
  dependency-version: 2.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.testingisdocumenting.webtau:webtau-browser
  dependency-version: 2.6.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.testingisdocumenting.webtau:webtau-maven-plugin
  dependency-version: 2.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.testingisdocumenting.webtau:webtau
  dependency-version: 2.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.testingisdocumenting.webtau:webtau-junit5
  dependency-version: 2.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.testingisdocumenting.webtau:webtau-core
  dependency-version: 2.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.testingisdocumenting.webtau:webtau-groovy
  dependency-version: 2.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.testingisdocumenting.webtau:webtau-browser
  dependency-version: 2.6.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: org.sonatype.central:central-publishing-maven-plugin
  dependency-version: 0.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
- dependency-name: io.swagger.parser.v3:swagger-parser
  dependency-version: 2.1.44
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-minor-patch
- dependency-name: org.apache.maven:maven-plugin-api
  dependency-version: 3.9.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-minor-patch
- dependency-name: org.testingisdocumenting.webtau:webtau-maven-plugin
  dependency-version: 2.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-minor-patch
...

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 Jun 22, 2026
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.

0 participants