chore(deps): update dependency marked to v15
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| marked (source) | ^5.1.2 -> ^15.0.12 |
Test plan: CI should pass with updated dependencies. No review required: this is an automated dependency update PR.
Release Notes
markedjs/marked (marked)
v15.0.12
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
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
Configuration
📅 Schedule: Branch creation - "on the 1st through 7th day of the month" in timezone America/Los_Angeles, 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.