Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the all group with 3 updates #960

Merged
merged 1 commit into from
Sep 23, 2024
Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 23, 2024

Bumps the all group with 3 updates: org.commonmark:commonmark, org.commonmark:commonmark-ext-gfm-tables and org.jetbrains.kotlinx:kotlinx-serialization-hocon.

Updates org.commonmark:commonmark from 0.22.0 to 0.23.0

Release notes

Sourced from org.commonmark:commonmark's releases.

commonmark-java 0.23.0

Added

  • New extension for footnotes!
    • Syntax:
      Main text[^1]
      

      [^1]: Additional text in a footnote

    • Inline footnotes like ^[inline footnote] are also supported when enabled via an option in FootnotesExtension.Builder
    • Use class FootnotesExtension in artifact commonmark-ext-footnotes (#332)
  • New option omitSingleParagraphP in HtmlRenderer.Builder for not using <p> tags for when a document only has one paragraph (#150)
  • Support for custom link processing during inline parsing (e.g. [foo]), see Parser.Builder#linkProcessor
  • Support for extending inline parsing with custom inline content parsers. See Parser.Builder#customInlineContentParserFactory. This allows users/extensions to hook into inline parsing on a deeper level than before (e.g. with delimiter processors). It can be used to add support for math/latex formulas or other inline syntax. (#321)

Changed

  • The default DefaultUrlSanitizer now also allows data as a protocol. Use the constructor with a list to customize this. (#329)
  • LinkReferenceDefinition now extends Block (it was extending Node directly before)
  • MarkdownRenderer: Don't escape = text if it's the first node in a block (#335)

Fixed

  • Fix parsing of link reference definitions with incorrect title syntax (followed by characters other than space/tab). In that case, the title was set to the partially-parsed title and the source spans were wrong. (#315)
  • Fix source spans of blocks with lazy continuation lines (#337)
  • MarkdownRenderer: Preserve thematic break literals (#331)
Changelog

Sourced from org.commonmark:commonmark's changelog.

[0.23.0] - 2024-09-16

Added

  • New extension for footnotes!
    • Syntax:
      Main text[^1]
      

      [^1]: Additional text in a footnote

    • Inline footnotes like ^[inline footnote] are also supported when enabled via an option in FootnotesExtension.Builder
    • Use class FootnotesExtension in artifact commonmark-ext-footnotes (#332)
  • New option omitSingleParagraphP in HtmlRenderer.Builder for not using <p> tags for when a document only has one paragraph (#150)
  • Support for custom link processing during inline parsing (e.g. [foo]), see Parser.Builder#linkProcessor
  • Support for extending inline parsing with custom inline content parsers. See Parser.Builder#customInlineContentParserFactory. This allows users/extensions to hook into inline parsing on a deeper level than before (e.g. with delimiter processors). It can be used to add support for math/latex formulas or other inline syntax. (#321)

Changed

  • The default DefaultUrlSanitizer now also allows data as a protocol. Use the constructor with a list to customize this. (#329)
  • LinkReferenceDefinition now extends Block (it was extending Node directly before)
  • MarkdownRenderer: Don't escape = text if it's the first node in a block (#335)

Fixed

  • Fix parsing of link reference definitions with incorrect title syntax (followed by characters other than space/tab). In that case, the title was set to the partially-parsed title and the source spans were wrong. (#315)
  • Fix source spans of blocks with lazy continuation lines (#337)
  • MarkdownRenderer: Preserve thematic break literals (#331)
Commits
  • 59aa908 [maven-release-plugin] prepare release commonmark-parent-0.23.0
  • 15bd59f Merge pull request #341 from commonmark/release-0.23
  • bc231e2 Prepare for version 0.23.0
  • 369dbab Prepare CHANGELOG for release 0.23
  • 0fb7a16 Merge pull request #340 from commonmark/issue-150-omit-single-paragraph-p
  • 8c819ab Add omitSingleParagraphP option to HtmlRenderer.Builder
  • db57101 Merge pull request #338 from commonmark/issue-335-md-escaping-equals
  • 3785185 Merge pull request #339 from commonmark/issue-337-lazy-continuation-line-sour...
  • 7be4204 Fix source spans of blocks with lazy continuation lines
  • 26d4df9 Don't escape = text if it's the first node in a block
  • Additional commits viewable in compare view

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

Release notes

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

commonmark-java 0.23.0

Added

  • New extension for footnotes!
    • Syntax:
      Main text[^1]
      

      [^1]: Additional text in a footnote

    • Inline footnotes like ^[inline footnote] are also supported when enabled via an option in FootnotesExtension.Builder
    • Use class FootnotesExtension in artifact commonmark-ext-footnotes (#332)
  • New option omitSingleParagraphP in HtmlRenderer.Builder for not using <p> tags for when a document only has one paragraph (#150)
  • Support for custom link processing during inline parsing (e.g. [foo]), see Parser.Builder#linkProcessor
  • Support for extending inline parsing with custom inline content parsers. See Parser.Builder#customInlineContentParserFactory. This allows users/extensions to hook into inline parsing on a deeper level than before (e.g. with delimiter processors). It can be used to add support for math/latex formulas or other inline syntax. (#321)

Changed

  • The default DefaultUrlSanitizer now also allows data as a protocol. Use the constructor with a list to customize this. (#329)
  • LinkReferenceDefinition now extends Block (it was extending Node directly before)
  • MarkdownRenderer: Don't escape = text if it's the first node in a block (#335)

Fixed

  • Fix parsing of link reference definitions with incorrect title syntax (followed by characters other than space/tab). In that case, the title was set to the partially-parsed title and the source spans were wrong. (#315)
  • Fix source spans of blocks with lazy continuation lines (#337)
  • MarkdownRenderer: Preserve thematic break literals (#331)
Changelog

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

[0.23.0] - 2024-09-16

Added

  • New extension for footnotes!
    • Syntax:
      Main text[^1]
      

      [^1]: Additional text in a footnote

    • Inline footnotes like ^[inline footnote] are also supported when enabled via an option in FootnotesExtension.Builder
    • Use class FootnotesExtension in artifact commonmark-ext-footnotes (#332)
  • New option omitSingleParagraphP in HtmlRenderer.Builder for not using <p> tags for when a document only has one paragraph (#150)
  • Support for custom link processing during inline parsing (e.g. [foo]), see Parser.Builder#linkProcessor
  • Support for extending inline parsing with custom inline content parsers. See Parser.Builder#customInlineContentParserFactory. This allows users/extensions to hook into inline parsing on a deeper level than before (e.g. with delimiter processors). It can be used to add support for math/latex formulas or other inline syntax. (#321)

Changed

  • The default DefaultUrlSanitizer now also allows data as a protocol. Use the constructor with a list to customize this. (#329)
  • LinkReferenceDefinition now extends Block (it was extending Node directly before)
  • MarkdownRenderer: Don't escape = text if it's the first node in a block (#335)

Fixed

  • Fix parsing of link reference definitions with incorrect title syntax (followed by characters other than space/tab). In that case, the title was set to the partially-parsed title and the source spans were wrong. (#315)
  • Fix source spans of blocks with lazy continuation lines (#337)
  • MarkdownRenderer: Preserve thematic break literals (#331)
Commits
  • 59aa908 [maven-release-plugin] prepare release commonmark-parent-0.23.0
  • 15bd59f Merge pull request #341 from commonmark/release-0.23
  • bc231e2 Prepare for version 0.23.0
  • 369dbab Prepare CHANGELOG for release 0.23
  • 0fb7a16 Merge pull request #340 from commonmark/issue-150-omit-single-paragraph-p
  • 8c819ab Add omitSingleParagraphP option to HtmlRenderer.Builder
  • db57101 Merge pull request #338 from commonmark/issue-335-md-escaping-equals
  • 3785185 Merge pull request #339 from commonmark/issue-337-lazy-continuation-line-sour...
  • 7be4204 Fix source spans of blocks with lazy continuation lines
  • 26d4df9 Don't escape = text if it's the first node in a block
  • Additional commits viewable in compare view

Updates org.jetbrains.kotlinx:kotlinx-serialization-hocon from 1.7.2 to 1.7.3

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-serialization-hocon's releases.

1.7.3

This release aims to fix important issues that were discovered in the 1.7.2 release, including the inability to sync certain projects into Android Studio/IntelliJ IDEA and exceptions from custom Uuid serializers.

It uses Kotlin 2.0.20 by default.

  • Use explicit kotlin-stdlib and kotlin-test versions from version catalog (#2818)
  • Drop usage of deprecated Any?.freeze() in K/N target (#2819)
  • Check against serialName instead of simpleClassName (#2802)
  • Ignore NoClassDefFoundError when initializing builtins map for serializer() function (#2803)
  • Clarify example for SerializationException (#2806)
Changelog

Sourced from org.jetbrains.kotlinx:kotlinx-serialization-hocon's changelog.

1.7.3 / 2024-09-19

This release aims to fix important issues that were discovered in the 1.7.2 release, including the inability to sync certain projects into Android Studio/IntelliJ IDEA and exceptions from custom Uuid serializers.

It uses Kotlin 2.0.20 by default.

  • Use explicit kotlin-stdlib and kotlin-test versions from version catalog (#2818)
  • Drop usage of deprecated Any?.freeze() in K/N target (#2819)
  • Check against serialName instead of simpleClassName (#2802)
  • Ignore NoClassDefFoundError when initializing builtins map for serializer() function (#2803)
  • Clarify example for SerializationException (#2806)
Commits
  • d4d066d Prepare 1.7.3 release (#2821)
  • 21311a6 Clarify example for SerializationException (#2806)
  • 2f1dbdb Use explicit kotlin-stdlib and kotlin-test versions from version catalog (#2818)
  • 595bcbd Drop usage of deprecated Any?.freeze() in K/N target (#2819)
  • d9753af Check against serialName instead of simpleClassName (#2802)
  • 0b015e1 Ignore NoClassDefFoundError when initializing builtins map for serializer() f...
  • See full diff 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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all group with 3 updates: [org.commonmark:commonmark](https://github.com/commonmark/commonmark-java), [org.commonmark:commonmark-ext-gfm-tables](https://github.com/commonmark/commonmark-java) and [org.jetbrains.kotlinx:kotlinx-serialization-hocon](https://github.com/Kotlin/kotlinx.serialization).


Updates `org.commonmark:commonmark` from 0.22.0 to 0.23.0
- [Release notes](https://github.com/commonmark/commonmark-java/releases)
- [Changelog](https://github.com/commonmark/commonmark-java/blob/main/CHANGELOG.md)
- [Commits](commonmark/commonmark-java@commonmark-parent-0.22.0...commonmark-parent-0.23.0)

Updates `org.commonmark:commonmark-ext-gfm-tables` from 0.22.0 to 0.23.0
- [Release notes](https://github.com/commonmark/commonmark-java/releases)
- [Changelog](https://github.com/commonmark/commonmark-java/blob/main/CHANGELOG.md)
- [Commits](commonmark/commonmark-java@commonmark-parent-0.22.0...commonmark-parent-0.23.0)

Updates `org.jetbrains.kotlinx:kotlinx-serialization-hocon` from 1.7.2 to 1.7.3
- [Release notes](https://github.com/Kotlin/kotlinx.serialization/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.serialization/blob/master/CHANGELOG.md)
- [Commits](Kotlin/kotlinx.serialization@v1.7.2...v1.7.3)

---
updated-dependencies:
- dependency-name: org.commonmark:commonmark
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: org.commonmark:commonmark-ext-gfm-tables
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: org.jetbrains.kotlinx:kotlinx-serialization-hocon
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Sep 23, 2024
@IRus IRus merged commit da63288 into main Sep 23, 2024
9 checks passed
@dependabot dependabot bot deleted the dependabot/gradle/all-ea384b1dd8 branch September 23, 2024 05:09
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
Development

Successfully merging this pull request may close these issues.

1 participant