Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

build(deps-dev): bump marked from 2.1.3 to 3.0.0 #758

Merged
merged 1 commit into from
Aug 21, 2021

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 21, 2021

Bumps marked from 2.1.3 to 3.0.0.

Release notes

Sourced from marked's releases.

v3.0.0

3.0.0 (2021-08-16)

Bug Fixes

BREAKING CHANGES

  • Drop support for node 10.
  • Add module field to package.json

  • Tokenizers will create their own tokens with this.lexer.inline(text, tokens). The inline function will queue the token creation until after all block tokens are created.
  • Extensions tokenizer this object will include the lexer as a property. this.inlineTokens becomes this.lexer.inline.
  • Extensions renderer this object will include the parser as a property. this.parseInline becomes this.parser.parseInline.
  • tag and inlineText tokenizer function signatures have changed.

  • nptable tokenizer is removed and merged with table tokenizer.
  • table tokens header property changed to contain an array of objects for each header cell with text and tokens properties.
  • table tokens cells property changed to rows and is an array of rows where each row contains an array of objects for each cell with text and tokens properties.

v2 table token:

{
  "type": "table",
  "align": [null, null],
  "raw": "| a | b |\n|---|---|\n| 1 | 2 |\n",
  "header": ["a", "b"],
  "cells": [["1", "2"]],
  "tokens": {
    "header": [
      [{ "type": "text", "raw": "a", "text": "a" }],
      [{ "type": "text", "raw": "b", "text": "b" }]
    ],
    "cells": [[
      [{ "type": "text", "raw": "1", "text": "1" }],
      [{ "type": "text", "raw": "2", "text": "2" }]
    ]]
  }
</tr></table> 

... (truncated)

Commits
  • e781b18 chore(release): 3.0.0 [skip ci]
  • 4077d40 🗜️ build [skip ci]
  • b2f77e6 chore(deps-dev): Bump @​babel/core from 7.14.8 to 7.15.0 (#2174)
  • cdf20b0 chore(deps-dev): Bump rollup from 2.55.1 to 2.56.2 (#2173)
  • fc8c1cf chore(deps-dev): Bump markdown-it from 12.1.0 to 12.2.0 (#2170)
  • 7d01972 chore(deps-dev): Bump @​babel/preset-env from 7.14.8 to 7.15.0 (#2169)
  • 13f3b04 chore(deps-dev): Bump eslint-plugin-import from 2.23.4 to 2.24.0 (#2168)
  • 0e873fe chore(deps-dev): Bump highlight.js from 11.1.0 to 11.2.0 (#2162)
  • bc400ac fix: Refactor table tokens (#2166)
  • eb33d3b fix: Full Commonmark compliance for Lists (#2112)
  • 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 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 [marked](https://github.com/markedjs/marked) from 2.1.3 to 3.0.0.
- [Release notes](https://github.com/markedjs/marked/releases)
- [Changelog](https://github.com/markedjs/marked/blob/master/release.config.js)
- [Commits](markedjs/marked@v2.1.3...v3.0.0)

---
updated-dependencies:
- dependency-name: marked
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 21, 2021
@UziTech UziTech merged commit 774a665 into master Aug 21, 2021
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/marked-3.0.0 branch August 21, 2021 16:41
@jsumners
Copy link
Member

⚠️ This issue has been locked due to age. If you have encountered a recent
problem that seems to be covered by this issue, please open a new issue.

Please include a minimal reproducible example
when opening a new issue.

@ldapjs ldapjs locked as resolved and limited conversation to collaborators Mar 10, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants