Skip to content
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

Update dependency marked to v15 #21

Open
wants to merge 1 commit into
base: the-one
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 16, 2024

This PR contains the following updates:

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

Release Notes

markedjs/marked (marked)

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

v12.0.2

Compare Source

Bug Fixes

v12.0.1

Compare Source

Bug Fixes

v12.0.0

Compare Source

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

Compare Source

Bug Fixes
Features

v11.1.1

Compare Source

Bug Fixes

v11.1.0

Compare Source

Features

v11.0.1

Compare Source

Bug Fixes

v11.0.0

Compare Source

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

Compare Source

Bug Fixes
BREAKING CHANGES
  • drop support for node v16

v9.1.6

Compare Source

Bug Fixes

v9.1.5

Compare Source

Bug Fixes

v9.1.4

Compare Source

Bug Fixes

v9.1.3

Compare Source

Bug Fixes

v9.1.2

Compare Source

Bug Fixes

v9.1.1

Compare Source

Bug Fixes

v9.1.0

Compare Source

Features

v9.0.3

Compare Source

Bug Fixes

v9.0.2

Compare Source

Bug Fixes

v9.0.1

Compare Source

Bug Fixes

v9.0.0

Compare Source

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

Compare Source

Bug Fixes

v8.0.0

Compare Source

Bug Fixes
Features
BREAKING CHANGES

v7.0.5

Compare Source

Bug Fixes

v7.0.4

Compare Source

Bug Fixes

v7.0.3

Compare Source

Bug Fixes

v7.0.2

Compare Source

Bug Fixes

v7.0.1

Compare Source

Bug Fixes

v7.0.0

Compare Source

Bug Fixes
BREAKING CHANGES
  • change defaults for mangle and headerIds to false

v6.0.0

Compare Source

Bug Fixes
BREAKING CHANGES
  • Migrate to Typescript

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.

Copy link
Contributor Author

