Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 27, 2025

User description

Bumps react-markdown from 9.1.0 to 10.1.0.

Release notes

Sourced from react-markdown's releases.

10.1.0

Add

Fix

Full Changelog: remarkjs/react-markdown@10.0.1...10.1.0

10.0.1

Full Changelog: remarkjs/react-markdown@10.0.0...10.0.1

10.0.0

Full Changelog: remarkjs/react-markdown@9.1.0...10.0.0

Changelog

Sourced from react-markdown's changelog.

Changelog

All notable changes will be documented in this file.

10.0.0 - 2025-02-20

  • aaaa40b Remove support for className prop migrate: see “Remove className” below

Remove className

The className prop was removed. If you want to add classes to some element that wraps the markdown you can explicitly write that element and add the class to it. You can then choose yourself which tag name to use and whether to add other props.

Before:

<Markdown className="markdown-body">{markdown}</Markdown>

After:

<div className="markdown-body">
  <Markdown>{markdown}</Markdown>
</div>
Commits

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

CodeAnt-AI Description

Update markdown rendering to react-markdown 10.1.0 (fixes intermittent render race; adds hook fallback)

What Changed

  • Upgrades the project's markdown renderer to react-markdown 10.1.0 so markdown content rendering uses the latest stable release.
  • Markdown hook usage now supports a fallback display when a custom hook can't render, so pages show fallback content instead of blank or broken output.
  • Fixes an intermittent race condition in markdown hook rendering that could cause wrong or flickering markdown output while pages load.
  • Lockfile and related dependency updates were applied alongside this upgrade; there are no user-visible API changes to how editors or viewers supply markdown content.

Impact

✅ Fewer markdown flickers during page load
✅ Stable rendering when using custom markdown hooks
✅ Reliable fallback display when a custom markdown renderer fails

💡 Usage Guide

Checking Your Pull Request

Every time you make a pull request, our system automatically looks through it. We check for security issues, mistakes in how you're setting up your infrastructure, and common code problems. We do this to make sure your changes are solid and won't cause any trouble later.

Talking to CodeAnt AI

Got a question or need a hand with something in your pull request? You can easily get in touch with CodeAnt AI right here. Just type the following in a comment on your pull request, and replace "Your question here" with whatever you want to ask:

@codeant-ai ask: Your question here

This lets you have a chat with CodeAnt AI about your pull request, making it easier to understand and improve your code.

Example

@codeant-ai ask: Can you suggest a safer alternative to storing this secret?

Preserve Org Learnings with CodeAnt

You can record team preferences so CodeAnt AI applies them in future reviews. Reply directly to the specific CodeAnt AI suggestion (in the same thread) and replace "Your feedback here" with your input:

@codeant-ai: Your feedback here

This helps CodeAnt AI learn and adapt to your team's coding style and standards.

Example

@codeant-ai: Do not flag unused imports.

Retrigger review

Ask CodeAnt AI to review the PR again, by typing:

@codeant-ai: review

Check Your Repository Health

To analyze the health of your code repository, visit our dashboard at https://app.codeant.ai. This tool helps you identify potential issues and areas for improvement in your codebase, ensuring your repository maintains high standards of code health.

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [react-markdown](https://github.com/remarkjs/react-markdown) from 9.1.0 to 10.1.0.
- [Release notes](https://github.com/remarkjs/react-markdown/releases)
- [Changelog](https://github.com/remarkjs/react-markdown/blob/main/changelog.md)
- [Commits](remarkjs/react-markdown@9.1.0...10.1.0)

---
updated-dependencies:
- dependency-name: react-markdown
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from cbwinslow as a code owner October 27, 2025 00:47
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Oct 27, 2025
@keploy
Copy link

keploy bot commented Oct 27, 2025

To generate Unit Tests for this PR, please click here.

@codeant-ai
Copy link
Contributor

codeant-ai bot commented Oct 27, 2025

CodeAnt AI is reviewing your PR.


Thanks for using CodeAnt! 🎉

We're free for open-source projects. if you're enjoying it, help us grow by sharing.

Share on X ·
Reddit ·
LinkedIn

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Oct 27, 2025

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.


Comment @coderabbitai help to get the list of available commands and usage tips.

@sonarqubecloud
Copy link

@codeant-ai codeant-ai bot added the size:M This PR changes 30-99 lines, ignoring generated files label Oct 27, 2025
@codeant-ai
Copy link
Contributor

codeant-ai bot commented Oct 27, 2025

Pull Request Feedback 🔍

🔒 No security issues identified
⚡ Recommended areas for review

  • Breaking API changes
    Upgrading react-markdown from 9.x to 10.x is a major bump and may introduce breaking changes in the component API (props like renderers were removed/renamed to components, hook behavior changed). Search the codebase for usages of react-markdown and verify each usage against v10 API; update callsites accordingly.

  • Remark/rehype plugin compatibility
    Confirm that plugins you use (e.g., remark-gfm) and any rehype plugins remain compatible with react-markdown v10. Plugin option shapes or plugin loading order may have subtle changes that affect rendering (tables, task lists, raw HTML handling).

  • Test & CI failures risk
    This dependency bump can break SSR or client rendering behavior and may surface in unit/integration/E2E tests or CI. Ensure the test suite and app builds run locally/CI after bump; fix any snapshot or rendering regressions.

@codeant-ai
Copy link
Contributor

codeant-ai bot commented Oct 27, 2025

CodeAnt AI finished reviewing your PR.

@github-actions
Copy link

⚠️ PR Title Format Check

Your PR title should start with one of these prefixes:

  • feat:
  • fix:
  • docs:
  • style:
  • refactor:
  • perf:
  • test:
  • build:
  • ci:
  • chore:
  • revert:

Example: feat: add new feature or fix: resolve bug

@github-actions
Copy link

💡 Tip: Link Related Issues

If this PR addresses an existing issue, please link it using:

  • Closes #123
  • Fixes #123
  • Resolves #123

This helps track which issues are being worked on and automatically closes them when the PR is merged.

@github-actions
Copy link

⚠️ Commit Message Lint Warning

The following commits do not follow the Conventional Commits specification:

  • 39188e4: npm(deps): bump react-markdown from 9.1.0 to 10.1.0

Expected format:

type(scope): description

Examples:
  feat: add new search feature
  fix(api): resolve pagination bug
  docs: update README

Valid types: feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert

While not required, following this convention helps with automated changelog generation and semantic versioning.

@github-actions
Copy link

Auto-Review: Documentation Changes

This PR only contains documentation changes. Automatically approved for merge once CI passes.

@github-actions github-actions bot added auto-approved documentation Improvements or additions to documentation labels Oct 27, 2025
@github-actions
Copy link

⚠️ PR Title Format Check

Your PR title should start with one of these prefixes:

  • feat:
  • fix:
  • docs:
  • style:
  • refactor:
  • perf:
  • test:
  • build:
  • ci:
  • chore:
  • revert:

Example: feat: add new feature or fix: resolve bug

@github-actions
Copy link

💡 Tip: Link Related Issues

If this PR addresses an existing issue, please link it using:

  • Closes #123
  • Fixes #123
  • Resolves #123

This helps track which issues are being worked on and automatically closes them when the PR is merged.

@github-actions
Copy link

🔔 Review Reminder

Gentle reminder: this PR is awaiting review from requested reviewers.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

🔔 Review Reminder

This PR has been open for 2 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

🔔 Review Reminder

This PR has been open for 3 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

🔔 Review Reminder

This PR has been open for 4 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

github-actions bot commented Nov 3, 2025

🔔 Review Reminder

This PR has been open for 7 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

github-actions bot commented Nov 4, 2025

🔔 Review Reminder

This PR has been open for 8 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

github-actions bot commented Nov 5, 2025

🔔 Review Reminder

This PR has been open for 9 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

github-actions bot commented Nov 6, 2025

🔔 Review Reminder

This PR has been open for 10 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

github-actions bot commented Nov 7, 2025

🔔 Review Reminder

This PR has been open for 11 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

🔔 Review Reminder

This PR has been open for 14 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

🔔 Review Reminder

This PR has been open for 15 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

🔔 Review Reminder

This PR has been open for 16 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

🔔 Review Reminder

This PR has been open for 17 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

🔔 Review Reminder

This PR has been open for 18 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

🔔 Review Reminder

This PR has been open for 21 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

🔔 Review Reminder

This PR has been open for 22 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

🔔 Review Reminder

This PR has been open for 23 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

🔔 Review Reminder

This PR has been open for 24 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

🔔 Review Reminder

This PR has been open for 25 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

🔔 Review Reminder

This PR has been open for 28 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

🔔 Review Reminder

This PR has been open for 29 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

🔔 Review Reminder

This PR has been open for 30 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

🔔 Review Reminder

This PR has been open for 31 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

🔔 Review Reminder

This PR has been open for 32 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

github-actions bot commented Dec 1, 2025

🔔 Review Reminder

This PR has been open for 35 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

github-actions bot commented Dec 2, 2025

🔔 Review Reminder

This PR has been open for 36 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

github-actions bot commented Dec 3, 2025

🔔 Review Reminder

This PR has been open for 37 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

github-actions bot commented Dec 4, 2025

🔔 Review Reminder

This PR has been open for 38 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

github-actions bot commented Dec 5, 2025

🔔 Review Reminder

This PR has been open for 39 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

github-actions bot commented Dec 8, 2025

🔔 Review Reminder

This PR has been open for 42 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

github-actions bot commented Dec 8, 2025

⚠️ PR Title Format Check

Your PR title should start with one of these prefixes:

  • feat:
  • fix:
  • docs:
  • style:
  • refactor:
  • perf:
  • test:
  • build:
  • ci:
  • chore:
  • revert:

Example: feat: add new feature or fix: resolve bug

@github-actions
Copy link

github-actions bot commented Dec 8, 2025

💡 Tip: Link Related Issues

If this PR addresses an existing issue, please link it using:

  • Closes #123
  • Fixes #123
  • Resolves #123

This helps track which issues are being worked on and automatically closes them when the PR is merged.

@mergify
Copy link
Contributor

mergify bot commented Dec 8, 2025

🧪 CI Insights

Here's what we observed from your CI run for 39188e4.

🟢 All jobs passed!

But CI Insights is watching 👀

@github-actions
Copy link

github-actions bot commented Dec 9, 2025

🔔 Review Reminder

This PR has been open for 43 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

🔔 Review Reminder

This PR has been open for 44 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

@github-actions
Copy link

🔔 Review Reminder

This PR has been open for 45 days without any reviews.

Requested reviewers: @cbwinslow

Please review when you have a chance. Thank you! 🙏

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

auto-approved dependencies Pull requests that update a dependency file documentation Improvements or additions to documentation javascript Pull requests that update javascript code needs-better-commits size:M This PR changes 30-99 lines, ignoring generated files status: in-review

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants