dependabot[bot] opened a new pull request, #4956:
URL: https://github.com/apache/datafusion-comet/pull/4956

   Bumps the all-other-cargo-deps group in /native with 6 updates:
   
   | Package | From | To |
   | --- | --- | --- |
   | [regex](https://github.com/rust-lang/regex) | `1.13.0` | `1.13.1` |
   | [tokio](https://github.com/tokio-rs/tokio) | `1.52.3` | `1.53.0` |
   | [uuid](https://github.com/uuid-rs/uuid) | `1.23.5` | `1.24.0` |
   | [clap](https://github.com/clap-rs/clap) | `4.6.1` | `4.6.2` |
   | [simd-adler32](https://github.com/mcountryman/simd-adler32) | `0.3.9` | 
`0.3.10` |
   | [snap](https://github.com/BurntSushi/rust-snappy) | `1.1.1` | `1.1.2` |
   
   Updates `regex` from 1.13.0 to 1.13.1
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/rust-lang/regex/blob/master/CHANGELOG.md";>regex's 
changelog</a>.</em></p>
   <blockquote>
   <h1>1.13.1 (2026-07-15)</h1>
   <p>This is a release that fixes a bug where incorrect regex match offsets 
could be
   reported. Note that this doesn't impact whether a match occurs or not, just
   where it occurs. The match offsets are still valid for slicing, they just may
   not refer to the correct leftmost-first match. See
   <a href="https://redirect.github.com/rust-lang/regex/pull/1364";>#1364</a> 
for (many) more details.</p>
   <p>Bug fixes:</p>
   <ul>
   <li><a 
href="https://redirect.github.com/rust-lang/regex/issues/1354";>#1354</a>:
   Fixes previously unsound reverse suffix and inner optimizations.</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/rust-lang/regex/commit/2b527599eb9eea0dcc288c704584f242f26a5c61";><code>2b52759</code></a>
 1.13.1, redux</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/40e98238fff903f3e1ec95bbdb487185dd60504a";><code>40e9823</code></a>
 1.13.1</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/75fcb962d6ea1c456f6f023c9537a66389413a85";><code>75fcb96</code></a>
 changelog: 1.13.1</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/64ad0b618e043b791ed5385dd5504a436da1ddae";><code>64ad0b6</code></a>
 automata: fix bug in reverse suffix/inner optimization</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/fa91c31a4291c9dda6afe19829e6fe2e3bbc2da5";><code>fa91c31</code></a>
 automata: fix a bug caught by Codex review</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/30390ec3e8889aad830337cdf3a7a01ae195ae73";><code>30390ec</code></a>
 automata: formatting tweaks</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/821a8eb1ad7860ddc788fe36f495036df63cfc35";><code>821a8eb</code></a>
 automata: refactor reverse suffix/inner search slightly</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/10afd704d88d00ddfcd10218883a81b3ae5e4831";><code>10afd70</code></a>
 automata: expose the extracted literals for inner literal extraction</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/8c34f41d3c5a0e16ce17dfb964587cb48625a8d5";><code>8c34f41</code></a>
 automata: avoid reverse suffix optimization for non-leftmost-first</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/5524f02430d2d118d5c34fde54136d08376de711";><code>5524f02</code></a>
 test: add regression tests for failed reverse suffix/inner optimizations</li>
   <li>Additional commits viewable in <a 
href="https://github.com/rust-lang/regex/compare/1.13.0...1.13.1";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `tokio` from 1.52.3 to 1.53.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/tokio-rs/tokio/releases";>tokio's releases</a>.</em></p>
   <blockquote>
   <h2>Tokio v1.53.0</h2>
   <h1>1.53.0 (July 17th, 2026)</h1>
   <h3>Added</h3>
   <ul>
   <li>fs: implement <code>From&lt;OwnedFd&gt;</code> and 
<code>From&lt;OwnedHandle&gt;</code> for <code>File</code> (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8266";>#8266</a>)</li>
   <li>metrics: add task schedule latency metric (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/7986";>#7986</a>)</li>
   <li>net: add <code>SocketAddr</code> methods to Unix sockets (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8144";>#8144</a>)</li>
   </ul>
   <h3>Changed</h3>
   <ul>
   <li>io: add <code>#[inline]</code> to IO trait impls for in-memory types (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8242";>#8242</a>)</li>
   <li>net: implement UCred::pid on FreeBSD (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8086";>#8086</a>)</li>
   <li>net: support Nuttx target os (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8259";>#8259</a>)</li>
   <li>signal: refactor global variables on Windows (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8231";>#8231</a>)</li>
   <li>sync: <code>mpsc::{Receiver,UnboundedReceiver}</code> now drops waker on 
drop, even if there are still senders (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8095";>#8095</a>)</li>
   <li>taskdump: support taskdumps on s390x (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8192";>#8192</a>)</li>
   <li>time: add <code>#[track_caller]</code> to <code>timeout_at()</code> (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8077";>#8077</a>)</li>
   <li>time: consolidate mutex locks on spurious poll (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8124";>#8124</a>)</li>
   <li>time: defer waker clone on spurious poll (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8107";>#8107</a>)</li>
   <li>time: move lazy-registration state into <code>Sleep</code> (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8132";>#8132</a>)</li>
   <li>tracing: remove unnecessary span clone (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8126";>#8126</a>)</li>
   </ul>
   <h3>Fixed</h3>
   <ul>
   <li>io: do not treat zero-length reads as EOF in <code>Chain</code> (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8251";>#8251</a>)</li>
   <li>net: use getpeereid for QNX peer credentials (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8270";>#8270</a>)</li>
   <li>runtime: avoid illegal state in <code>FastRand</code> (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8078";>#8078</a>)</li>
   <li>sync: wake mpsc receiver when a queued <code>reserve[_many]</code> 
returns permits (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8260";>#8260</a>)</li>
   <li>taskdump: skip double wake on 
<code>Trace::capture</code>/<code>Trace::trace_with</code> (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8043";>#8043</a>)</li>
   <li>time: avoid stack overflow in runtime constructor (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8093";>#8093</a>)</li>
   <li>time (alt timer): ensure timers stay in the same runtime after 
<code>.reset()</code> (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8169";>#8169</a>)</li>
   </ul>
   <h3>IO uring (unstable)</h3>
   <ul>
   <li>fs: use io-uring for <code>fs::try_exists</code> (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8080";>#8080</a>)</li>
   <li>fs: use io-uring for renaming files (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/7800";>#7800</a>)</li>
   <li>rt: flush io-uring CQE in case of CQE overflow (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8277";>#8277</a>)</li>
   </ul>
   <h3>Documented</h3>
   <ul>
   <li>docs: clarify cancel safety wording (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8181";>#8181</a>)</li>
   <li>fs: clarify <code>create_dir_all</code> succeeds if path exists (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8149";>#8149</a>)</li>
   <li>io: add warning about stdout reordering with multiple handles (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8276";>#8276</a>)</li>
   <li>net: document pipe <code>try_read*</code>/<code>try_write*</code> 
readiness behavior (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8032";>#8032</a>)</li>
   <li>runtime: document interaction with fork() (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8202";>#8202</a>)</li>
   <li>sync: clarify broadcast lagging semantics (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8239";>#8239</a>)</li>
   <li>sync: document memory ordering guarantees for Semaphore (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8119";>#8119</a>)</li>
   <li>task: explain why <code>yield_now</code> defers its waker (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8254";>#8254</a>)</li>
   <li>time: add panic docs to <code>timeout_at()</code> (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8077";>#8077</a>)</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/tokio-rs/tokio/commit/be689a35f5ade5a39e507f79d3ec85cdab27806f";><code>be689a3</code></a>
 chore: prepare Tokio v1.53.0 (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8294";>#8294</a>)</li>
   <li><a 
href="https://github.com/tokio-rs/tokio/commit/50f76c71ec7203013f7f0cda59deaa9016e93939";><code>50f76c7</code></a>
 chore: prepare tokio-macros v2.7.1 (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8295";>#8295</a>)</li>
   <li><a 
href="https://github.com/tokio-rs/tokio/commit/f61fccad3cd598cce743fc511a983364b77af92a";><code>f61fcca</code></a>
 Merge 'tokio-1.52.4' into 'master' (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8290";>#8290</a>)</li>
   <li><a 
href="https://github.com/tokio-rs/tokio/commit/efdba5fcf02c4b93d379114df136b994c3b21445";><code>efdba5f</code></a>
 chore: prepare Tokio v1.52.4 (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8289";>#8289</a>)</li>
   <li><a 
href="https://github.com/tokio-rs/tokio/commit/b0ba02e75507518baed6718b0c37105e430f3a93";><code>b0ba02e</code></a>
 Merge 'tokio-1.51.4' into 'tokio-1.52.x' (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8288";>#8288</a>)</li>
   <li><a 
href="https://github.com/tokio-rs/tokio/commit/7bcd2d343d997a658be5bc165520070c997fefbc";><code>7bcd2d3</code></a>
 taskdump: remove crate disambiguators from output (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8288";>#8288</a>)</li>
   <li><a 
href="https://github.com/tokio-rs/tokio/commit/f84b209126a9b0f66dae1025e30e44d217205513";><code>f84b209</code></a>
 chore: prepare Tokio v1.51.4 (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8286";>#8286</a>)</li>
   <li><a 
href="https://github.com/tokio-rs/tokio/commit/eacb98e18901fcbe011bfceddbc31853f1bf0c27";><code>eacb98e</code></a>
 runtime: don't skip the driver when <code>before_park</code> schedules work 
(<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8222";>#8222</a>)</li>
   <li><a 
href="https://github.com/tokio-rs/tokio/commit/5e16ee00faae5b81a58f70b734577b800e0b203b";><code>5e16ee0</code></a>
 task: avoid replacing the JoinQueue waker in <code>try_join_next</code> (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8279";>#8279</a>)</li>
   <li><a 
href="https://github.com/tokio-rs/tokio/commit/88212ab64afd2b2f87deeb073f9eef6aaaad3701";><code>88212ab</code></a>
 sync: document memory ordering guarantees for Semaphore (<a 
href="https://redirect.github.com/tokio-rs/tokio/issues/8119";>#8119</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/tokio-rs/tokio/compare/tokio-1.52.3...tokio-1.53.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `uuid` from 1.23.5 to 1.24.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/uuid-rs/uuid/releases";>uuid's releases</a>.</em></p>
   <blockquote>
   <h2>v1.24.0</h2>
   <h2>What's Changed</h2>
   <ul>
   <li>feat(fmt): support encoding into MaybeUninit buffers by <a 
href="https://github.com/weifanglab";><code>@​weifanglab</code></a> in <a 
href="https://redirect.github.com/uuid-rs/uuid/pull/892";>uuid-rs/uuid#892</a></li>
   <li>Prepare for 1.24.0 release by <a 
href="https://github.com/KodrAus";><code>@​KodrAus</code></a> in <a 
href="https://redirect.github.com/uuid-rs/uuid/pull/896";>uuid-rs/uuid#896</a></li>
   </ul>
   <h2>New Contributors</h2>
   <ul>
   <li><a href="https://github.com/weifanglab";><code>@​weifanglab</code></a> 
made their first contribution in <a 
href="https://redirect.github.com/uuid-rs/uuid/pull/892";>uuid-rs/uuid#892</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/uuid-rs/uuid/compare/v1.23.5...v1.24.0";>https://github.com/uuid-rs/uuid/compare/v1.23.5...v1.24.0</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/uuid-rs/uuid/commit/6a8aeab3d02838f6fef71e69cdfda963e8c4158b";><code>6a8aeab</code></a>
 Merge pull request <a 
href="https://redirect.github.com/uuid-rs/uuid/issues/896";>#896</a> from 
uuid-rs/cargo/v1.24.0</li>
   <li><a 
href="https://github.com/uuid-rs/uuid/commit/e6db8ec0879fc9e703efc1911512c111f86e540d";><code>e6db8ec</code></a>
 prepare for 1.24.0 release</li>
   <li><a 
href="https://github.com/uuid-rs/uuid/commit/606f2365c706ccd0309d3263b381f5378b004e4d";><code>606f236</code></a>
 Merge pull request <a 
href="https://redirect.github.com/uuid-rs/uuid/issues/892";>#892</a> from 
weifanglab/main</li>
   <li><a 
href="https://github.com/uuid-rs/uuid/commit/ab848dbdf652c91af3ed5a413d3edd74bc2ebcfb";><code>ab848db</code></a>
 feat(fmt): support encoding into MaybeUninit buffers</li>
   <li><a 
href="https://github.com/uuid-rs/uuid/commit/6fa1a1e38afa7536bad4cd0febf689338f65c220";><code>6fa1a1e</code></a>
 feat(fmt): support encoding into MaybeUninit buffers</li>
   <li>See full diff in <a 
href="https://github.com/uuid-rs/uuid/compare/v1.23.5...v1.24.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `clap` from 4.6.1 to 4.6.2
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/clap-rs/clap/releases";>clap's releases</a>.</em></p>
   <blockquote>
   <h2>v4.6.2</h2>
   <h2>[4.6.2] - 2026-07-15</h2>
   <h3>Fixes</h3>
   <ul>
   <li><em>(help)</em> Say <code>alias</code> when there is only one</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md";>clap's 
changelog</a>.</em></p>
   <blockquote>
   <h2>[4.6.2] - 2026-07-15</h2>
   <h3>Fixes</h3>
   <ul>
   <li><em>(help)</em> Say <code>alias</code> when there is only one</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/clap-rs/clap/commit/0fe0be302726f4253b9bee27eed48438c92917aa";><code>0fe0be3</code></a>
 chore: Release</li>
   <li><a 
href="https://github.com/clap-rs/clap/commit/480af9d045453f4ab96d9bdd4d4b9f5aab3c272f";><code>480af9d</code></a>
 docs: Update changelog</li>
   <li><a 
href="https://github.com/clap-rs/clap/commit/2b3ddd0294a147d1eda917cb303243bcde0c12ee";><code>2b3ddd0</code></a>
 Merge pull request <a 
href="https://redirect.github.com/clap-rs/clap/issues/6340";>#6340</a> from 
liskin/fix-completion-escape</li>
   <li><a 
href="https://github.com/clap-rs/clap/commit/7ffe7399ff032cc247eb0449cf8fcdfbfe55a4ec";><code>7ffe739</code></a>
 fix(complete): Do not suggest options after &quot;--&quot;</li>
   <li><a 
href="https://github.com/clap-rs/clap/commit/d47fc4f8a5e9fcc16d0cae15b51e6eb1a8ed5832";><code>d47fc4f</code></a>
 test(complete): Options suggested after escape (<code>--</code>)</li>
   <li>See full diff in <a 
href="https://github.com/clap-rs/clap/compare/clap_complete-v4.6.1...clap_complete-v4.6.2";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `simd-adler32` from 0.3.9 to 0.3.10
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/mcountryman/simd-adler32/commit/d93164f98d7fe2daf883f2e1bec82778dd26199a";><code>d93164f</code></a>
 Bump version 0.3.10</li>
   <li><a 
href="https://github.com/mcountryman/simd-adler32/commit/cffbfadb4d6d01fb633e1c9fdce07317c78fdffb";><code>cffbfad</code></a>
 Merge pull request <a 
href="https://redirect.github.com/mcountryman/simd-adler32/issues/37";>#37</a> 
from madsmtm/fix-arm-neon-non-nightly</li>
   <li><a 
href="https://github.com/mcountryman/simd-adler32/commit/d110191602f3cf43442c43a5ce09156121fa6577";><code>d110191</code></a>
 Fix compiling on ARM with <code>target_feature = &quot;neon&quot;</code></li>
   <li><a 
href="https://github.com/mcountryman/simd-adler32/commit/b3ba98195474402fbe84931a82529e84a8867044";><code>b3ba981</code></a>
 Merge pull request <a 
href="https://redirect.github.com/mcountryman/simd-adler32/issues/35";>#35</a> 
from realityking/fuzz-neon</li>
   <li><a 
href="https://github.com/mcountryman/simd-adler32/commit/07a29baaa952d3b5df798e577f15a892213920d0";><code>07a29ba</code></a>
 Merge pull request <a 
href="https://redirect.github.com/mcountryman/simd-adler32/issues/34";>#34</a> 
from realityking/build-arm</li>
   <li><a 
href="https://github.com/mcountryman/simd-adler32/commit/805961f91b036506cb431106e6339af42d5356be";><code>805961f</code></a>
 Add fuzzing for the neon implementation</li>
   <li><a 
href="https://github.com/mcountryman/simd-adler32/commit/793a3ca2aec33bbc527a57182edb21f4d52ec68f";><code>793a3ca</code></a>
 Move aarch64 linux builds from cross compiling to native runners</li>
   <li><a 
href="https://github.com/mcountryman/simd-adler32/commit/c5e67e3375a7498fdc7ec988575f1c1e39842a4d";><code>c5e67e3</code></a>
 Add macOS aarch64 (Apple M1) to the build matrix</li>
   <li><a 
href="https://github.com/mcountryman/simd-adler32/commit/7d0733b45c0b040d2d31185b61d95c5cc7e1da8c";><code>7d0733b</code></a>
 Merge pull request <a 
href="https://redirect.github.com/mcountryman/simd-adler32/issues/33";>#33</a> 
from realityking/comp-adler2</li>
   <li><a 
href="https://github.com/mcountryman/simd-adler32/commit/79b8f40b0b7b79b9d69f8ec16ee3542c6cc8933c";><code>79b8f40</code></a>
 Use adler2 in benchmarks and tests to replace adler</li>
   <li>Additional commits viewable in <a 
href="https://github.com/mcountryman/simd-adler32/compare/v0.3.9...v0.3.10";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `snap` from 1.1.1 to 1.1.2
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/BurntSushi/rust-snappy/commit/29fcab53647bcd8cd1550c06bde0cd42777e5565";><code>29fcab5</code></a>
 1.1.2</li>
   <li><a 
href="https://github.com/BurntSushi/rust-snappy/commit/fea0488533be591f5f644ab23c62bde8330db8ae";><code>fea0488</code></a>
 impl: more closely align with the Snappy spec</li>
   <li><a 
href="https://github.com/BurntSushi/rust-snappy/commit/498b17549cb45a122332f8813f88bce0c96123ee";><code>498b175</code></a>
 ci: stop testing on MSRV</li>
   <li><a 
href="https://github.com/BurntSushi/rust-snappy/commit/d3a3e8c16663adf68d0bfd9f1a616fe4e392cd68";><code>d3a3e8c</code></a>
 ci: turn off snappy-cpp testing on macOS</li>
   <li><a 
href="https://github.com/BurntSushi/rust-snappy/commit/03e717b9ce267700a6f2b9cf46e6d62773877260";><code>03e717b</code></a>
 test: tweak snappy-cpp tests</li>
   <li><a 
href="https://github.com/BurntSushi/rust-snappy/commit/a65ad09a96568bb162b23c89636601a30a40013e";><code>a65ad09</code></a>
 github: add FUNDING</li>
   <li>See full diff in <a 
href="https://github.com/BurntSushi/rust-snappy/compare/1.1.1...1.1.2";>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 <dependency name> major version` will close this group 
update PR and stop Dependabot creating any more for the specific dependency's 
major version (unless you unignore this specific dependency's major version or 
upgrade to it yourself)
   - `@dependabot ignore <dependency name> minor version` will close this group 
update PR and stop Dependabot creating any more for the specific dependency's 
minor version (unless you unignore this specific dependency's minor version or 
upgrade to it yourself)
   - `@dependabot ignore <dependency name>` will close this group update PR and 
stop Dependabot creating any more for the specific dependency (unless you 
unignore this specific dependency or upgrade to it yourself)
   - `@dependabot unignore <dependency name>` will remove all of the ignore 
conditions of the specified dependency
   - `@dependabot unignore <dependency name> <ignore condition>` will remove 
the ignore condition of the specified dependency and ignore conditions
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to