Skip to content

Update dependency marked to v17#674

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/marked-17.x
Open

Update dependency marked to v17#674
renovate[bot] wants to merge 1 commit intomainfrom
renovate/marked-17.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 7, 2025

This PR contains the following updates:

Package Change Age Confidence
marked (source) 12.0.217.0.4 age confidence

Release Notes

markedjs/marked (marked)

v17.0.4

Compare Source

Bug Fixes

v17.0.3

Compare Source

Bug Fixes

v17.0.2

Compare Source

v17.0.1

Compare Source

Bug Fixes

v17.0.0

Compare Source

Bug Fixes
BREAKING CHANGES
  • Change how consecutive text tokens work in lists
  • Simplify listItem renderer
  • Checkbox token is added in list tokenizer
  • Checkbox token add type and raw property
  • Change loose list text tokens to paragraph type in the list tokenizer

v16.4.2

Compare Source

v16.4.1

Compare Source

Bug Fixes

v16.4.0

Compare Source

Bug Fixes
  • Fix backtick and code rendering in links (#​3783) (302ee59)
  • fix links with square brackets in inline code break wrapping italics (#​3785) (e3c0d3e)
  • Make www case-sensitive when detecting link starts (#​3770) (626d961)
Features

v16.3.0

Compare Source

Features

v16.2.1

Compare Source

Bug Fixes

v16.2.0

Compare Source

Features

v16.1.2

Compare Source

Bug Fixes

v16.1.1

Compare Source

Bug Fixes

v16.1.0

Compare Source

Features

v16.0.0

Compare Source

Bug Fixes
BREAKING CHANGES

v15.0.12

Compare Source

Bug Fixes

v15.0.11

Compare Source

Bug Fixes

v15.0.10

Compare Source

Bug Fixes

v15.0.9

Compare Source

Bug Fixes

v15.0.8

Compare Source

Bug Fixes

v15.0.7

Compare Source

Bug Fixes

v15.0.6

Compare Source

Bug Fixes
  • fix strikethrough inside strong and em to follow gfm (#​3577) (7712a53)

v15.0.5

Compare Source

Bug Fixes
  • allow strikethrough inside strong and em to follow gfm (#​3569) (8a01658)

v15.0.4

Compare Source

Bug Fixes

v15.0.3

Compare Source

Bug Fixes
  • update punctuation regex syntax to fix babel mistaken transpile (#​3547) (9b988c4)

v15.0.2

Compare Source

Bug Fixes

v15.0.1

Compare Source

Bug Fixes

v15.0.0

Compare Source

Bug Fixes
BREAKING CHANGES
  • escape html in renderers instead of tokenizers for all tokens.

v14.1.4

Compare Source

Bug Fixes

v14.1.3

Compare Source

Bug Fixes

v14.1.2

Compare Source

Bug Fixes

v14.1.1

Compare Source

Bug Fixes

v14.1.0

Compare Source

Bug Fixes
Features

v14.0.0

Compare Source

Bug Fixes
BREAKING CHANGES
  • Remove old renderer
  • throw an error if async: false is set when an extension sets async: true

v13.0.3

Compare Source

Bug Fixes
  • fix recursion-like stack overflow error caused by the old render… (#​3380) (89af0b8)

v13.0.2

Compare Source

Bug Fixes

v13.0.1

Compare Source

Bug Fixes

v13.0.0

Compare Source

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 useNewRenderer and 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);

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.

@renovate renovate bot force-pushed the renovate/marked-17.x branch from 7c8adb7 to d969b58 Compare November 11, 2025 00:45
@renovate renovate bot force-pushed the renovate/marked-17.x branch 2 times, most recently from 8ca8dc9 to f283b86 Compare November 20, 2025 18:44
@renovate renovate bot force-pushed the renovate/marked-17.x branch from f283b86 to 2c84b99 Compare December 31, 2025 16:52
@renovate renovate bot force-pushed the renovate/marked-17.x branch from 2c84b99 to 70d1f64 Compare January 19, 2026 18:16
@renovate renovate bot force-pushed the renovate/marked-17.x branch from 70d1f64 to 15c5831 Compare February 2, 2026 21:27
@renovate renovate bot force-pushed the renovate/marked-17.x branch 2 times, most recently from cab12ad to 7e86bdb Compare February 17, 2026 22:06
@renovate renovate bot force-pushed the renovate/marked-17.x branch from 7e86bdb to a3f4037 Compare March 4, 2026 17:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants