Bumps [vendor/bdwgc](https://github.com/bdwgc/bdwgc) from `39b0d4e` to
`331e007`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/bdwgc/bdwgc/commit/331e007fffa19b6344982b7eb3f4ea8f973f68c7"><code>331e007</code></a>
Change clear_all_fl_marks to return number of bytes on free lists</li>
<li><a
href="https://github.com/bdwgc/bdwgc/commit/649ed1324208e8f1432d78024e25f85bb02eb641"><code>649ed13</code></a>
Update copyright information in allchblk.c and other modified files
(2026)</li>
<li><a
href="https://github.com/bdwgc/bdwgc/commit/330df7094b64221b11c09356fedb6ff9dd7b68cf"><code>330df70</code></a>
Define and use THREAD_GCJ_FREELISTS internal macro</li>
<li><a
href="https://github.com/bdwgc/bdwgc/commit/685b501e0e2af4ae1eeaca7afbe1469c90a7b77c"><code>685b501</code></a>
Fix IGNORE_DYNAMIC_LOADING macro name in build.zig</li>
<li><a
href="https://github.com/bdwgc/bdwgc/commit/e8572a28b716b3d04c059e2135b588600f9bc890"><code>e8572a2</code></a>
Do not define set_all_fl_marks() if NO_FIND_LEAK</li>
<li><a
href="https://github.com/bdwgc/bdwgc/commit/7ea0a4a5cba91a33d8946a47863daa4dadbfd2ff"><code>7ea0a4a</code></a>
Add TODO items in GC_mark_some</li>
<li><a
href="https://github.com/bdwgc/bdwgc/commit/efa58a1257bcf14e6e7fd6769c78166af909801d"><code>efa58a1</code></a>
Disable incremental mode completely if saving back pointers is on</li>
<li>See full diff in <a
href="https://github.com/bdwgc/bdwgc/compare/39b0d4ecf9bdc65a971e9423f4080d40814da6ce...331e007fffa19b6344982b7eb3f4ea8f973f68c7">compare
view</a></li>
</ul>
</details>
<br />
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-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [libc](https://github.com/rust-lang/libc) from 0.2.186 to 0.2.188.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/libc/releases">libc's
releases</a>.</em></p>
<blockquote>
<h2>0.2.188</h2>
<h3>Changed</h3>
<ul>
<li>Restore <code>Send</code> and <code>Sync</code> for <code>DIR</code>
(<a
href="https://github.com/rust-lang/libc/commit/35b062263401733cd89065c6a553640f2ba51ff1">35b062263401</a>)</li>
</ul>
<p>These were removed in 0.2.187 because <code>libc</code> does not
actually make <code>Send</code> and <code>Sync</code>
guarantees about <code>DIR</code> (or other extern types), but this
caused some crates to break.
The traits are added back for now to allow time to migrate, but will be
removed again
in the future; please make sure your crates are not relying on
<code>libc::DIR: Send</code> or
<code>libc::DIR: Sync</code>.</p>
<h2>0.2.187</h2>
<p>This release contains a number of improvements related to 64-bit
<code>time_t</code> configuration.
Of note the existing <code>RUST_LIBC_UNSTABLE_*</code> environment
variables have been replaced
with configuration options. The new way to use these is:</p>
<pre lang="sh"><code>RUSTFLAGS='--cfg=libc_unstable_musl_v1_2_3' cargo
...
RUSTFLAGS='--cfg=libc_unstable_gnu_time_bits="64"' cargo ...
</code></pre>
<p>Being able to set this via <code>RUSTFLAGS</code> makes it easier to
only apply configuration to
specific targets (and notably, not the host if build scripts are
used).</p>
<p>There are two other notable changes:</p>
<ul>
<li>
<p>The 32-bit <code>windows-gnu</code> targets now respect
<code>libc_unstable_gnu_time_bits</code></p>
</li>
<li>
<p>uClibc now supports a similar configuration option:</p>
<pre lang="sh"><code>RUSTFLAGS='--cfg=libc_unstable_uclibc_time64'
</code></pre>
</li>
</ul>
<p>As a reminder, these options are under active development and may
change in the future
(hence the "unstable" in the name). It likely that we will
harmonize everything under a
single configuration option before considering them stable.</p>
<h3>Support</h3>
<ul>
<li>Add support for <code>aarch64-unknown-linux-pauthtest</code> (<a
href="https://redirect.github.com/rust-lang/libc/pull/5065">#5065</a>)</li>
<li>Add support for new QNX targets (<a
href="https://redirect.github.com/rust-lang/libc/pull/5241">#5241</a>)</li>
<li>Better document breaking change policy and recommended usage (<a
href="https://redirect.github.com/rust-lang/libc/pull/5179">#5179</a>)</li>
</ul>
<h3>Added</h3>
<ul>
<li>Android: Add <code>POSIX_SPAWN_*</code> constants (<a
href="https://redirect.github.com/rust-lang/libc/pull/5104">#5104</a>)</li>
<li>Android: Add <code>getpwent</code>, <code>setpwent</code>, and
<code>endpwent</code> (<a
href="https://redirect.github.com/rust-lang/libc/pull/5160">#5160</a>)</li>
<li>Android: Add <code>preadv2</code> and <code>pwritev2</code> (<a
href="https://redirect.github.com/rust-lang/libc/pull/5157">#5157</a>)</li>
<li>Android: Add <code>seccomp_notif*</code> structures (<a
href="https://redirect.github.com/rust-lang/libc/pull/5224">#5224</a>)</li>
<li>Android: Add <code>timer_[create, delete, getoverrun, gettime,
settime]</code> (<a
href="https://redirect.github.com/rust-lang/libc/pull/5108">#5108</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/libc/blob/0.2.188/CHANGELOG.md">libc's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/rust-lang/libc/compare/0.2.187...0.2.188">0.2.188</a>
- 2026-07-21</h2>
<h3>Changed</h3>
<ul>
<li>Restore <code>Send</code> and <code>Sync</code> for <code>DIR</code>
(<a
href="https://github.com/rust-lang/libc/commit/35b062263401733cd89065c6a553640f2ba51ff1">35b062263401</a>)</li>
</ul>
<p>These were removed in 0.2.187 because <code>libc</code> does not
actually make <code>Send</code> and <code>Sync</code>
guarantees about <code>DIR</code> (or other extern types), but this
caused some crates to break.
The traits are added back for now to allow time to migrate, but will be
removed again
in the future; please make sure your crates are not relying on
<code>libc::DIR: Send</code> or
<code>libc::DIR: Sync</code>.</p>
<h2><a
href="https://github.com/rust-lang/libc/compare/0.2.186...0.2.187">0.2.187</a>
- 2026-07-20</h2>
<p>This release contains a number of improvements related to 64-bit
<code>time_t</code> configuration.
Of note the existing <code>RUST_LIBC_UNSTABLE_*</code> environment
variables have been replaced
with configuration options. The new way to use these is:</p>
<pre lang="sh"><code>RUSTFLAGS='--cfg=libc_unstable_musl_v1_2_3' cargo
...
RUSTFLAGS='--cfg=libc_unstable_gnu_time_bits="64"' cargo ...
</code></pre>
<p>Being able to set this via <code>RUSTFLAGS</code> makes it easier to
only apply configuration to
specific targets (and notably, not the host if build scripts are
used).</p>
<p>There are two other notable changes:</p>
<ul>
<li>
<p>The 32-bit <code>windows-gnu</code> targets now respect
<code>libc_unstable_gnu_time_bits</code></p>
</li>
<li>
<p>uClibc now supports a similar configuration option:</p>
<pre lang="sh"><code>RUSTFLAGS='--cfg=libc_unstable_uclibc_time64'
</code></pre>
</li>
</ul>
<p>As a reminder, these options are under active development and may
change in the future
(hence the "unstable" in the name). It likely that we will
harmonize everything under a
single configuration option before considering them stable.</p>
<h3>Support</h3>
<ul>
<li>Add support for <code>aarch64-unknown-linux-pauthtest</code> (<a
href="https://redirect.github.com/rust-lang/libc/pull/5065">#5065</a>)</li>
<li>Add support for new QNX targets (<a
href="https://redirect.github.com/rust-lang/libc/pull/5241">#5241</a>)</li>
<li>Better document breaking change policy and recommended usage (<a
href="https://redirect.github.com/rust-lang/libc/pull/5179">#5179</a>)</li>
</ul>
<h3>Added</h3>
<ul>
<li>Android: Add <code>POSIX_SPAWN_*</code> constants (<a
href="https://redirect.github.com/rust-lang/libc/pull/5104">#5104</a>)</li>
<li>Android: Add <code>getpwent</code>, <code>setpwent</code>, and
<code>endpwent</code> (<a
href="https://redirect.github.com/rust-lang/libc/pull/5160">#5160</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/libc/commit/7b7b771895c2a5ae75f358fadb893845ce9ae6cf"><code>7b7b771</code></a>
libc: Release 0.2.188</li>
<li><a
href="https://github.com/rust-lang/libc/commit/ba6a6b56ae09e0640a2b2e27f3f6abdb4b3d243f"><code>ba6a6b5</code></a>
[0.2] Restore <code>Send</code> and <code>Sync</code> for
<code>DIR</code></li>
<li><a
href="https://github.com/rust-lang/libc/commit/ee051902acd7ee674e1916e6b12297da3975b351"><code>ee05190</code></a>
libc: Release 0.2.187</li>
<li><a
href="https://github.com/rust-lang/libc/commit/13b22188be02a58d669661c7a177d48d62c7eef5"><code>13b2218</code></a>
unix: add preadv2 and pwritev2 to android</li>
<li><a
href="https://github.com/rust-lang/libc/commit/abc9903188c8454920295d5548cbeb4d7d5f4896"><code>abc9903</code></a>
docs: Improve the pull request template and CONTRIBUTING.md</li>
<li><a
href="https://github.com/rust-lang/libc/commit/c452b48fb208de60fc2788a4a0857de88d8ebece"><code>c452b48</code></a>
util: Restructure to use one class per subcommand</li>
<li><a
href="https://github.com/rust-lang/libc/commit/cbc70c94d25504059b8bd9ba559a20d234c61308"><code>cbc70c9</code></a>
nuttx: more document comments</li>
<li><a
href="https://github.com/rust-lang/libc/commit/2589ea31957596d3cd217e5b36d1ffe9ced9dd83"><code>2589ea3</code></a>
nuttx: add TCP_MAXSEG definitions</li>
<li><a
href="https://github.com/rust-lang/libc/commit/6be50c108554b169a254326f457c1839142fb007"><code>6be50c1</code></a>
nuttx: add pipe2 definitions</li>
<li><a
href="https://github.com/rust-lang/libc/commit/450034486a93a673e4f108ed7a09ebbdac4e3597"><code>4500344</code></a>
nuttx: add poll definitions</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/libc/compare/0.2.186...0.2.188">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
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-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps
[lycheeverse/lychee-action](https://github.com/lycheeverse/lychee-action)
from 2.8.0 to 2.9.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/lycheeverse/lychee-action/releases">lycheeverse/lychee-action's
releases</a>.</em></p>
<blockquote>
<h2>v2.9.0</h2>
<h2>Summary</h2>
<p>This release updates the default lychee version from
<code>v0.23.0</code> to <code>v0.24.2</code>.</p>
<p>The main reason for this release is compatibility with the new lychee
<code>0.24.x</code> release artifacts. Starting with lychee
<code>v0.24.0</code>, the archive layout changed, and the
<code>lychee</code> binary may now be packaged inside a subdirectory.
<code>lychee-action</code> now detects that layout automatically, so
users can upgrade without changing their workflows.</p>
<p>If you use:</p>
<pre lang="yaml"><code>uses: lycheeverse/lychee-action@v2
</code></pre>
<p>you will get the new version once the floating <code>v2</code> tag
has been updated. If you pin exact versions, update to:</p>
<pre lang="yaml"><code>uses: lycheeverse/lychee-action@v2.9.0
</code></pre>
<h2>What’s new from lychee <code>v0.24.x</code></h2>
<h3>Better diagnostics</h3>
<p>lychee now reports line and column numbers for detected links. This
makes broken link reports easier to act on, especially in larger
documentation sites or generated reports.</p>
<h3>Text fragment checking</h3>
<p>lychee can now check URL text fragments, such as links containing
<code>#:~:text=...</code>. This helps catch links that point to a valid
page but no longer points to the intended highlighted text.</p>
<h3>Sitemap support</h3>
<p>lychee can now read <code>sitemap.xml</code> inputs. This is useful
for checking published websites or generated documentation sites where
the sitemap is the easiest source of URLs to validate.</p>
<h3>JUnit output</h3>
<p>lychee now supports JUnit output. This makes it easier to integrate
link checking results with CI systems and test reporting tools that
understand JUnit XML.</p>
<h3>Redirect and remap visibility</h3>
<p>lychee can now show redirects and remaps more clearly. This helps
explain why a URL was checked as a different final URL and makes
debugging link-checking behavior easier.</p>
<h3>Multiple config files</h3>
<p>lychee now supports multiple configuration files and expanded config
handling. This is useful for repositories that split documentation,
website, or package-specific link-checking settings.</p>
<h3>Timeout handling</h3>
<p>lychee can now accept timeouts explicitly. This gives users more
control over how strict their link checks should be for flaky or slow
endpoints.</p>
<h2>Fixes and reliability improvements</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/lycheeverse/lychee-action/commit/e7477775783ea5526144ba13e8db5eec57747ce8"><code>e747777</code></a>
Bump actions/cache from 5 to 6 (<a
href="https://redirect.github.com/lycheeverse/lychee-action/issues/340">#340</a>)</li>
<li><a
href="https://github.com/lycheeverse/lychee-action/commit/39066c6d1f0de280863a3760160617e188b607ad"><code>39066c6</code></a>
Bump actions/checkout from 6 to 7 (<a
href="https://redirect.github.com/lycheeverse/lychee-action/issues/339">#339</a>)</li>
<li><a
href="https://github.com/lycheeverse/lychee-action/commit/6da1d14f3a43098a294b7696d93d938aa8d20fc0"><code>6da1d14</code></a>
Install into $RUNNER_TEMP instead of $HOME (<a
href="https://redirect.github.com/lycheeverse/lychee-action/issues/338">#338</a>)</li>
<li><a
href="https://github.com/lycheeverse/lychee-action/commit/a63497c75a5435b151e800818e2286764b6e119a"><code>a63497c</code></a>
fixes <a
href="https://redirect.github.com/lycheeverse/lychee-action/issues/322">#322</a>
check for null (<a
href="https://redirect.github.com/lycheeverse/lychee-action/issues/336">#336</a>)</li>
<li><a
href="https://github.com/lycheeverse/lychee-action/commit/b40e218fdac9481d3c13098d4e1ee56f3b589356"><code>b40e218</code></a>
[create-pull-request] automated change</li>
<li><a
href="https://github.com/lycheeverse/lychee-action/commit/faea714062690f6c2e6f7f388469ec4fa6d9c4e1"><code>faea714</code></a>
bump default to 0.24.1 and auto-detect lychee bin in subfolder (<a
href="https://redirect.github.com/lycheeverse/lychee-action/issues/330">#330</a>)</li>
<li>See full diff in <a
href="https://github.com/lycheeverse/lychee-action/compare/8646ba30535128ac92d33dfc9133794bfdd9b411...e7477775783ea5526144ba13e8db5eec57747ce8">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
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-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [vendor/bdwgc](https://github.com/bdwgc/bdwgc) from `af6f40b` to
`e8e5a4e`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/bdwgc/bdwgc/commit/e8e5a4eb19d21c94b14c158ff39cc68a3e105d30"><code>e8e5a4e</code></a>
Support UFFD-based VDB on Linux/aarch64 and Linux/x86_64</li>
<li><a
href="https://github.com/bdwgc/bdwgc/commit/2ce4a990ee7d8118dd9a4afa54e6416a0ea98d65"><code>2ce4a99</code></a>
Do not require exact installation path of addr2line</li>
<li><a
href="https://github.com/bdwgc/bdwgc/commit/9884a0b006422bd87aa243127a9ad3dc83b14edf"><code>9884a0b</code></a>
Refine GC_size documentation that result may be larger than actual
size</li>
<li><a
href="https://github.com/bdwgc/bdwgc/commit/fcf43c064031c320ff5e37be3703b158b1e9b639"><code>fcf43c0</code></a>
GH Actions: Test manual VDB in single-threaded build</li>
<li><a
href="https://github.com/bdwgc/bdwgc/commit/781f983ea9437a7029016f6cf15d1bda855cf4ec"><code>781f983</code></a>
GH Actions: Test with -D NO_UFFDWP_VDB</li>
<li><a
href="https://github.com/bdwgc/bdwgc/commit/df4461ece32bd989835f1aa0a76816c9e38d1eaa"><code>df4461e</code></a>
Fix missing GC_high_water initialization during initial collection</li>
<li><a
href="https://github.com/bdwgc/bdwgc/commit/f997c34c4a7c894eee4cc6293e7d8a512e0a9a75"><code>f997c34</code></a>
Rename GC_inner_pthread_create/sigmask to
GC_real_pthread_create/sigmask</li>
<li>See full diff in <a
href="https://github.com/bdwgc/bdwgc/compare/af6f40bf3ce6ea916d487e10eee9dd4691ed4a07...e8e5a4eb19d21c94b14c158ff39cc68a3e105d30">compare
view</a></li>
</ul>
</details>
<br />
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-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [vendor/bdwgc](https://github.com/bdwgc/bdwgc) from `327ef1f` to
`fc2990b`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/bdwgc/bdwgc/commit/fc2990b5ec30720b4814f3d48ce8be5b0262110d"><code>fc2990b</code></a>
Fix assertion violation in GC_push_all_stacks if DARWIN_PARSE_STACK</li>
<li><a
href="https://github.com/bdwgc/bdwgc/commit/93526f8729e824a2e454b0730d61560405f68bf5"><code>93526f8</code></a>
GH Actions: Test DARWIN_PARSE_STACK with disabled
thread-local-alloc</li>
<li><a
href="https://github.com/bdwgc/bdwgc/commit/0e9cffee3d65191dd7756b979754c0e4767e3e16"><code>0e9cffe</code></a>
Update AUTHORS file (add Tanish Saxena)</li>
<li><a
href="https://github.com/bdwgc/bdwgc/commit/b6ae38c84022d0e2c6e52a2863cc777cc8090eb0"><code>b6ae38c</code></a>
Fix defensive bounds checking bypass in GC_proc_read_dirty</li>
<li><a
href="https://github.com/bdwgc/bdwgc/commit/16ed906df78d8d77440231aea8b00b301cd7e7bb"><code>16ed906</code></a>
Fix GC_NO_THREADS_DISCOVERY W/A definition on Darwin</li>
<li><a
href="https://github.com/bdwgc/bdwgc/commit/c0bdcf35fc988669f716201dbff8ab0b97fa07bc"><code>c0bdcf3</code></a>
Enable thread-local allocation for DllMain-based thread
registration</li>
<li>See full diff in <a
href="https://github.com/bdwgc/bdwgc/compare/327ef1f8c80a611b2f8b915850c8b2fd38e6595e...fc2990b5ec30720b4814f3d48ce8be5b0262110d">compare
view</a></li>
</ul>
</details>
<br />
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-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.