Skip to content

Build(deps): bump html-to-markdown-rs from 2.30.0 to 3.8.2 in /fuzz - #297

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/fuzz/html-to-markdown-rs-3.8.2
Closed

Build(deps): bump html-to-markdown-rs from 2.30.0 to 3.8.2 in /fuzz#297
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/fuzz/html-to-markdown-rs-3.8.2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 21, 2026

Copy link
Copy Markdown
Contributor

Bumps html-to-markdown-rs from 2.30.0 to 3.8.2.

Release notes

Sourced from html-to-markdown-rs's releases.

v3.8.2

Swift Package Manager

Add to your Package.swift:

.package(url: "https://github.com/xberg-io/html-to-markdown", from: "3.8.2")

The Swift binding is distributed as a pre-built artifact bundle. No Rust toolchain required.

Artifact: HtmlToMarkdown-rs.artifactbundle.zip Checksum: b902de73c91fc7bf34441bdedd65a9904cb2763db5c94cfdeccb46da594f3c72

Zig

Add to your build.zig.zon:

.dependencies = .{
    .html-to-markdown-rs-zig = .{\n        .url = \"https://github.com/xberg-io/html-to-markdown/releases/download/v3.8.2/html-to-markdown-rs-zig-v3.8.2.tar.gz\",\n        .hash = \"html_to_markdown_rs-3.8.2-QtXyW803AQDu_fgSpeirhdTWsvAh1U-XyMNST9BUVrlB\",\n    },\n},\n```\n

v3.8.1

Swift Package Manager

Add to your Package.swift:

.package(url: "https://github.com/xberg-io/html-to-markdown", from: "3.8.1")
</code></pre>
<p>The Swift binding is distributed as a pre-built artifact bundle. No Rust toolchain required.</p>
<p><strong>Artifact</strong>: <a href="https://github.com/xberg-io/html-to-markdown/releases/download/v3.8.1/HtmlToMarkdown-rs.artifactbundle.zip">HtmlToMarkdown-rs.artifactbundle.zip</a>
<strong>Checksum</strong>: <code>22a18ff610fb70d069124970ea8ac824d93731ff7140b13cb5e747153c1e1c58</code></p>
<!-- raw HTML omitted -->
<h2>Zig</h2>
<p>Add to your <code>build.zig.zon</code>:</p>
<pre><code>.dependencies = .{
    .html-to-markdown-rs-zig = .{\n        .url = \&quot;https://github.com/xberg-io/html-to-markdown/releases/download/v3.8.1/html-to-markdown-rs-zig-v3.8.1.tar.gz\&quot;,\n        .hash = \&quot;html_to_markdown_rs-3.8.1-QtXyW803AQC8DSTcdTAfB2GelrmxNA92CwyVoyGLIQhV\&quot;,\n    },\n},\n```\n

v3.8.0

Swift Package Manager

Add to your Package.swift:
&lt;/tr&gt;&lt;/table&gt;
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>

<p><em>Sourced from <a href="https://github.com/xberg-io/html-to-markdown/blob/main/CHANGELOG.md&quot;&gt;html-to-markdown-rs's changelog</a>.</em></p>
<blockquote>
<h1>Changelog</h1>
<p>All notable changes to html-to-markdown will be documented in this file.</p>
<p>The format is based on <a href="https://keepachangelog.com/en/1.0.0/&quot;&gt;Keep a Changelog</a>,
and this project adheres to <a href="https://semver.org/spec/v2.0.0.html&quot;&gt;Semantic Versioning</a>.</p>
<h2>[Unreleased]</h2>
<h3>Changed</h3>
<ul>
<li>Refine the depth-limit warning (<a href="https://redirect.github.com/xberg-io/html-to-markdown/issues/434&quot;&gt;#434&lt;/a>): the <code>DepthLimitExceeded</code> message now reports the effective
limit value, and the warning is emitted exactly once when a deeply-nested DOM is truncated.
Thanks <a href="https://github.com/br411&quot;&gt;&lt;code&gt;@​br411&lt;/code&gt;&lt;/a> (<a href="https://redirect.github.com/xberg-io/html-to-markdown/issues/428&quot;&gt;#428&lt;/a&gt;).&lt;/li>
</ul>
<h2>[3.9.0] - 2026-07-19</h2>
<h3>Added</h3>
<ul>
<li><strong>Configurable traversal-depth ceiling</strong> (<a href="https://redirect.github.com/xberg-io/html-to-markdown/issues/434&quot;&gt;#434&lt;/a>): callers may now raise the recursion limit above the
conservative native default (64) by setting an explicit <code>max_depth</code>, honored up to an internal
backstop of 1024. Deeply-nested email HTML that previously lost content past depth 64 now converts.
When the limit does truncate a subtree, a <code>DepthLimitExceeded</code> warning is surfaced instead of the
content being dropped silently.</li>
</ul>
<h3>Fixed</h3>
<ul>
<li><strong><code>&lt;br&gt;</code> in table cells with <code>br_in_tables</code></strong> (<a href="https://redirect.github.com/xberg-io/html-to-markdown/issues/429&quot;&gt;#429&lt;/a>): a <code>&lt;br&gt;</code> inside a table cell now emits a literal
<code>&lt;br&gt;</code> (valid single-line GFM) instead of a physical newline that broke the row.</li>
<li><strong>Newline-only inline span separator</strong> (<a href="https://redirect.github.com/xberg-io/html-to-markdown/issues/430&quot;&gt;#430&lt;/a>): in normalized whitespace mode a <code>&lt;span&gt;</code> whose sole
content is a newline now collapses to a single separating space instead of being dropped, so adjacent
inline text no longer glues together.</li>
<li><strong>Paragraph after a table inside a blockquote</strong> (<a href="https://redirect.github.com/xberg-io/html-to-markdown/issues/431&quot;&gt;#431&lt;/a>): the span newline-pop no longer crosses a
table-row boundary, so a following paragraph is not glued onto the delimiter row.</li>
<li><strong>Intentional hard break inside a span</strong> (<a href="https://redirect.github.com/xberg-io/html-to-markdown/issues/432&quot;&gt;#432&lt;/a>): the span newline-pop no longer eats a <code>&lt;br&gt;</code> hard
break (<code> \n</code> / <code>\\n</code>), preserving the line break.</li>
<li><strong><code>keep_inline_images_in</code> inside layout-table cells</strong> (<a href="https://redirect.github.com/xberg-io/html-to-markdown/issues/433&quot;&gt;#433&lt;/a>): images inside a <code>td</code>/<code>th</code> listed in
<code>keep_inline_images_in</code> now stay as markdown when a Tier-2 layout table converts cells as inline,
instead of reducing to alt text.</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Regenerate all bindings with alef 0.37.0.</li>
<li>Update dependencies across language packages.</li>
</ul>
<h2>[3.8.3] - 2026-07-09</h2>
<h3>Fixed</h3>
<ul>
<li><strong>Java visitor API</strong> (<a href="https://redirect.github.com/xberg-io/html-to-markdown/issues/426&quot;&gt;#426&lt;/a>): <code>ConversionOptions.builder().withVisitor(...)</code> now works. The visitor</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>

<ul>
<li><a href="https://github.com/xberg-io/html-to-markdown/commit/0e0861d549141c2ae3c9a7b647bbb10c92b305b3&quot;&gt;&lt;code&gt;0e0861d&lt;/code&gt;&lt;/a> chore(release): substitute Swift checksum for 3.8.2</li>
<li><a href="https://github.com/xberg-io/html-to-markdown/commit/9785a2c167ae2349691d4fa0412a6611d1a10be4&quot;&gt;&lt;code&gt;9785a2c&lt;/code&gt;&lt;/a> chore: release v3.8.2</li>
<li><a href="https://github.com/xberg-io/html-to-markdown/commit/a43f67a9323b9760568405ca44874552825e038d&quot;&gt;&lt;code&gt;a43f67a&lt;/code&gt;&lt;/a> chore: upgrade deps and regenerate bindings</li>
<li><a href="https://github.com/xberg-io/html-to-markdown/commit/3ae65fb6c80e29cd689b1d12d8c5e1ba7e3e5208&quot;&gt;&lt;code&gt;3ae65fb&lt;/code&gt;&lt;/a> docs: document poly pre-commit hooks in CONTRIBUTING</li>
<li><a href="https://github.com/xberg-io/html-to-markdown/commit/2a4ea8408cfa1f770b738b73a0da0f1e01105c4b&quot;&gt;&lt;code&gt;2a4ea84&lt;/code&gt;&lt;/a> chore: adopt poly formatting + regenerate bindings</li>
<li><a href="https://github.com/xberg-io/html-to-markdown/commit/30c3fe1207888ffb509115d87b29521045b89eab&quot;&gt;&lt;code&gt;30c3fe1&lt;/code&gt;&lt;/a> chore: repoint package.json scripts to poly; drop phpstan/php-cs-fixer from p...</li>
<li><a href="https://github.com/xberg-io/html-to-markdown/commit/a0d474d2de60269201e45e2ad32d4d042dad12fa&quot;&gt;&lt;code&gt;a0d474d&lt;/code&gt;&lt;/a> chore: remove prek + phpstan/php-cs-fixer leftover (poly hooks + mago now)</li>
<li><a href="https://github.com/xberg-io/html-to-markdown/commit/7e3efa4e40b9fa6fc62fc20ef0a9516c3227f2d5&quot;&gt;&lt;code&gt;7e3efa4&lt;/code&gt;&lt;/a> chore: remove dead .oxfmtrc.json/.oxlintrc.json</li>
<li><a href="https://github.com/xberg-io/html-to-markdown/commit/9084fc4711332646801489706aeefaa8cf3eb652&quot;&gt;&lt;code&gt;9084fc4&lt;/code&gt;&lt;/a> chore(release): 3.8.1</li>
<li><a href="https://github.com/xberg-io/html-to-markdown/commit/484ff9b616f9ccdee1f5c0b0b855312e6aaf038c&quot;&gt;&lt;code&gt;484ff9b&lt;/code&gt;&lt;/a> fix: avoid stack overflows on deeply nested HTML (<a href="https://redirect.github.com/xberg-io/html-to-markdown/issues/421&quot;&gt;#421&lt;/a&gt;)&lt;/li>
<li>Additional commits viewable in <a href="https://github.com/xberg-io/html-to-markdown/compare/v2.30.0...v3.8.2&quot;&gt;compare view</a></li>
</ul>
</details>

<br />

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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 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)

Bumps [html-to-markdown-rs](https://github.com/xberg-io/html-to-markdown) from 2.30.0 to 3.8.2.
- [Release notes](https://github.com/xberg-io/html-to-markdown/releases)
- [Changelog](https://github.com/xberg-io/html-to-markdown/blob/main/CHANGELOG.md)
- [Commits](xberg-io/html-to-markdown@v2.30.0...v3.8.2)

---
updated-dependencies:
- dependency-name: html-to-markdown-rs
  dependency-version: 3.8.2
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added cargo Dependabot channel for Rust crate updates. dependencies Dependency updates, applied to every Dependabot pull request. labels Jul 21, 2026
@github-actions
github-actions Bot enabled auto-merge (squash) July 21, 2026 13:30
@github-actions github-actions Bot added scope: dependencies Dependency updates size: M 50-199 changed lines risk: medium Business logic, config, or moderate-risk modules contributor: core 20+ merged PRs labels Jul 21, 2026

@codescene-access codescene-access Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No quality gates enabled for this code.

@dependabot @github

dependabot Bot commented on behalf of github Jul 24, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #312.

@dependabot dependabot Bot closed this Jul 24, 2026
auto-merge was automatically disabled July 24, 2026 13:23

Pull request was closed

@dependabot
dependabot Bot deleted the dependabot/cargo/fuzz/html-to-markdown-rs-3.8.2 branch July 24, 2026 13:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

cargo Dependabot channel for Rust crate updates. contributor: core 20+ merged PRs dependencies Dependency updates, applied to every Dependabot pull request. risk: medium Business logic, config, or moderate-risk modules scope: dependencies Dependency updates size: M 50-199 changed lines

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants