[Snyk] Upgrade marked from 1.2.2 to 3.0.8 #436
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Snyk has created this PR to upgrade marked from 1.2.2 to 3.0.8.
ℹ️ 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 fixes:
SNYK-JS-MARKED-1070800
Why? Has a fix available, CVSS 7.5
(*) Note that the real score may have changed since the PR was raised.
Release notes
Package name: marked
-
3.0.8 - 2021-10-24
- walkTokens uses marked as this (#2251) (2da5885)
-
3.0.7 - 2021-10-07
- use named exports only for ESM build (#2226)
-
3.0.6 - 2021-10-06
- Remove esm interop (#2225) (4bc9121)
-
3.0.5 - 2021-10-06
- Expose named exports for ESM build (#2223) (3959651)
-
3.0.4 - 2021-09-14
- fix detection of orphaned emStrong delimiters (#2203) (7792adc)
-
3.0.3 - 2021-09-08
- fix space at end of table line (#2201) (910f0f0)
-
3.0.2 - 2021-08-25
- stop table at lines with only whitespace (#2188) (21268ab)
-
3.0.1 - 2021-08-23
- fix gfm urls after link (#2186) (e03b5c1)
-
3.0.0 - 2021-08-16
- Tokenizers lex their own child tokens (#2124) (288f1cb)
- Add module field to package.json (#2143) (edc2e6d)
- Drop node 10 support (#2157) (433b16f)
- Full Commonmark compliance for Lists (#2112) (eb33d3b)
- Refactor table tokens (#2166) (bc400ac)
- Drop support for node 10.
- Add module field to package.json
- Tokenizers will create their own tokens with
- Extensions tokenizer
- Extensions renderer
-
2.1.3 - 2021-06-25
- update commonmark spec to v0.30 (#2113) (62d6a0e)
-
2.1.2 - 2021-06-22
-
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
-
2.0.0 - 2021-02-07
-
1.2.9 - 2021-02-03
-
1.2.8 - 2021-01-26
-
1.2.7 - 2020-12-15
-
1.2.6 - 2020-12-10
-
1.2.5 - 2020-11-19
-
1.2.4 - 2020-11-15
-
1.2.3 - 2020-11-04
-
1.2.2 - 2020-10-21
from marked GitHub release notes3.0.8 (2021-10-24)
Bug Fixes
3.0.7 (2021-10-07)
Bug Fixes
3.0.6 (2021-10-06)
Bug Fixes
3.0.5 (2021-10-06)
Bug Fixes
3.0.4 (2021-09-14)
Bug Fixes
3.0.3 (2021-09-08)
Bug Fixes
3.0.2 (2021-08-25)
Bug Fixes
3.0.1 (2021-08-23)
Bug Fixes
3.0.0 (2021-08-16)
Bug Fixes
BREAKING CHANGES
this.lexer.inline(text, tokens). Theinlinefunction will queue the token creation until after all block tokens are created.thisobject will include thelexeras a property.this.inlineTokensbecomesthis.lexer.inline.thisobject will include theparseras a property.this.parseInlinebecomesthis.parser.parseInline.tagandinlineTexttokenizer function signatures have changed.nptabletokenizer is removed and merged withtabletokenizer.tabletokensheaderproperty changed to contain an array of objects for each header cell withtextandtokensproperties.tabletokenscellsproperty changed torowsand is an array of rows where each row contains an array of objects for each cell withtextandtokensproperties.v2
tabletoken:{ "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
tabletoken:{ "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)
Bug Fixes
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