[Snyk] Upgrade marked from 4.3.0 to 14.1.1 #46
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 4.3.0 to 14.1.1.
ℹ️ 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.
The recommended version is 45 versions ahead of your current version.
The recommended version was released on 24 days ago.
Release notes
Package name: marked
14.1.1 (2024-09-04)
Bug Fixes
14.1.0 (2024-08-26)
Bug Fixes
Features
14.0.0 (2024-08-07)
Bug Fixes
BREAKING CHANGES
async: false
is set when an extension setsasync: true
13.0.3 (2024-07-28)
Bug Fixes
13.0.2 (2024-07-04)
Bug Fixes
13.0.1 (2024-06-24)
Bug Fixes
13.0.0 (2024-06-12)
Bug Fixes
Features
BREAKING CHANGES
Most extensions that update marked renderers should still work with this version but will break in a future major version.
Extensions that change marked renderers will need to be updated and use new option
useNewRenderer
and accept a token object instead of multiple parameters. See updated Renderer docsconst extension = {
renderer: {
heading(text, level) {
// increase level by 1
return
<h<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">level</span> <span class="pl-c1">+</span> <span class="pl-c1">1</span><span class="pl-kos">}</span></span>><span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">text</span><span class="pl-kos">}</span></span></h<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">level</span> <span class="pl-c1">+</span> <span class="pl-c1">1</span><span class="pl-kos">}</span></span>>
;}
}
};
marked.use(extension);
const extension = {
useNewRenderer: true,
renderer: {
heading(token) {
// increase depth by 1
const text = this.parser.parseInline(token.tokens);
const level = token.depth;
return
<h<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">level</span> <span class="pl-c1">+</span> <span class="pl-c1">1</span><span class="pl-kos">}</span></span>><span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">text</span><span class="pl-kos">}</span></span></h<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">level</span> <span class="pl-c1">+</span> <span class="pl-c1">1</span><span class="pl-kos">}</span></span>>
;}
}
};
marked.use(extension);
12.0.2 (2024-04-19)
Bug Fixes
12.0.1 (2024-03-06)
Bug Fixes
12.0.0 (2024-02-03)
Bug Fixes
BREAKING CHANGES
<!-->
and<!--->
Important
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: