ant-design-vue
ant-design-vue copied to clipboard
chore(deps): update dependency marked to v15
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| marked (source) | 0.3.18 -> 15.0.12 |
Release Notes
markedjs/marked (marked)
v15.0.12
Bug Fixes
v15.0.11
Bug Fixes
v15.0.10
Bug Fixes
v15.0.9
Bug Fixes
v15.0.8
Bug Fixes
v15.0.7
Bug Fixes
v15.0.6
Bug Fixes
v15.0.5
Bug Fixes
v15.0.4
Bug Fixes
v15.0.3
Bug Fixes
v15.0.2
Bug Fixes
v15.0.1
Bug Fixes
v15.0.0
Bug Fixes
BREAKING CHANGES
- escape html in renderers instead of tokenizers for all tokens.
v14.1.4
Bug Fixes
v14.1.3
Bug Fixes
- include single nested parens in emStrong link mask (#β3475) (2b7efa8)
- kill SIGINT signal at man for marked --help (#β3483) (b1fd3ea)
v14.1.2
Bug Fixes
v14.1.1
Bug Fixes
v14.1.0
Bug Fixes
Features
v14.0.0
Bug Fixes
- allow async option to dictate type returned (#β3341) (b5a5004)
- Remove useNewRenderer (#β3342) (e64f226)
BREAKING CHANGES
- Remove old renderer
- throw an error if
async: falseis set when an extension setsasync: true
v13.0.3
Bug Fixes
v13.0.2
Bug Fixes
v13.0.1
Bug Fixes
v13.0.0
Bug Fixes
- Fix blockquote code continuation (#β3264) (7ab8185)
- Add parser as a property on the Renderer object (#β3291)
- Send block text tokens to the text renderer (#β3291)
Features
- Send token objects to renderers (#β3291) (1ce59ea)
- Add space renderer that returns empty string by default (#β3291)
- Add header and align properties to TableCell token (#β3291)
- Add TableRow token (#β3291)
- Add Checkbox token (#β3291)
BREAKING CHANGES
- Add space token after blockquote and hr if there are multiple newlines
- Send token objects to renderers and move logic to parse tokens from the parser to the renderers.
-
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
useNewRendererand accept a token object instead of multiple parameters. See updated Renderer docs// v12 renderer extension const extension = { renderer: { heading(text, level) { // increase level by 1 return `<h${level + 1}>${text}</h${level + 1}>`; } } }; marked.use(extension);// v13 renderer 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${level + 1}>${text}</h${level + 1}>`; } } }; marked.use(extension);
-
v12.0.2
Bug Fixes
v12.0.1
Bug Fixes
v12.0.0
Bug Fixes
BREAKING CHANGES
- changes to spec
- Update HTML block tags: add search, remove source
- Update punctuation to include unicode punctuation and symbol categories
- Update HTML comment to include
<!-->and<!--->
v11.2.0
Bug Fixes
Features
v11.1.1
Bug Fixes
v11.1.0
Features
v11.0.1
Bug Fixes
v11.0.0
Bug Fixes
BREAKING CHANGES
- Lexer.rules object has been changed so it can be properly types. Some intermediate rules have been removed.
v10.0.0
Bug Fixes
BREAKING CHANGES
- drop support for node v16
v9.1.6
Bug Fixes
v9.1.5
Bug Fixes
v9.1.4
Bug Fixes
v9.1.3
Bug Fixes
v9.1.2
Bug Fixes
v9.1.1
Bug Fixes
v9.1.0
Features
v9.0.3
Bug Fixes
v9.0.2
Bug Fixes
v9.0.1
Bug Fixes
v9.0.0
Bug Fixes
BREAKING CHANGES
- remove built files from git repo.
- If you need to use the latest version of marked on the web you can use a cdn to get marked.min.js from npm:
https://cdn.jsdelivr.net/npm/marked/marked.min.js
v8.0.1
Bug Fixes
- deprecated trimLeft/trimRight (#β2973) (eda75a6)
- fix space removed after checkbox (#β2971) (9a2a4ad)
v8.0.0
Bug Fixes
Features
BREAKING CHANGES
- deprecated options removed. See https://marked.js.org/using_advanced#options to see how to enable the removed options with extensions.
v7.0.5
Bug Fixes
v7.0.4
Bug Fixes
- fix more types (#β2893) (a990c54)
- ignore async: false when async: true is set by an extension (#β2920) (b6ee877)
v7.0.3
Bug Fixes
v7.0.2
Bug Fixes
- fix sourcemaps and circular dependencies (#β2929) (eb4ce21)
- noImplicitAny: true (#β2891) (ff1602c)
v7.0.1
Bug Fixes
v7.0.0
Bug Fixes
BREAKING CHANGES
- change defaults for mangle and headerIds to false
v6.0.0
Bug Fixes
BREAKING CHANGES
- Migrate to Typescript
v5.1.2
Bug Fixes
v5.1.1
Bug Fixes
v5.1.0
Bug Fixes
Features
v5.0.5
Bug Fixes
v5.0.4
Bug Fixes
- Add Unicode punctuations (#β2811) (b213f02)
- fix hr after list (#β2809) (efc40df)
- Replace custom
repeatStringfunction withrepeat()(#β2820) (72ee2d6)
v5.0.3
Bug Fixes
v5.0.2
Bug Fixes
v5.0.1
Bug Fixes
-
only warn if langPrefix is changed (#β2796) (d193694) The deprecated options warnings can be turned off by default by using:
marked.use({ mangle: false, headerIds: false, });For the cli you can use:
marked --no-mangle --no-header-ids ...
v5.0.0
Bug Fixes
Features
BREAKING CHANGES
- Warnings will be logged to the console if these options are used including
headerIds,mangle, andlangPrefixwhich are on by default. These warnings can be turned off by default by using:
If you need these options you can use the extensions listed below.marked.use({ mangle: false, headerIds: false, }); - deprecate options
Option Replacement highlight,langPrefix, andcallbackmarked-highlight manglemarked-mangle baseUrlmarked-base-url smartypantsmarked-smartypants xhtmlmarked-xhtml headerIdsandheaderPrefixmarked-gfm-heading-id - minimum supported node version v18
v4.3.0
Bug Fixes
- always return promise if async (#β2728) (042dcc5)
- fenced code doesn't need a trailing newline (#β2756) (3acbb7f)
Features
v4.2.12
Sorry for all of the quick releases. We were testing out different ways to build the files for releases. v4.2.5 - v4.2.12 have no changes to how marked works. The only addition is the version number in the comment in the build files.
Bug Fixes
- revert to build script in ci (d2ab474)
v4.2.11
Bug Fixes
- just build in version (22ac2cf)
v4.2.10
Bug Fixes
- use version (fd759b3)
v4.2.9
Bug Fixes
- fix version (96380c3)
v4.2.8
v4.2.7
Bug Fixes
- fix build file version (94fa76f)
v4.2.6
Bug Fixes
- add version to build files (79b8c0b)
v4.2.5
Bug Fixes
- fix paragraph continuation after block element (#β2686) (1bbda68)
- fix tabs at beginning of list items (#β2679) (e692634)
v4.2.4
Bug Fixes
- loose list items are loose (#β2672) (df4eb0e)
- remove quotes at the end of gfm autolink (#β2673) (697ac2a)
- use paragraph token in blockquote in list (#β2671) (edc857c)
v4.2.3
Bug Fixes
- fix entity specs (#β2652) (36a2b63)
- fix link reference definitions specs (#β2654) (b7eea95)
- fix marked.use with multiple args (#β2651) (73a7bf5)
- fix multiline setext headings (#β2655) (4aee878)
v4.2.2
Bug Fixes
v4.2.1
Bug Fixes
v4.2.0
Features
v4.1.1
Bug Fixes
- remove smartLists from docs and code (#β2596) (f6ba2e3), closes #β2582 #β2582 #β2582 #β2582 #β2582 #β2582 #β2582
v4.1.0
Features
v4.0.19
Bug Fixes
v4.0.18
Bug Fixes
v4.0.17
Bug Fixes
v4.0.16
Bug Fixes
v4.0.15
Bug Fixes
v4.0.14
Bug Fixes
v4.0.13
Bug Fixes
v4.0.12
Bug Fixes
v4.0.11
Bug Fixes
v4.0.10
Bug Fixes
- security: fix redos vulnerabilities (8f80657)
v4.0.9
Bug Fixes
v4.0.8
Bug Fixes
v4.0.7
Bug Fixes
v4.0.6
Bug Fixes
v4.0.5
Bug Fixes
v4.0.4
Bug Fixes
v4.0.3
Bug Fixes
v4.0.2
Bug Fixes
v4.0.1
Bug Fixes
v4.0.0
Bug Fixes
BREAKING CHANGES
- Default export removed. Use
import { marked } from 'marked'orconst { marked } = require('marked')instead. /lib/marked.jsremoved. Use/marked.min.jsin script tag instead.- When using marked in a script tag use
marked.parse(...)instead ofmarked(...)
v3.0.8
Bug Fixes
v3.0.7
Bug Fixes
- use named exports only for ESM build (#β2226)
v3.0.6
Bug Fixes
v3.0.5
Bug Fixes
v3.0.4
Bug Fixes
v3.0.3
Bug Fixes
v3.0.2
Bug Fixes
v3.0.1
Bug Fixes
v3.0.0
Bug Fixes
- 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)
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). Theinlinefunction will queue the token creation until after all block tokens are created. - Extensions tokenizer
thisobject will include thelexeras a property.this.inlineTokensbecomesthis.lexer.inline. - Extensions renderer
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 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" }]
}
]
}
v2.1.3
Bug Fixes
v2.1.2
Bug Fixes
v2.1.1
Bug Fixes
v2.1.0
Features
v2.0.7
Bug Fixes
- em strong ([#β2075](https
Configuration
π Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
π¦ Automerge: Disabled by config. Please merge this manually once you are satisfied.
β» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
π Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.