From 03762eca8b165937ea1934a6c6df8d98b7f4492b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 00:18:08 -0500 Subject: [PATCH] Version Packages (#621) Co-authored-by: github-actions[bot] --- .changeset/afraid-lobsters-complain.md | 5 ----- .changeset/chatty-waves-invite.md | 5 ----- .changeset/chilled-kings-retire.md | 5 ----- CHANGELOG.md | 8 ++++++++ package.json | 2 +- 5 files changed, 9 insertions(+), 16 deletions(-) delete mode 100644 .changeset/afraid-lobsters-complain.md delete mode 100644 .changeset/chatty-waves-invite.md delete mode 100644 .changeset/chilled-kings-retire.md diff --git a/.changeset/afraid-lobsters-complain.md b/.changeset/afraid-lobsters-complain.md deleted file mode 100644 index 6afb5948..00000000 --- a/.changeset/afraid-lobsters-complain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'markdown-to-jsx': patch ---- - -Fix false detection of tables in some scenarios. diff --git a/.changeset/chatty-waves-invite.md b/.changeset/chatty-waves-invite.md deleted file mode 100644 index 62d60dca..00000000 --- a/.changeset/chatty-waves-invite.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'markdown-to-jsx': patch ---- - -Handle `class` attribute from arbitrary HTML properly to avoid React warnings. diff --git a/.changeset/chilled-kings-retire.md b/.changeset/chilled-kings-retire.md deleted file mode 100644 index da53c0dc..00000000 --- a/.changeset/chilled-kings-retire.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'markdown-to-jsx': patch ---- - -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. diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ada1a3c..cdff4c21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # markdown-to-jsx +## 7.6.2 + +### 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. + ## 7.6.1 ### Patch Changes diff --git a/package.json b/package.json index 153dff1f..cab05845 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "description": "Convert markdown to JSX with ease for React and React-like projects. Super lightweight and highly configurable.", "homepage": "https://markdown-to-jsx.quantizor.dev", "license": "MIT", - "version": "7.6.1", + "version": "7.6.2", "publishConfig": { "access": "public" },