renovate bot commented Nov 16, 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 warn ERESOLVE overriding peer dependency
npm warn While resolving: [email protected]
npm warn Found: [email protected]
npm warn node_modules/typescript
npm warn   dev typescript@"~5.6.0" from the root project
npm warn   12 more (@angular-devkit/build-angular, @angular/build, ...)
npm warn
npm warn Could not resolve dependency:
npm warn peer typescript@">=5.4 <5.5" from @angular-devkit/[email protected]
npm warn node_modules/@angular-devkit/build-angular
npm warn   dev @angular-devkit/build-angular@"^18.0.0" from the root project
npm warn   2 more (@analogjs/vite-plugin-angular, @nx/angular)
npm warn ERESOLVE overriding peer dependency
npm warn While resolving: [email protected]
npm warn Found: [email protected]
npm warn node_modules/typescript
npm warn   dev typescript@"~5.6.0" from the root project
npm warn   12 more (@angular-devkit/build-angular, @angular/build, ...)
npm warn
npm warn Could not resolve dependency:
npm warn peer typescript@">=5.4 <5.5" from @angular-devkit/[email protected]
npm warn node_modules/@angular-devkit/build-angular
npm warn   dev @angular-devkit/build-angular@"^18.0.0" from the root project
npm warn   2 more (@analogjs/vite-plugin-angular, @nx/angular)
npm warn ERESOLVE overriding peer dependency
npm warn While resolving: [email protected]
npm warn Found: [email protected]
npm warn node_modules/typescript
npm warn   dev typescript@"~5.6.0" from the root project
npm warn   12 more (@angular-devkit/build-angular, @angular/build, ...)
npm warn
npm warn Could not resolve dependency:
npm warn peer typescript@">=5.4 <5.5" from @angular-devkit/[email protected]
npm warn node_modules/@angular-devkit/build-angular
npm warn   dev @angular-devkit/build-angular@"^18.0.0" from the root project
npm warn   2 more (@analogjs/vite-plugin-angular, @nx/angular)
npm warn ERESOLVE overriding peer dependency
npm warn While resolving: [email protected]
npm warn Found: [email protected]
npm warn node_modules/typescript
npm warn   dev typescript@"~5.6.0" from the root project
npm warn   12 more (@angular-devkit/build-angular, @angular/build, ...)
npm warn
npm warn Could not resolve dependency:
npm warn peer typescript@">=5.4 <5.5" from @angular/[email protected]
npm warn node_modules/@angular/compiler-cli
npm warn   dev @angular/compiler-cli@"^18.0.0" from the root project
npm warn   3 more (@angular-devkit/build-angular, @angular/build, @ngtools/webpack)
npm warn ERESOLVE overriding peer dependency
npm warn While resolving: [email protected]
npm warn Found: [email protected]
npm warn node_modules/typescript
npm warn   dev typescript@"~5.6.0" from the root project
npm warn   12 more (@angular-devkit/build-angular, @angular/build, ...)
npm warn
npm warn Could not resolve dependency:
npm warn peer typescript@">=5.4 <5.5" from @angular/[email protected]
npm warn node_modules/@angular/compiler-cli
npm warn   dev @angular/compiler-cli@"^18.0.0" from the root project
npm warn   3 more (@angular-devkit/build-angular, @angular/build, @ngtools/webpack)
npm warn ERESOLVE overriding peer dependency
npm warn While resolving: [email protected]
npm warn Found: [email protected]
npm warn node_modules/typescript
npm warn   dev typescript@"~5.6.0" from the root project
npm warn   12 more (@angular-devkit/build-angular, @angular/build, ...)
npm warn
npm warn Could not resolve dependency:
npm warn peer typescript@">=5.4 <5.5" from @angular/[email protected]
npm warn node_modules/@angular/compiler-cli
npm warn   dev @angular/compiler-cli@"^18.0.0" from the root project
npm warn   3 more (@angular-devkit/build-angular, @angular/build, @ngtools/webpack)
npm warn ERESOLVE overriding peer dependency
npm warn While resolving: [email protected]
npm warn Found: [email protected]
npm warn node_modules/typescript
npm warn   dev typescript@"~5.6.0" from the root project
npm warn   12 more (@angular-devkit/build-angular, @angular/build, ...)
npm warn
npm warn Could not resolve dependency:
npm warn peer typescript@">=5.4 <5.5" from @angular/[email protected]
npm warn node_modules/@angular/compiler-cli
npm warn   dev @angular/compiler-cli@"^18.0.0" from the root project
npm warn   3 more (@angular-devkit/build-angular, @angular/build, @ngtools/webpack)
npm warn ERESOLVE overriding peer dependency
npm warn While resolving: [email protected]
npm warn Found: [email protected]
npm warn node_modules/typescript
npm warn   dev typescript@"~5.6.0" from the root project
npm warn   12 more (@angular-devkit/build-angular, @angular/build, ...)
npm warn
npm warn Could not resolve dependency:
npm warn peer typescript@">=5.4 <5.5" from @ngtools/[email protected]
npm warn node_modules/@ngtools/webpack
npm warn   peer @ngtools/webpack@"^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" from @analogjs/[email protected]
npm warn   node_modules/@analogjs/vite-plugin-angular
npm warn   1 more (@angular-devkit/build-angular)
npm error code ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: [email protected]
npm error Found: @angular/[email protected]
npm error node_modules/@angular/compiler
npm error   @angular/compiler@"^18.0.0" from the root project
npm error   peer @angular/compiler@"18.0.3" from @angular/[email protected]
npm error   node_modules/@angular/compiler-cli
npm error     dev @angular/compiler-cli@"^18.0.0" from the root project
npm error     peer @angular/compiler-cli@"^18.0.0" from @angular-devkit/[email protected]
npm error     node_modules/@angular-devkit/build-angular
npm error       dev @angular-devkit/build-angular@"^18.0.0" from the root project
npm error       2 more (@analogjs/vite-plugin-angular, @nx/angular)
npm error     2 more (@angular/build, @ngtools/webpack)
npm error   2 more (@angular/platform-browser-dynamic, @angular/platform-server)
npm error
npm error Could not resolve dependency:
npm error dev @analogjs/vite-plugin-angular@"^1.5.0" from the root project
npm error
npm error Conflicting peer dependency: @angular/[email protected]
npm error node_modules/@angular/compiler
npm error   peer @angular/compiler@"^19.0.0" from @angular/[email protected]
npm error   node_modules/@angular/build
npm error     peerOptional @angular/build@"^18.0.0 || ^19.0.0" from @analogjs/[email protected]
npm error     node_modules/@analogjs/vite-plugin-angular
npm error       dev @analogjs/vite-plugin-angular@"^1.5.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-12-09T08_48_05_428Z-eresolve-report.txt
npm error A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2024-12-09T08_48_05_428Z-debug-0.log

Copy link

coderabbitai bot commented Nov 16, 2024

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

‼️ IMPORTANT
Auto-reply has been disabled for this repository in the CodeRabbit settings. The CodeRabbit bot will not respond to your replies unless it is explicitly tagged.

  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@renovate renovate bot changed the title Update dependency marked to v15 Update dependency marked to v15 - autoclosed Dec 8, 2024
@renovate renovate bot closed this Dec 8, 2024
@renovate renovate bot deleted the renovate/marked-15.x branch December 8, 2024 18:33
@renovate renovate bot changed the title Update dependency marked to v15 - autoclosed Update dependency marked to v15 Dec 9, 2024
@renovate renovate bot reopened this Dec 9, 2024
@renovate renovate bot force-pushed the renovate/marked-15.x branch from 6ad6c0a to efccbd1 Compare December 9, 2024 08:48
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