Skip to content

fix(deps): update dependency marked to v14 - autoclosed #419

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 8, 2024

This PR contains the following updates:

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

Release Notes

markedjs/marked (marked)

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 is behind base branch, 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.

Copy link
Contributor Author

renovate bot commented Aug 8, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm error code ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: [email protected]
npm error Found: [email protected]
npm error node_modules/marked
npm error   marked@"^14.0.0" from the root project
npm error
npm error Could not resolve dependency:
npm error peer marked@">= 9.0.0 < 13.0.0" from [email protected]
npm error node_modules/ngx-markdown
npm error   ngx-markdown@"^18.0.0" from the root project
npm error
npm error Conflicting peer dependency: [email protected]
npm error node_modules/marked
npm error   peer marked@">= 9.0.0 < 13.0.0" from [email protected]
npm error   node_modules/ngx-markdown
npm error     ngx-markdown@"^18.0.0" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /tmp/renovate/cache/others/npm/_logs/2024-11-04T20_40_31_651Z-eresolve-report.txt
npm error A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2024-11-04T20_40_31_651Z-debug-0.log

@renovate renovate bot force-pushed the renovate/marked-14.x branch 6 times, most recently from 03dfd25 to bd28109 Compare August 14, 2024 19:10
@renovate renovate bot force-pushed the renovate/marked-14.x branch 6 times, most recently from 40025ea to d768152 Compare August 26, 2024 06:24
@renovate renovate bot force-pushed the renovate/marked-14.x branch 4 times, most recently from 5803e35 to 14cca1e Compare September 2, 2024 05:08
@renovate renovate bot force-pushed the renovate/marked-14.x branch 5 times, most recently from f2b3a90 to 93b7573 Compare September 9, 2024 04:19
@renovate renovate bot force-pushed the renovate/marked-14.x branch 7 times, most recently from 1e93ab0 to dc03334 Compare September 16, 2024 19:16
@renovate renovate bot force-pushed the renovate/marked-14.x branch from dc03334 to 0008641 Compare September 18, 2024 11:00
@renovate renovate bot force-pushed the renovate/marked-14.x branch 6 times, most recently from b1605e4 to 1ff575e Compare October 7, 2024 05:40
@renovate renovate bot force-pushed the renovate/marked-14.x branch 5 times, most recently from ae404f0 to 544dba8 Compare October 13, 2024 04:50
@renovate renovate bot force-pushed the renovate/marked-14.x branch 6 times, most recently from 68db3ad to f9e32e6 Compare October 21, 2024 13:12
@renovate renovate bot force-pushed the renovate/marked-14.x branch 4 times, most recently from 1bf5949 to 9717f25 Compare October 29, 2024 05:06
@renovate renovate bot force-pushed the renovate/marked-14.x branch 4 times, most recently from 53abf3b to 5157274 Compare November 4, 2024 13:49
@renovate renovate bot force-pushed the renovate/marked-14.x branch from 5157274 to a0dfb83 Compare November 4, 2024 20:40
@renovate renovate bot changed the title fix(deps): update dependency marked to v14 fix(deps): update dependency marked to v14 - autoclosed Nov 10, 2024
@renovate renovate bot closed this Nov 10, 2024
@renovate renovate bot deleted the renovate/marked-14.x branch November 10, 2024 08:29
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