fix(deps): update dependency markdown-to-jsx to v9.7.6#716
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
fix(deps): update dependency markdown-to-jsx to v9.7.6#716renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
Contributor
Coverage Report for packages/configs/vitest-config
File CoverageNo changed files found. |
73d6668 to
124bf46
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
9.7.0→9.7.6Release Notes
quantizor/markdown-to-jsx (markdown-to-jsx)
v9.7.6Compare Source
Patch Changes
565e3ea: fix: add missing_ownerfield on raw React elements for dev-mode compatibilityFixes "Cannot set properties of undefined (setting 'validated')" errors in React 19 dev mode by adding the
_ownerfield that React's reconciler expects on all elements.修复:在原始 React 元素上添加缺失的
_owner字段,解决 React 19 开发模式下的兼容性问题。सुधार: React 19 डेवलपमेंट मोड में "Cannot set properties of undefined" त्रुटि को ठीक करने के लिए raw React तत्वों पर गायब
_ownerफ़ील्ड जोड़ा गया।565e3ea: fix: prevent void elements from receiving children when preceded by a blank lineVoid HTML elements (e.g.
<br>,<hr>,<img>) preceded by a blank line no longer cause React error #137. The parser now returns void elements as content-less blocks, and all compilers guard against passing children to void elements.修复:当空行后跟空元素(如
<br>、<hr>、<img>)时,不再触发 React 错误 #137。解析器现在将空元素作为无内容块返回,所有编译器均防止向空元素传递子元素。सुधार: जब खाली पंक्ति के बाद void तत्व (जैसे
<br>,<hr>,<img>) आते हैं, तो अब React त्रुटि #137 नहीं होती। पार्सर अब void तत्वों को बिना सामग्री वाले ब्लॉक के रूप में लौटाता है, और सभी कंपाइलर void तत्वों को चाइल्ड तत्व देने से रोकते हैं।v9.7.5Compare Source
Patch Changes
cc1a8a7: Fix "Cannot set properties of undefined (setting 'validated')" error introduced in 9.7.1. React's dev-mode reconciler setselement._store.validatedto track element creation source; raw elements created by the fast path now include_store: {}in non-production builds.修复 9.7.1 引入的 "Cannot set properties of undefined (setting 'validated')" 错误。React 开发模式协调器设置
element._store.validated来追踪元素创建来源;快速路径创建的原始元素现在在非生产构建中包含_store: {}。9.7.1 में पेश हुई "Cannot set properties of undefined (setting 'validated')" त्रुटि ठीक की गई। React के dev-mode reconciler द्वारा
element._store.validatedसेट करने के लिए, फास्ट पाथ से बनाए गए raw elements अब non-production builds में_store: {}शामिल करते हैं।v9.7.4Compare Source
Patch Changes
01b68df: - Fix HTML entity decoding in link titles (e.g.–now correctly decodes to–)<pre>,<script>,<style>, and<textarea>content being incorrectly parsed as markdown instead of rendered verbatim–现在正确解码为–)<pre>、<script>、<style>和<textarea>内容被错误解析为 Markdown 而非原始文本渲染的问题–अब सही ढंग से–में बदलता है)<pre>,<script>,<style>, और<textarea>सामग्री को Markdown के बजाय यथावत् रेंडर करेंv9.7.3Compare Source
Patch Changes
2dca780: Improve HTML compiler performance by ~57%, bringing it to parity with the React compiler.HTML 编译器性能提升约 57%,与 React 编译器持平。
HTML कंपाइलर के प्रदर्शन में ~57% सुधार, React कंपाइलर के बराबर।
v9.7.2Compare Source
Patch Changes
30db3f3: Accept case-insensitive GFM alert blockquote syntax (e.g.,[!Tip],[!tip]) matching GitHub's behavior.接受不区分大小写的 GFM 警告引用块语法(例如
[!Tip]、[!tip]),与 GitHub 的行为保持一致。GFM अलर्ट ब्लॉककोट सिंटैक्स में केस-इनसेंसिटिव मिलान स्वीकार करें (जैसे
[!Tip],[!tip]), GitHub के व्यवहार के अनुरूप।da2eb8c: Moved benchmarking and documentation website dev dependencies out of the library package for cleaner dependency management.将基准测试和文档网站开发依赖项移出库包以实现更清晰的依赖管理。
बेंचमार्किंग और डॉक्यूमेंटेशन वेबसाइट डेव डिपेंडेंसी को साफ डिपेंडेंसी मैनेजमेंट के लिए लाइब्रेरी पैकेज से बाहर ले जाया गया।
v9.7.1Compare Source
Patch Changes
9830b70: Fix entity resolution in CodeSandbox and other bundlers by exposing entities as a public subpath export. Bundlers now resolvemarkdown-to-jsx/entitiesusing thebrowsercondition, ensuring the optimized DOM-based decoder (~300B) is used in browsers instead of the full entity table (~29KB).通过将实体作为公共子路径导出来修复 CodeSandbox 和其他打包工具中的实体解析。打包工具现在使用
browser条件解析markdown-to-jsx/entities,确保浏览器使用优化的基于 DOM 的解码器(约 300B)而不是完整的实体表(约 29KB)。CodeSandbox और अन्य बंडलर में एंटिटी रिज़ॉल्यूशन को ठीक करने के लिए एंटिटी को सार्वजनिक सबपाथ एक्सपोर्ट के रूप में एक्सपोज़ किया गया। बंडलर अब
browserकंडीशन का उपयोग करकेmarkdown-to-jsx/entitiesको रिज़ॉल्व करते हैं, यह सुनिश्चित करते हुए कि ब्राउज़र में पूर्ण एंटिटी टेबल (~29KB) के बजाय ऑप्टिमाइज़्ड DOM-आधारित डिकोडर (~300B) का उपयोग किया जाता है।e537dca: Bypass React.createElement for ~2x faster JSX output by constructing raw React element objects directly. The $$typeof symbol is auto-detected from the installed React version for forward compatibility. Falls back to createElement when a custom createElement option is provided.绕过 React.createElement,通过直接构造原始 React 元素对象实现约 2 倍的 JSX 输出速度提升。$$typeof 符号从已安装的 React 版本自动检测以确保前向兼容性。当提供自定义 createElement 选项时回退到 createElement。
React.createElement को बायपास करके कच्चे React एलिमेंट ऑब्जेक्ट सीधे बनाकर ~2x तेज़ JSX आउटपुट। $$typeof सिंबल आगे की संगतता के लिए स्थापित React संस्करण से स्वतः पहचाना जाता है। कस्टम createElement विकल्प प्रदान करने पर createElement पर वापस आता है।
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.
This PR was generated by Mend Renovate. View the repository job log.