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 markdown-to-jsx to v7.7.4 #9339

Merged
merged 1 commit into from
Feb 25, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 13, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
markdown-to-jsx (source) 7.5.0 -> 7.7.4 age adoption passing confidence

Release Notes

quantizor/markdown-to-jsx (markdown-to-jsx)

v7.7.4

Compare Source

Patch Changes
  • adc08c7: Further optimize the plain text splitting regex.
  • c8bc5f3: Remove redundant detectors when processing paragraphs.
  • d96a8d8: Replace some regexes with optimized functions to avoid polynomial time scenarios. Also fixes compatibility issues in some older browsers with the trimEnd API.
  • 7be3d77: Optimize regexes and parsing to do less work.
  • cf7693c: Rework inline code syntax handling, handle escaped characters in code blocks correctly so they render without the backslash.

v7.7.3

Compare Source

Patch Changes
  • 8026103: Handle paragraph splitting better, fixes #​641.
  • 1ea00bb: Adjust table row parsing to better handle inline syntaxes and improve performance.

v7.7.2

Compare Source

Patch Changes
  • 52a727c: Use ReactNode instead of ReactChild for React 19 compatibility
  • 4fa87d8: Bump ws from 8.11.0 to 8.18.0

v7.7.1

Compare Source

Patch Changes
  • 9d42449: Factor out unnecessary element cloning.
  • 8920038: Remove use of explicit React.createElement.

v7.7.0

Compare Source

Minor Changes
  • 20777bf: Add support for GFM alert-style blockquotes.

    > [!Note]
    > This is a note-flavored alert blockquote. The "Note" text is injected as a `<header>` by
    > default and the blockquote can be styled via the injected class `markdown-alert-note`
    > for example.
Patch Changes
  • 5d7900b: Adjust type signature for <Markdown> component to allow for easier composition.
  • 918b44b: Use newer React.JSX.* namespace instead of JSX.* for React 19 compatibility.
  • 91a5948: Arbitrary HTML no longer punches out pipes when parsing rows. If you absolutely need a pipe character that isn't a table separator, either escape it or enclose it in backticks to trigger inline code handling.
  • 23caecb: Drop encountered ref attributes when processing inline HTML, React doesn't handle it well.

v7.6.2

Compare Source

Patch Changes
  • 0274445: Fix false detection of tables in some scenarios.
  • 69f815e: Handle class attribute from arbitrary HTML properly to avoid React warnings.
  • 857809a: Fenced code blocks are now tolerant to a missing closing sequence; this improves use in LLM scenarios where the code block markdown is being streamed into the editor in chunks.

v7.6.1

Compare Source

Patch Changes
  • 87d8bd3: Handle class attribute from arbitrary HTML properly to avoid React warnings.

v7.6.0

Compare Source

Minor Changes
  • 2281a4d: Add options.disableAutoLink to customize bare URL handling behavior.

    By default, bare URLs in the markdown document will be converted into an anchor tag. This behavior can be disabled if desired.

    <Markdown options={{ disableAutoLink: true }}>
      The URL https://quantizor.dev will not be rendered as an anchor tag.
    </Markdown>
    
    // or
    
    compiler(
      'The URL https://quantizor.dev will not be rendered as an anchor tag.',
      { disableAutoLink: true }
    )
    
    // renders:
    
    <span>
      The URL https://quantizor.dev will not be rendered as an anchor tag.
    </span>
Patch Changes
  • fb3d716: Simplify handling of fallback scenario if a link reference is missing its corresponding footnote.

v7.5.1

Compare Source

Patch Changes
  • b16f668: Fix issue with lookback cache resulting in false detection of lists inside lists in some scenarios
  • 58b96d3: fix: handle empty HTML tags more consistently #​597

Configuration

📅 Schedule: Branch creation - "after 10pm every weekday,every weekend,before 5am every weekday" in timezone Europe/Paris, 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 added dependencies use for pull requests that update a dependency file filigran team use to identify PR from the Filigran team labels Dec 13, 2024
Copy link

codecov bot commented Dec 13, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 64.32%. Comparing base (c7a2358) to head (959232e).
Report is 32 commits behind head on master.

Additional details and impacted files
@@           Coverage Diff           @@
##           master    #9339   +/-   ##
=======================================
  Coverage   64.32%   64.32%           
=======================================
  Files         656      656           
  Lines       63037    63037           
  Branches     6992     6989    -3     
=======================================
+ Hits        40546    40550    +4     
+ Misses      22491    22487    -4     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/markdown-to-jsx-7.x branch from ccbd310 to 7b96e80 Compare December 18, 2024 22:01
@renovate renovate bot changed the title Update dependency markdown-to-jsx to v7.7.1 Update dependency markdown-to-jsx to v7.7.2 Dec 18, 2024
@renovate renovate bot changed the title Update dependency markdown-to-jsx to v7.7.2 Update dependency markdown-to-jsx to v7.7.3 Jan 7, 2025
@renovate renovate bot force-pushed the renovate/markdown-to-jsx-7.x branch from 7b96e80 to e4f7797 Compare January 7, 2025 21:10
@richard-julien richard-julien force-pushed the master branch 5 times, most recently from b414944 to c7f4cb7 Compare January 13, 2025 09:27
@renovate renovate bot force-pushed the renovate/markdown-to-jsx-7.x branch from e4f7797 to 64049c4 Compare February 5, 2025 22:36
@renovate renovate bot force-pushed the renovate/markdown-to-jsx-7.x branch from 64049c4 to d44d8fb Compare February 14, 2025 00:32
@renovate renovate bot force-pushed the renovate/markdown-to-jsx-7.x branch from d44d8fb to 959232e Compare February 18, 2025 00:25
@renovate renovate bot changed the title Update dependency markdown-to-jsx to v7.7.3 Update dependency markdown-to-jsx to v7.7.4 Feb 18, 2025
@labo-flg labo-flg merged commit 6a942fd into master Feb 25, 2025
9 checks passed
@labo-flg labo-flg deleted the renovate/markdown-to-jsx-7.x branch February 25, 2025 16:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies use for pull requests that update a dependency file filigran team use to identify PR from the Filigran team
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant