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 commonmark-ext-gfm-tables from 0.14.0 to 0.17.0 #599

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Dec 16, 2021

Bumps commonmark-ext-gfm-tables from 0.14.0 to 0.17.0.

Release notes

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

commonmark-java 0.17.0

Changed

  • ACTION REQUIRED: Maven groupId has changed from com.atlassian.commonmark to org.commonmark
    • To continue getting new versions of commonmark-java, change the Maven coordinates in your dependencies:
    • Old: <groupId>com.atlassian.commonmark</groupId>
    • New: <groupId>org.commonmark</groupId>

commonmark-java 0.16.1

Added

  • Support for including source spans on block and inline nodes (#1):
    • Answer for "Where in the source input (line/column position and length) does this node come from?"
    • Useful for things like editors that want to keep the input and rendered output scrolled to the same lines, or start editing on the node that was selected.
    • Use includeSourceSpans on Parser.Builder to enable, either with IncludeSourceSpans.BLOCKS or IncludeSourceSpans.BLOCKS_AND_INLINES
    • Read data with Node.getSourceSpans
    • Note that enabling this has a small performance impact on parsing (about 10%)

Changed

  • In order to support source spans (see above), a few of the extension APIs changed. It should only affect users implementing their own extensions. See the Javadoc to see what changed.
  • YAML front matter extension: Support dots in key names

commonmark-parent-0.15.2

Fixed

  • image-attributes extension: Fix unexpected altering of text in case parsing of attributes fails, e.g. {NN} text -> {NN text}, thanks @​jk1

commonmark-parent-0.15.1

Added

  • Add text content rendering support for InsExtension

commonmark-parent-0.15.0

Added

  • Extension for width/height attributes for images, thanks @​dohertyfjatl
    • Syntax: ![text](https://github.com/atlassian/commonmark-java/blob/HEAD/url.png){width=640 height=480}
    • Use class ImageAttributesExtension in artifact commonmark-ext-image-attributes
  • Extension for task lists (GitHub-style), thanks @​dohertyfjatl
    • Syntax:
      - [x] task [#1](https://github.com/atlassian/commonmark-java/issues/1)
      - [ ] task [#2](https://github.com/atlassian/commonmark-java/issues/2)
      
    • Use class TaskListItemsExtension in artifact commonmark-ext-task-list-items
Changelog

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

[0.17.0] - 2021-01-15

Changed

  • ACTION REQUIRED: Maven groupId has changed from com.atlassian.commonmark to org.commonmark
    • To continue getting new versions of commonmark-java, change the Maven coordinates in your dependencies:
    • Old: <groupId>com.atlassian.commonmark</groupId>
    • New: <groupId>org.commonmark</groupId>

[0.16.1] - 2020-12-11

Added

  • Support for including source spans on block and inline nodes (#1):
    • Answer for "Where in the source input (line/column position and length) does this node come from?"
    • Useful for things like editors that want to keep the input and rendered output scrolled to the same lines, or start editing on the node that was selected.
    • Use includeSourceSpans on Parser.Builder to enable, either with IncludeSourceSpans.BLOCKS or IncludeSourceSpans.BLOCKS_AND_INLINES
    • Read data with Node.getSourceSpans
    • Note that enabling this has a small performance impact on parsing (about 10%)

Changed

  • In order to support source spans (see above), a few of the extension APIs changed. It should only affect users implementing their own extensions. See the Javadoc to see what changed.
  • YAML front matter extension: Support dots in key names

[0.15.2] - 2020-07-20

Fixed

  • image-attributes extension: Fix unexpected altering of text in case parsing of attributes fails, e.g. {NN} text -> {NN text}, thanks @​jk1

[0.15.1] - 2020-05-29

Added

  • Add text content rendering support for InsExtension

[0.15.0] - 2020-05-21

Added

  • Extension for width/height attributes for images, thanks @​dohertyfjatl
    • Syntax: ![text](https://github.com/commonmark/commonmark-java/blob/main/url.png){width=640 height=480}
    • Use class ImageAttributesExtension in artifact commonmark-ext-image-attributes
  • Extension for task lists (GitHub-style), thanks @​dohertyfjatl
    • Syntax:
      - [x] task [#1](https://github.com/atlassian/commonmark-java/issues/1)
      - [ ] task [#2](https://github.com/atlassian/commonmark-java/issues/2)
      
    • Use class TaskListItemsExtension in artifact commonmark-ext-task-list-items
Commits
  • c0e12f4 [maven-release-plugin] prepare release commonmark-parent-0.17.0
  • 6f5454f Fix maven-gpg-plugin erroring out on commonmark-integration-test module
  • 4e7392d Try with push over https instead of ssh in developerConnection
  • 9ff5ab4 Use personal access token for pushing
  • 9635bc5 Use "actions/checkout@v2" to be able to push (maybe)
  • b46cbf8 Add git user.name and user.email, rename environment
  • 05d5a03 Try workflow_dispatch for triggering release
  • 0ae1fa4 Don't change groupId in README yet
  • 97ee049 Bump version to 0.17.0-SNAPSHOT
  • 5b14e31 Change maven groupId and release process
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR 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 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)
> **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 16, 2021
@dependabot dependabot bot force-pushed the dependabot/gradle/com.atlassian.commonmark-commonmark-ext-gfm-tables-0.17.0 branch from 9caa453 to cab6860 Compare December 22, 2021 12:39
Bumps [commonmark-ext-gfm-tables](https://github.com/atlassian/commonmark-java) from 0.14.0 to 0.17.0.
- [Release notes](https://github.com/atlassian/commonmark-java/releases)
- [Changelog](https://github.com/commonmark/commonmark-java/blob/main/CHANGELOG.md)
- [Commits](commonmark/commonmark-java@commonmark-parent-0.14.0...commonmark-parent-0.17.0)

---
updated-dependencies:
- dependency-name: com.atlassian.commonmark:commonmark-ext-gfm-tables
  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/gradle/com.atlassian.commonmark-commonmark-ext-gfm-tables-0.17.0 branch from cab6860 to 919f81a Compare November 3, 2022 10:10
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants