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

[Snyk] Upgrade marked from 2.0.1 to 3.0.7 #23

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

Conversation

snyk-bot
Copy link

Snyk has created this PR to upgrade marked from 2.0.1 to 3.0.7.

merge advice
ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


Warning: This is a major version upgrade, and may be a breaking change.

  • The recommended version is 18 versions ahead of your current version.
  • The recommended version was released 23 days ago, on 2021-10-07.
Release notes
Package name: marked
  • 3.0.7 - 2021-10-07

    3.0.7 (2021-10-07)

    Bug Fixes

    • use named exports only for ESM build (#2226)
  • 3.0.6 - 2021-10-06

    3.0.6 (2021-10-06)

    Bug Fixes

  • 3.0.5 - 2021-10-06

    3.0.5 (2021-10-06)

    Bug Fixes

  • 3.0.4 - 2021-09-14

    3.0.4 (2021-09-14)

    Bug Fixes

    • fix detection of orphaned emStrong delimiters (#2203) (7792adc)
  • 3.0.3 - 2021-09-08

    3.0.3 (2021-09-08)

    Bug Fixes

  • 3.0.2 - 2021-08-25

    3.0.2 (2021-08-25)

    Bug Fixes

    • stop table at lines with only whitespace (#2188) (21268ab)
  • 3.0.1 - 2021-08-23

    3.0.1 (2021-08-23)

    Bug Fixes

  • 3.0.0 - 2021-08-16

    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" }]
        ]]
      }
    }

    v3 table token:

    {
      "type": "table",
      "align": [null, null],
      "raw": "| a | b |\n|---|---|\n| 1 | 2 |\n",
      "header": [
        {
          "text": "a",
          "tokens": [{ "type": "text", "raw": "a", "text": "a" }]
        },
        {
          "text": "b",
          "tokens": [{ "type": "text", "raw": "b", "text": "b" }]
        }
      ],
      "rows": [
        {
          "text": "1",
          "tokens": [{ "type": "text", "raw": "1", "text": "1" }]
        },
        {
          "text": "2",
          "tokens": [{ "type": "text", "raw": "2", "text": "2" }]
        }
      ]
    }
  • 2.1.3 - 2021-06-25

    2.1.3 (2021-06-25)

    Bug Fixes

  • 2.1.2 - 2021-06-22

    2.1.2 (2021-06-22)

    Bug Fixes

    • add Node.js 10 to CI and loosen engines field (#2119) (8659353)
  • 2.1.1 - 2021-06-16
  • 2.1.0 - 2021-06-15
  • 2.0.7 - 2021-06-01
  • 2.0.6 - 2021-05-27
  • 2.0.5 - 2021-05-21
  • 2.0.4 - 2021-05-20
  • 2.0.3 - 2021-04-11
  • 2.0.2 - 2021-04-10
  • 2.0.1 - 2021-02-27
from marked GitHub release notes
Commit messages
Package name: marked

Compare


Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

🧐 View latest project report

🛠 Adjust upgrade PR settings

🔕 Ignore this dependency or unsubscribe from future upgrade PRs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant