janstuemmel / aws-role-switch

Browser plugin to quickly switch between aws roles
https://janstuemmel.de/aws-role-switch
MIT License
26 stars 2 forks source link

chore(dependency): Update dependency marked from v7.0.5 to v13 - autoclosed #341

Closed renovate[bot] closed 1 month ago

renovate[bot] commented 2 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
marked (source) ^7.0.2 -> ^13.0.0 age adoption passing confidence

Release Notes

markedjs/marked (marked) ### [`v13.0.2`](https://togithub.com/markedjs/marked/releases/tag/v13.0.2) [Compare Source](https://togithub.com/markedjs/marked/compare/v13.0.1...v13.0.2) ##### Bug Fixes - fix list item with blank first line ([#​3351](https://togithub.com/markedjs/marked/issues/3351)) ([d28e4c6](https://togithub.com/markedjs/marked/commit/d28e4c65ea822a83049de5652cf3446a05d0c6b5)) ### [`v13.0.1`](https://togithub.com/markedjs/marked/releases/tag/v13.0.1) [Compare Source](https://togithub.com/markedjs/marked/compare/v13.0.0...v13.0.1) ##### Bug Fixes - fix this type in extension methods ([#​3339](https://togithub.com/markedjs/marked/issues/3339)) ([520b9ad](https://togithub.com/markedjs/marked/commit/520b9ad355f2d098e251b5c89e973985922f5b76)) ### [`v13.0.0`](https://togithub.com/markedjs/marked/releases/tag/v13.0.0) [Compare Source](https://togithub.com/markedjs/marked/compare/v12.0.2...v13.0.0) ##### Bug Fixes - Fix blockquote code continuation ([#​3264](https://togithub.com/markedjs/marked/issues/3264)) ([7ab8185](https://togithub.com/markedjs/marked/commit/7ab818502ed537ab8eed22dc9cf4f7602232aa53)) - Add parser as a property on the Renderer object ([#​3291](https://togithub.com/markedjs/marked/issues/3291)) - Send block text tokens to the text renderer ([#​3291](https://togithub.com/markedjs/marked/issues/3291)) ##### Features - Send token objects to renderers ([#​3291](https://togithub.com/markedjs/marked/issues/3291)) ([1ce59ea](https://togithub.com/markedjs/marked/commit/1ce59ea827272b5d067f1e06d3ee4a1d52b1d9bb)) - Add space renderer that returns empty string by default ([#​3291](https://togithub.com/markedjs/marked/issues/3291)) - Add header and align properties to TableCell token ([#​3291](https://togithub.com/markedjs/marked/issues/3291)) - Add TableRow token ([#​3291](https://togithub.com/markedjs/marked/issues/3291)) - Add Checkbox token ([#​3291](https://togithub.com/markedjs/marked/issues/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 `useNewRenderer` and accept a token object instead of multiple parameters. See updated [Renderer docs](https://marked.js.org/using_pro#renderer) ```js // v12 renderer extension const extension = { renderer: { heading(text, level) { // increase level by 1 return `${text}`; } } }; marked.use(extension); ``` ```js // 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 `${text}`; } } }; marked.use(extension); ``` ### [`v12.0.2`](https://togithub.com/markedjs/marked/releases/tag/v12.0.2) [Compare Source](https://togithub.com/markedjs/marked/compare/v12.0.1...v12.0.2) ##### Bug Fixes - fix Setext continuation in blockquote ([#​3257](https://togithub.com/markedjs/marked/issues/3257)) ([e9f0eed](https://togithub.com/markedjs/marked/commit/e9f0eed707ece9e29c3bf340900d1acb42acaddd)) ### [`v12.0.1`](https://togithub.com/markedjs/marked/releases/tag/v12.0.1) [Compare Source](https://togithub.com/markedjs/marked/compare/v12.0.0...v12.0.1) ##### Bug Fixes - fix setext heading interupts ([#​3210](https://togithub.com/markedjs/marked/issues/3210)) ([d848445](https://togithub.com/markedjs/marked/commit/d8484450722449b416508b5bde7c6ba4d9f3bfa8)) ### [`v12.0.0`](https://togithub.com/markedjs/marked/releases/tag/v12.0.0) [Compare Source](https://togithub.com/markedjs/marked/compare/v11.2.0...v12.0.0) ##### Bug Fixes - update to commonmark spec [0.31](https://spec.commonmark.org/0.31.2) ([#​3176](https://togithub.com/markedjs/marked/issues/3176)) ([3d9017b](https://togithub.com/markedjs/marked/commit/3d9017bb8e146a2ee37cd7b4d6d84c61d60a93dc)) ##### BREAKING CHANGES - [changes to spec](https://spec.commonmark.org/0.31.2/changes.html) - 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`](https://togithub.com/markedjs/marked/releases/tag/v11.2.0) [Compare Source](https://togithub.com/markedjs/marked/compare/v11.1.1...v11.2.0) ##### Bug Fixes - Fix ENOENT error message in CLI ([#​3165](https://togithub.com/markedjs/marked/issues/3165)) ([bf44ae8](https://togithub.com/markedjs/marked/commit/bf44ae85edac35627be9acaeebb969c4b29a6505)) ##### Features - flatten childToken arrays ([#​3172](https://togithub.com/markedjs/marked/issues/3172)) ([4826841](https://togithub.com/markedjs/marked/commit/4826841bd6c344455fee81d2445812bb3ac9005d)) ### [`v11.1.1`](https://togithub.com/markedjs/marked/releases/tag/v11.1.1) [Compare Source](https://togithub.com/markedjs/marked/compare/v11.1.0...v11.1.1) ##### Bug Fixes - improve lexing inline elements step's performance ([#​3146](https://togithub.com/markedjs/marked/issues/3146)) ([4f87b2a](https://togithub.com/markedjs/marked/commit/4f87b2ac7b9c493a255dee5b5456449f56e2c08d)) ### [`v11.1.0`](https://togithub.com/markedjs/marked/releases/tag/v11.1.0) [Compare Source](https://togithub.com/markedjs/marked/compare/v11.0.1...v11.1.0) ##### Features - add processAllTokens hook ([#​3114](https://togithub.com/markedjs/marked/issues/3114)) ([faae243](https://togithub.com/markedjs/marked/commit/faae24356a4cee3a19fb6faa58b7b269fd11f62e)) ### [`v11.0.1`](https://togithub.com/markedjs/marked/releases/tag/v11.0.1) [Compare Source](https://togithub.com/markedjs/marked/compare/v11.0.0...v11.0.1) ##### Bug Fixes - allow Renderer class in marked.use ([#​3118](https://togithub.com/markedjs/marked/issues/3118)) ([a287433](https://togithub.com/markedjs/marked/commit/a28743391a589fca188f19249ad25aae24f4b305)) ### [`v11.0.0`](https://togithub.com/markedjs/marked/releases/tag/v11.0.0) [Compare Source](https://togithub.com/markedjs/marked/compare/v10.0.0...v11.0.0) ##### Bug Fixes - clean up rules so they can be typed ([#​3087](https://togithub.com/markedjs/marked/issues/3087)) ([175fc0c](https://togithub.com/markedjs/marked/commit/175fc0c3212b4af4d5f24482595823f2567f8f1e)) - fix marked types ([#​3103](https://togithub.com/markedjs/marked/issues/3103)) ([edae309](https://togithub.com/markedjs/marked/commit/edae309505b2d25f4040e7a37f02ef560c27fb26)) ##### BREAKING CHANGES - Lexer.rules object has been changed so it can be properly types. Some intermediate rules have been removed. ### [`v10.0.0`](https://togithub.com/markedjs/marked/releases/tag/v10.0.0) [Compare Source](https://togithub.com/markedjs/marked/compare/v9.1.6...v10.0.0) ##### Bug Fixes - run spec tests with testutils ([#​3017](https://togithub.com/markedjs/marked/issues/3017)) ([014d4e6](https://togithub.com/markedjs/marked/commit/014d4e61f662d308e434afe1fce513fda93e2d67)) ##### BREAKING CHANGES - drop support for node v16 ### [`v9.1.6`](https://togithub.com/markedjs/marked/releases/tag/v9.1.6) [Compare Source](https://togithub.com/markedjs/marked/compare/v9.1.5...v9.1.6) ##### Bug Fixes - fix instance options sent to lexer and parser ([#​3073](https://togithub.com/markedjs/marked/issues/3073)) ([f9d08cc](https://togithub.com/markedjs/marked/commit/f9d08cc1ef5294b1866705860242f78528f8d508)) ### [`v9.1.5`](https://togithub.com/markedjs/marked/releases/tag/v9.1.5) [Compare Source](https://togithub.com/markedjs/marked/compare/v9.1.4...v9.1.5) ##### Bug Fixes - fix emstrong unicode ([#​3070](https://togithub.com/markedjs/marked/issues/3070)) ([54b6d1c](https://togithub.com/markedjs/marked/commit/54b6d1c47ddbae3e9db5c0ffcd3d96b7daa0b7d1)) ### [`v9.1.4`](https://togithub.com/markedjs/marked/releases/tag/v9.1.4) [Compare Source](https://togithub.com/markedjs/marked/compare/v9.1.3...v9.1.4) ##### Bug Fixes - Fix type declaration bundle(s) ([#​3038](https://togithub.com/markedjs/marked/issues/3038)) ([a7b402c](https://togithub.com/markedjs/marked/commit/a7b402ccce7fbe5acd24c785ca678b4d34dbd3b7)) ### [`v9.1.3`](https://togithub.com/markedjs/marked/releases/tag/v9.1.3) [Compare Source](https://togithub.com/markedjs/marked/compare/v9.1.2...v9.1.3) ##### Bug Fixes - fix empty heading breaks paragraph and table ([#​3050](https://togithub.com/markedjs/marked/issues/3050)) ([a1034e6](https://togithub.com/markedjs/marked/commit/a1034e6dd1ddbc2f723627f271bba29486005c1a)) ### [`v9.1.2`](https://togithub.com/markedjs/marked/releases/tag/v9.1.2) [Compare Source](https://togithub.com/markedjs/marked/compare/v9.1.1...v9.1.2) ##### Bug Fixes - trim newline from blockquote token.text ([#​3037](https://togithub.com/markedjs/marked/issues/3037)) ([92033e5](https://togithub.com/markedjs/marked/commit/92033e57c80656df104e1d1de50de311f6526c82)) ### [`v9.1.1`](https://togithub.com/markedjs/marked/releases/tag/v9.1.1) [Compare Source](https://togithub.com/markedjs/marked/compare/v9.1.0...v9.1.1) ##### Bug Fixes - add marked.min.js to package exports ([#​3035](https://togithub.com/markedjs/marked/issues/3035)) ([71fc094](https://togithub.com/markedjs/marked/commit/71fc09492843633055d6ba84cbe1fe7e2e94a563)) ### [`v9.1.0`](https://togithub.com/markedjs/marked/releases/tag/v9.1.0) [Compare Source](https://togithub.com/markedjs/marked/compare/v9.0.3...v9.1.0) ##### Features - add `--no-clobber` option to CLI ([#​3025](https://togithub.com/markedjs/marked/issues/3025)) ([b8adee7](https://togithub.com/markedjs/marked/commit/b8adee7f7ca589cde2c25caeb0ee628f792b9a8f)) ### [`v9.0.3`](https://togithub.com/markedjs/marked/releases/tag/v9.0.3) [Compare Source](https://togithub.com/markedjs/marked/compare/v9.0.2...v9.0.3) ##### Bug Fixes - marked --help ([#​2991](https://togithub.com/markedjs/marked/issues/2991)) ([43643b3](https://togithub.com/markedjs/marked/commit/43643b3a0013deba352ebf4daf399daaa57915b7)) ### [`v9.0.2`](https://togithub.com/markedjs/marked/releases/tag/v9.0.2) [Compare Source](https://togithub.com/markedjs/marked/compare/v9.0.1...v9.0.2) ##### Bug Fixes - fix unicode emstrong ([#​2989](https://togithub.com/markedjs/marked/issues/2989)) ([8ebbb3c](https://togithub.com/markedjs/marked/commit/8ebbb3c3d414ebf9fad7696de55ecc1e95dd0db1)) ### [`v9.0.1`](https://togithub.com/markedjs/marked/releases/tag/v9.0.1) [Compare Source](https://togithub.com/markedjs/marked/compare/v9.0.0...v9.0.1) ##### Bug Fixes - fix unexpected setext heading ([#​2986](https://togithub.com/markedjs/marked/issues/2986)) ([bcc3067](https://togithub.com/markedjs/marked/commit/bcc3067087b60a2913938d0bca77a71dacc06ba2)) - single column table ([#​2985](https://togithub.com/markedjs/marked/issues/2985)) ([0743d4a](https://togithub.com/markedjs/marked/commit/0743d4adb48f7ccf410912d4c211545772882479)) ### [`v9.0.0`](https://togithub.com/markedjs/marked/releases/tag/v9.0.0) [Compare Source](https://togithub.com/markedjs/marked/compare/v8.0.1...v9.0.0) ##### Bug Fixes - Clean up files in repo ([#​2963](https://togithub.com/markedjs/marked/issues/2963)) ([7d95a91](https://togithub.com/markedjs/marked/commit/7d95a91093f8b5cbdb30b642d06b0c9dd0ab269d)) ##### 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`](https://togithub.com/markedjs/marked/releases/tag/v8.0.1) [Compare Source](https://togithub.com/markedjs/marked/compare/v8.0.0...v8.0.1) ##### Bug Fixes - deprecated trimLeft/trimRight ([#​2973](https://togithub.com/markedjs/marked/issues/2973)) ([eda75a6](https://togithub.com/markedjs/marked/commit/eda75a662ccd5330ef0a75600e7f7617eee21db8)) - fix space removed after checkbox ([#​2971](https://togithub.com/markedjs/marked/issues/2971)) ([9a2a4ad](https://togithub.com/markedjs/marked/commit/9a2a4ad61aaadd0079f57929491dc050d3236e69)) ### [`v8.0.0`](https://togithub.com/markedjs/marked/releases/tag/v8.0.0) [Compare Source](https://togithub.com/markedjs/marked/compare/v7.0.5...v8.0.0) ##### Bug Fixes - remove deprecated options ([#​2936](https://togithub.com/markedjs/marked/issues/2936)) ([22ebdb2](https://togithub.com/markedjs/marked/commit/22ebdb25076b2c94aba49627ab35fbf055163059)) ##### Features - add --config options to marked cli ([#​2937](https://togithub.com/markedjs/marked/issues/2937)) ([fc643a2](https://togithub.com/markedjs/marked/commit/fc643a262564df64f208e0ecbfcdfcae216e880c)) ##### BREAKING CHANGES - deprecated options removed. See https://marked.js.org/using_advanced#options to see how to enable the removed options with extensions.

Configuration

📅 Schedule: Branch creation - "on monday" (UTC), 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.



This PR was generated by Mend Renovate. View the repository job log.