dependabot[bot] opened a new pull request, #6402:
URL: https://github.com/apache/opendal/pull/6402

   Bumps the http-serialization-utils group in /core with 6 updates:
   
   | Package | From | To |
   | --- | --- | --- |
   | [backon](https://github.com/Xuanwo/backon) | `1.5.0` | `1.5.1` |
   | [quick-xml](https://github.com/tafia/quick-xml) | `0.37.5` | `0.38.0` |
   | [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.15` | `0.12.22` |
   | [uuid](https://github.com/uuid-rs/uuid) | `1.16.0` | `1.17.0` |
   | [reqsign](https://github.com/Xuanwo/reqsign) | `0.16.3` | `0.16.5` |
   | [prometheus](https://github.com/tikv/rust-prometheus) | `0.13.4` | 
`0.14.0` |
   
   Updates `backon` from 1.5.0 to 1.5.1
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/Xuanwo/backon/releases";>backon's releases</a>.</em></p>
   <blockquote>
   <h2>v1.5.1</h2>
   <h2>What's Changed</h2>
   <ul>
   <li>docs: add wasm32 demo by <a 
href="https://github.com/XmchxUp";><code>@​XmchxUp</code></a> in <a 
href="https://redirect.github.com/Xuanwo/backon/pull/196";>Xuanwo/backon#196</a></li>
   <li>fix no sleeper feature can't set sleeper in retry with context by <a 
href="https://github.com/Sherlock-Holo";><code>@​Sherlock-Holo</code></a> in <a 
href="https://redirect.github.com/Xuanwo/backon/pull/199";>Xuanwo/backon#199</a></li>
   <li>Bump to version 1.5.1 by <a 
href="https://github.com/Xuanwo";><code>@​Xuanwo</code></a> in <a 
href="https://redirect.github.com/Xuanwo/backon/pull/200";>Xuanwo/backon#200</a></li>
   </ul>
   <h2>New Contributors</h2>
   <ul>
   <li><a 
href="https://github.com/Sherlock-Holo";><code>@​Sherlock-Holo</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/Xuanwo/backon/pull/199";>Xuanwo/backon#199</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/Xuanwo/backon/compare/v1.5.0...v1.5.1";>https://github.com/Xuanwo/backon/compare/v1.5.0...v1.5.1</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/Xuanwo/backon/commit/2413c8fff316e751c978d4c35b3b3781c8b539a0";><code>2413c8f</code></a>
 Bump to version 1.5.1 (<a 
href="https://redirect.github.com/Xuanwo/backon/issues/200";>#200</a>)</li>
   <li><a 
href="https://github.com/Xuanwo/backon/commit/d1d394110fbbc5c71c94c16ba534bcaf97df959b";><code>d1d3941</code></a>
 fix no sleeper feature can't set sleeper in retry with context (<a 
href="https://redirect.github.com/Xuanwo/backon/issues/199";>#199</a>)</li>
   <li><a 
href="https://github.com/Xuanwo/backon/commit/03a47d3ca2fdb822bc9ce51672b5b42370905cad";><code>03a47d3</code></a>
 docs: add wasm32 demo (<a 
href="https://redirect.github.com/Xuanwo/backon/issues/196";>#196</a>)</li>
   <li>See full diff in <a 
href="https://github.com/Xuanwo/backon/compare/v1.5.0...v1.5.1";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `quick-xml` from 0.37.5 to 0.38.0
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/tafia/quick-xml/blob/master/Changelog.md";>quick-xml's 
changelog</a>.</em></p>
   <blockquote>
   <h2>0.38.0 -- 2025-06-28</h2>
   <h3>Significant changes</h3>
   <p>Now references to entities (as predefined, such as <code>&amp;lt;</code>, 
as user-defined) reported as a new
   <code>Event::GeneralRef</code>.
   Caller can parse the content of the entity and stream events from it as it 
is required by the
   XML specification. See the updated <code>custom_entities</code> example!</p>
   <p>Implement whitespace behavior in the standard in 
<code>Deserializer</code>, which says string primitive
   types should preserve whitespace, while all other primitives have collapse 
behavior.</p>
   <h3>New Features</h3>
   <ul>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/863";>#863</a>: Add 
<code>Attributes::into_map_access(&amp;str)</code> and 
<code>Attributes::into_deserializer()</code> when <code>serialize</code>
   feature is enabled. This will allow do deserialize serde types right from 
attributes. Both methods
   returns the same type which implements serde's <code>Deserializer</code> and 
<code>MapAccess</code> traits.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/766";>#766</a>: Allow 
to parse resolved entities as XML fragments and stream events from them.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/766";>#766</a>: Added 
new event <code>Event::GeneralRef</code> with content of [general entity].</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/766";>#766</a>: Added 
new configuration option <code>allow_dangling_amp</code> which allows to have
   a <code>&amp;</code> not followed by <code>;</code> in the textual data 
which is required for some applications
   for compatibility reasons.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/285";>#285</a>: Add 
ability to <code>quick_xml::de::Text</code> to access text with trimmed 
spaces</li>
   </ul>
   <h3>Bug Fixes</h3>
   <ul>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/868";>#868</a>: Allow 
to have both <code>$text</code> and <code>$value</code> special fields in one 
struct. Previously
   any text will be recognized as <code>$value</code> field even when 
<code>$text</code> field is also presented.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/868";>#868</a>: Skip 
text events when deserialize a sequence of items overlapped with text 
(including CDATA).</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/841";>#841</a>: Do not 
strip <code>xml</code> prefix from the attributes when map them to struct 
fields in <code>Deserializer</code>.</li>
   </ul>
   <h3>Misc Changes</h3>
   <ul>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/863";>#863</a>: Remove 
<code>From&lt;QName&lt;'a&gt;&gt; for BytesStart&lt;'a&gt;</code> because now 
<code>BytesStart</code> stores the
   encoding in which its data is encoded, but <code>QName</code> is a simple 
wrapper around byte slice.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/766";>#766</a>: 
<code>BytesText::unescape</code> and <code>BytesText::unescape_with</code> 
replaced by <code>BytesText::decode</code>.
   Now Text events does not contain escaped parts which are reported as 
<code>Event::GeneralRef</code>.</li>
   </ul>
   <p><a 
href="https://redirect.github.com/tafia/quick-xml/issues/285";>#285</a>: <a 
href="https://redirect.github.com/tafia/quick-xml/issues/285";>tafia/quick-xml#285</a>
   <a href="https://redirect.github.com/tafia/quick-xml/issues/766";>#766</a>: 
<a 
href="https://redirect.github.com/tafia/quick-xml/pull/766";>tafia/quick-xml#766</a>
   <a href="https://redirect.github.com/tafia/quick-xml/issues/841";>#841</a>: 
<a 
href="https://redirect.github.com/tafia/quick-xml/issues/841";>tafia/quick-xml#841</a>
   <a href="https://redirect.github.com/tafia/quick-xml/issues/863";>#863</a>: 
<a 
href="https://redirect.github.com/tafia/quick-xml/pull/863";>tafia/quick-xml#863</a>
   <a href="https://redirect.github.com/tafia/quick-xml/issues/868";>#868</a>: 
<a 
href="https://redirect.github.com/tafia/quick-xml/pull/868";>tafia/quick-xml#868</a>
   [general entity]: <a 
href="https://www.w3.org/TR/xml11/#gen-entity";>https://www.w3.org/TR/xml11/#gen-entity</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/e8806e0128c701f42cc63b02aeece9fdda7df60e";><code>e8806e0</code></a>
 Release 0.38.0</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/7c4b702fe50265548987c8043b4fb4e5feb57f09";><code>7c4b702</code></a>
 Fix incorrect references in the documentation</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/2cbb2b8b0d63a8b457c2b155ac5ce4aff932079a";><code>2cbb2b8</code></a>
 Merge pull request <a 
href="https://redirect.github.com/tafia/quick-xml/issues/873";>#873</a> from 
curatorsigma/serde_roundtrip_xml_attrs</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/bc18c57ca803254d4abeebbd4a6adae13f4bbd82";><code>bc18c57</code></a>
 serde: allow xml: attributes to roundtrip</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/899d573c75e9f134a15f27dea9171239573ddf76";><code>899d573</code></a>
 Skip unwanted text events in sequences</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/5942a13a96215e9e43825f2e5e0df4b6839fcf8e";><code>5942a13</code></a>
 Add regression test for <a 
href="https://redirect.github.com/tafia/quick-xml/issues/868";>#868</a></li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/f152aec24a36745430960222e433f1462d71f60f";><code>f152aec</code></a>
 Allow both <code>&amp;text</code> and <code>$value</code> fields in the same 
struct</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/d6dfeedea417005fc2ed827b792a30e11fdebbfd";><code>d6dfeed</code></a>
 Merge pull request <a 
href="https://redirect.github.com/tafia/quick-xml/issues/872";>#872</a> from 
Mingun/update-compare</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/6017acf5086f65515d1f5fedc087426c1fb02513";><code>6017acf</code></a>
 Merge pull request <a 
href="https://redirect.github.com/tafia/quick-xml/issues/865";>#865</a> from 
ggodlewski/untrim</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/15a3e861695dca363ab07041ffda839fc2996db6";><code>15a3e86</code></a>
 compare: Put each group into its own file to be able to run them 
independentl...</li>
   <li>Additional commits viewable in <a 
href="https://github.com/tafia/quick-xml/compare/v0.37.5...v0.38.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `reqwest` from 0.12.15 to 0.12.22
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/seanmonstar/reqwest/releases";>reqwest's 
releases</a>.</em></p>
   <blockquote>
   <h2>v0.12.22</h2>
   <h2>tl;dr</h2>
   <ul>
   <li>Fix socks proxies when resolving IPv6 destinations.</li>
   </ul>
   <h2>What's Changed</h2>
   <ul>
   <li>fix(socks): bracket IPv6 addresses when formatting destination host by 
<a href="https://github.com/0x676e67";><code>@​0x676e67</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2753";>seanmonstar/reqwest#2753</a></li>
   <li>Prepare v0.12.22 by <a 
href="https://github.com/seanmonstar";><code>@​seanmonstar</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2754";>seanmonstar/reqwest#2754</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/seanmonstar/reqwest/compare/v0.12.21...v0.12.22";>https://github.com/seanmonstar/reqwest/compare/v0.12.21...v0.12.22</a></p>
   <h2>v0.12.21</h2>
   <h2>tl;dr</h2>
   <ul>
   <li>Fix socks proxy to use <code>socks4a://</code> instead of 
<code>socks4h://</code>.</li>
   <li>Fix <code>Error::is_timeout()</code> to check for hyper and IO timeouts 
too.</li>
   <li>Fix request <code>Error</code> to again include URLs when possible.</li>
   <li>Fix socks connect error to include more context.</li>
   <li>(wasm) implement <code>Default</code> for <code>Body</code>.</li>
   </ul>
   <h2>What's Changed</h2>
   <ul>
   <li>chore: remove unused slab dep by <a 
href="https://github.com/seanmonstar";><code>@​seanmonstar</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2729";>seanmonstar/reqwest#2729</a></li>
   <li>docs: mention requiring Tokio by <a 
href="https://github.com/seanmonstar";><code>@​seanmonstar</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2731";>seanmonstar/reqwest#2731</a></li>
   <li>Fix Typos in Comments for Multipart and Redirect Tests by <a 
href="https://github.com/leopardracer";><code>@​leopardracer</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2738";>seanmonstar/reqwest#2738</a></li>
   <li>fix: request errors should include url by <a 
href="https://github.com/seanmonstar";><code>@​seanmonstar</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2741";>seanmonstar/reqwest#2741</a></li>
   <li>fix: consider timeout from hyper::Error by <a 
href="https://github.com/flisky";><code>@​flisky</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2742";>seanmonstar/reqwest#2742</a></li>
   <li>feat: add Default impl for wasm::Body by <a 
href="https://github.com/jpopesculian";><code>@​jpopesculian</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2746";>seanmonstar/reqwest#2746</a></li>
   <li>fix: Fix SOCKS4a proxy protocol matching by <a 
href="https://github.com/0x676e67";><code>@​0x676e67</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2732";>seanmonstar/reqwest#2732</a></li>
   <li>fix: add more context and description to SOCKS errors by <a 
href="https://github.com/seanmonstar";><code>@​seanmonstar</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2750";>seanmonstar/reqwest#2750</a></li>
   <li>Prepare v0.12.21 by <a 
href="https://github.com/seanmonstar";><code>@​seanmonstar</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2751";>seanmonstar/reqwest#2751</a></li>
   </ul>
   <h2>New Contributors</h2>
   <ul>
   <li><a 
href="https://github.com/leopardracer";><code>@​leopardracer</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2738";>seanmonstar/reqwest#2738</a></li>
   <li><a 
href="https://github.com/jpopesculian";><code>@​jpopesculian</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2746";>seanmonstar/reqwest#2746</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/seanmonstar/reqwest/compare/v0.12.20...v0.12.21";>https://github.com/seanmonstar/reqwest/compare/v0.12.20...v0.12.21</a></p>
   <h2>v0.12.20</h2>
   <h2>Highlights</h2>
   <ul>
   <li>Add <code>ClientBuilder::tcp_user_timeout(Duration)</code> option to set 
<code>TCP_USER_TIMEOUT</code>.</li>
   <li>Fix proxy headers only using the first matched proxy.</li>
   <li>(wasm) Fix re-adding <code>Error::is_status()</code>.</li>
   </ul>
   <h2>What's Changed</h2>
   <ul>
   <li>fix(client): apply authorization header to first matching proxy only by 
<a href="https://github.com/0x676e67";><code>@​0x676e67</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2714";>seanmonstar/reqwest#2714</a></li>
   <li>wasm: re-add Error::is_status() by <a 
href="https://github.com/seanmonstar";><code>@​seanmonstar</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2720";>seanmonstar/reqwest#2720</a></li>
   <li>properly match error variants in test by <a 
href="https://github.com/Ruben2424";><code>@​Ruben2424</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2721";>seanmonstar/reqwest#2721</a></li>
   <li>refactor: reduce size of Pending request future by <a 
href="https://github.com/seanmonstar";><code>@​seanmonstar</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2725";>seanmonstar/reqwest#2725</a></li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md";>reqwest's
 changelog</a>.</em></p>
   <blockquote>
   <h2>v0.12.22</h2>
   <ul>
   <li>Fix socks proxies when resolving IPv6 destinations.</li>
   </ul>
   <h2>v0.12.21</h2>
   <ul>
   <li>Fix socks proxy to use <code>socks4a://</code> instead of 
<code>socks4h://</code>.</li>
   <li>Fix <code>Error::is_timeout()</code> to check for hyper and IO timeouts 
too.</li>
   <li>Fix request <code>Error</code> to again include URLs when possible.</li>
   <li>Fix socks connect error to include more context.</li>
   <li>(wasm) implement <code>Default</code> for <code>Body</code>.</li>
   </ul>
   <h2>v0.12.20</h2>
   <ul>
   <li>Add <code>ClientBuilder::tcp_user_timeout(Duration)</code> option to set 
<code>TCP_USER_TIMEOUT</code>.</li>
   <li>Fix proxy headers only using the first matched proxy.</li>
   <li>(wasm) Fix re-adding <code>Error::is_status()</code>.</li>
   </ul>
   <h2>v0.12.19</h2>
   <ul>
   <li>Fix redirect that changes the method to GET should remove payload 
headers.</li>
   <li>Fix redirect to only check the next scheme if the policy action is to 
follow.</li>
   <li>(wasm) Fix compilation error if <code>cookies</code> feature is enabled 
(by the way, it's a noop feature in wasm).</li>
   </ul>
   <h2>v0.12.18</h2>
   <ul>
   <li>Fix compilation when <code>socks</code> enabled without TLS.</li>
   </ul>
   <h2>v0.12.17</h2>
   <ul>
   <li>Fix compilation on macOS.</li>
   </ul>
   <h2>v0.12.16</h2>
   <ul>
   <li>Add <code>ClientBuilder::http3_congestion_bbr()</code> to enable BBR 
congestion control.</li>
   <li>Add <code>ClientBuilder::http3_send_grease()</code> to configure whether 
to send use QUIC grease.</li>
   <li>Add <code>ClientBuilder::http3_max_field_section_size()</code> to 
configure the maximum response headers.</li>
   <li>Add <code>ClientBuilder::tcp_keepalive_interval()</code> to configure 
TCP probe interval.</li>
   <li>Add <code>ClientBuilder::tcp_keepalive_retries()</code> to configure TCP 
probe count.</li>
   <li>Add <code>Proxy::headers()</code> to add extra headers that should be 
sent to a proxy.</li>
   <li>Fix <code>redirect::Policy::limit()</code> which had an off-by-1 error, 
allowing 1 more redirect than specified.</li>
   <li>Fix HTTP/3 to support streaming request bodies.</li>
   <li>(wasm) Fix null bodies when calling 
<code>Response::bytes_stream()</code>.</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/seanmonstar/reqwest/commit/e6e2d8a25dfcdfae026946672d3aa015214a10c1";><code>e6e2d8a</code></a>
 v0.12.22</li>
   <li><a 
href="https://github.com/seanmonstar/reqwest/commit/a9ab0fae3fa9901608aad70651e7affa61c063d5";><code>a9ab0fa</code></a>
 fix(socks): bracket IPv6 addresses when formatting destination host (<a 
href="https://redirect.github.com/seanmonstar/reqwest/issues/2753";>#2753</a>)</li>
   <li><a 
href="https://github.com/seanmonstar/reqwest/commit/b739726c4a2e47470346777062817af4f35feef2";><code>b739726</code></a>
 v0.12.21</li>
   <li><a 
href="https://github.com/seanmonstar/reqwest/commit/d9ecdc19b3bac1733836bb3a0b37183002b77b16";><code>d9ecdc1</code></a>
 fix: add more context and description to SOCKS errors (<a 
href="https://redirect.github.com/seanmonstar/reqwest/issues/2750";>#2750</a>)</li>
   <li><a 
href="https://github.com/seanmonstar/reqwest/commit/d4c9eec3c2cff04cee246d1fb07da16695ed443c";><code>d4c9eec</code></a>
 fix: look for socks4a instead of socks4h (<a 
href="https://redirect.github.com/seanmonstar/reqwest/issues/2732";>#2732</a>)</li>
   <li><a 
href="https://github.com/seanmonstar/reqwest/commit/d793ed26232060d45f11c169d1d5b98edb6cb7e2";><code>d793ed2</code></a>
 (wasm) feat: add Default impl for wasm::Body (<a 
href="https://redirect.github.com/seanmonstar/reqwest/issues/2746";>#2746</a>)</li>
   <li><a 
href="https://github.com/seanmonstar/reqwest/commit/4cb2866cd4a3d242776d8c0ecea4d81ab78dc5c7";><code>4cb2866</code></a>
 fix: Error::is_timeout() checks for hyper::Error::is_timeout() (<a 
href="https://redirect.github.com/seanmonstar/reqwest/issues/2742";>#2742</a>)</li>
   <li><a 
href="https://github.com/seanmonstar/reqwest/commit/1794d997373c71e9521ada8d3e2f98f36b6aad59";><code>1794d99</code></a>
 fix: request errors should include url (<a 
href="https://redirect.github.com/seanmonstar/reqwest/issues/2741";>#2741</a>)</li>
   <li><a 
href="https://github.com/seanmonstar/reqwest/commit/9edbd2e00b9b752e851cac0374f7aa1034beca85";><code>9edbd2e</code></a>
 tests: fix typos in multipart and redirect tests (<a 
href="https://redirect.github.com/seanmonstar/reqwest/issues/2738";>#2738</a>)</li>
   <li><a 
href="https://github.com/seanmonstar/reqwest/commit/e03d6f4ec4d6ca214b04e5a5c524d70f3ba85f45";><code>e03d6f4</code></a>
 docs: mention requiring Tokio (<a 
href="https://redirect.github.com/seanmonstar/reqwest/issues/2731";>#2731</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/seanmonstar/reqwest/compare/v0.12.15...v0.12.22";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `uuid` from 1.16.0 to 1.17.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.17.0</h2>
   <h2>What's Changed</h2>
   <ul>
   <li>Added convenience implementation TryFrom<!-- raw HTML omitted --> for 
std by <a href="https://github.com/Nahuel-M";><code>@​Nahuel-M</code></a> in <a 
href="https://redirect.github.com/uuid-rs/uuid/pull/819";>uuid-rs/uuid#819</a></li>
   <li>Update OSX builds to arm by <a 
href="https://github.com/KodrAus";><code>@​KodrAus</code></a> in <a 
href="https://redirect.github.com/uuid-rs/uuid/pull/825";>uuid-rs/uuid#825</a></li>
   <li>Replace derive(Hash) with manual impl in Uuid by <a 
href="https://github.com/diopoex";><code>@​diopoex</code></a> in <a 
href="https://redirect.github.com/uuid-rs/uuid/pull/824";>uuid-rs/uuid#824</a></li>
   <li>Add <code>wasm32v1-none</code> Support by <a 
href="https://github.com/bushrat011899";><code>@​bushrat011899</code></a> in <a 
href="https://redirect.github.com/uuid-rs/uuid/pull/828";>uuid-rs/uuid#828</a></li>
   <li>Prepare for 1.17.0 release by <a 
href="https://github.com/KodrAus";><code>@​KodrAus</code></a> in <a 
href="https://redirect.github.com/uuid-rs/uuid/pull/829";>uuid-rs/uuid#829</a></li>
   </ul>
   <h2>New Contributors</h2>
   <ul>
   <li><a href="https://github.com/Nahuel-M";><code>@​Nahuel-M</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/uuid-rs/uuid/pull/819";>uuid-rs/uuid#819</a></li>
   <li><a href="https://github.com/diopoex";><code>@​diopoex</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/uuid-rs/uuid/pull/824";>uuid-rs/uuid#824</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/uuid-rs/uuid/compare/v1.16.0...v1.17.0";>https://github.com/uuid-rs/uuid/compare/v1.16.0...v1.17.0</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/uuid-rs/uuid/commit/2fd9b614c92e4e4b18928e2f539d82accf8eaeee";><code>2fd9b61</code></a>
 Merge pull request <a 
href="https://redirect.github.com/uuid-rs/uuid/issues/829";>#829</a> from 
uuid-rs/cargo/v1.17.0</li>
   <li><a 
href="https://github.com/uuid-rs/uuid/commit/ed0d385b42d097b6abb0190cf3f3b2b2bfdaeff9";><code>ed0d385</code></a>
 prepare for 1.17.0 release</li>
   <li><a 
href="https://github.com/uuid-rs/uuid/commit/c54cadc54b8fa9a0e2d0e965caf64bbe16f265fc";><code>c54cadc</code></a>
 Merge pull request <a 
href="https://redirect.github.com/uuid-rs/uuid/issues/828";>#828</a> from 
bushrat011899/wasm32v1-none</li>
   <li><a 
href="https://github.com/uuid-rs/uuid/commit/625d76930882d964ff7d90eef39aa64809c61b96";><code>625d769</code></a>
 Fix typo in MVP Web CI</li>
   <li><a 
href="https://github.com/uuid-rs/uuid/commit/9d638e0a86104133607af52d6dacc78bf0aabb95";><code>9d638e0</code></a>
 Add MVP Web CI Task</li>
   <li><a 
href="https://github.com/uuid-rs/uuid/commit/83dc52811547059bdbda195eb5d3a8cdc706e193";><code>83dc528</code></a>
 Add <code>wasm32v1-none</code> support</li>
   <li><a 
href="https://github.com/uuid-rs/uuid/commit/5fbd84355fb5348f25abe23d694c1004b0d74eb3";><code>5fbd843</code></a>
 Merge pull request <a 
href="https://redirect.github.com/uuid-rs/uuid/issues/824";>#824</a> from 
diopoex/main</li>
   <li><a 
href="https://github.com/uuid-rs/uuid/commit/6635ae48125dd22d4bb43784769561cc6f65991e";><code>6635ae4</code></a>
 Merge pull request <a 
href="https://redirect.github.com/uuid-rs/uuid/issues/825";>#825</a> from 
uuid-rs/ci/aarch64-apple-darwin</li>
   <li><a 
href="https://github.com/uuid-rs/uuid/commit/b2370f26debd32abc070b541c0749b33b53e8943";><code>b2370f2</code></a>
 update toolchain for outdated job</li>
   <li><a 
href="https://github.com/uuid-rs/uuid/commit/c74ad33664ba33c90b5965171f851a69cd9a7852";><code>c74ad33</code></a>
 update OSX builds to arm</li>
   <li>Additional commits viewable in <a 
href="https://github.com/uuid-rs/uuid/compare/v1.16.0...v1.17.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `reqsign` from 0.16.3 to 0.16.5
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/Xuanwo/reqsign/releases";>reqsign's 
releases</a>.</em></p>
   <blockquote>
   <h2>v0.16.5</h2>
   <h2>What's Changed</h2>
   <ul>
   <li>feat(s3): Add cache for AssumeRoleLoader by <a 
href="https://github.com/Xuanwo";><code>@​Xuanwo</code></a> in <a 
href="https://redirect.github.com/Xuanwo/reqsign/pull/576";>Xuanwo/reqsign#576</a></li>
   <li>Bump to version 0.16.5 by <a 
href="https://github.com/Xuanwo";><code>@​Xuanwo</code></a> in <a 
href="https://redirect.github.com/Xuanwo/reqsign/pull/577";>Xuanwo/reqsign#577</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/Xuanwo/reqsign/compare/v0.16.4...v0.16.5";>https://github.com/Xuanwo/reqsign/compare/v0.16.4...v0.16.5</a></p>
   <h2>v0.16.4</h2>
   <h2>What's Changed</h2>
   <ul>
   <li>refactor: Use async lock to prevent conflicts update by <a 
href="https://github.com/Xuanwo";><code>@​Xuanwo</code></a> in <a 
href="https://redirect.github.com/Xuanwo/reqsign/pull/572";>Xuanwo/reqsign#572</a></li>
   <li>Bump to v0.16.4 by <a 
href="https://github.com/Xuanwo";><code>@​Xuanwo</code></a> in <a 
href="https://redirect.github.com/Xuanwo/reqsign/pull/574";>Xuanwo/reqsign#574</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/Xuanwo/reqsign/compare/v0.16.3...v0.16.4";>https://github.com/Xuanwo/reqsign/compare/v0.16.3...v0.16.4</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/Xuanwo/reqsign/commit/b02992b97b640d6db9e63d62bcee94049595b1a0";><code>b02992b</code></a>
 Bump to version 0.16.5 (<a 
href="https://redirect.github.com/Xuanwo/reqsign/issues/577";>#577</a>)</li>
   <li><a 
href="https://github.com/Xuanwo/reqsign/commit/084c460530bef483bcf1e05806e5005f34cbf57d";><code>084c460</code></a>
 feat(s3): Add cache for AssumeRoleLoader (<a 
href="https://redirect.github.com/Xuanwo/reqsign/issues/576";>#576</a>)</li>
   <li><a 
href="https://github.com/Xuanwo/reqsign/commit/affd7f0314531520c4f7f8e28166785a427c614c";><code>affd7f0</code></a>
 Bump to v0.16.4 (<a 
href="https://redirect.github.com/Xuanwo/reqsign/issues/574";>#574</a>)</li>
   <li><a 
href="https://github.com/Xuanwo/reqsign/commit/45ac01ad783d409ac5fd5a7adbb9f4d39428b237";><code>45ac01a</code></a>
 refactor: Use async lock to prevent conflicts update (<a 
href="https://redirect.github.com/Xuanwo/reqsign/issues/572";>#572</a>)</li>
   <li>See full diff in <a 
href="https://github.com/Xuanwo/reqsign/compare/v0.16.3...v0.16.5";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `prometheus` from 0.13.4 to 0.14.0
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/tikv/rust-prometheus/blob/master/CHANGELOG.md";>prometheus's
 changelog</a>.</em></p>
   <blockquote>
   <h2>0.14.0</h2>
   <ul>
   <li>
   <p>API change: Use <code>AsRef&lt;str&gt;</code> for owned label values (<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/537";>#537</a>)</p>
   </li>
   <li>
   <p>Improvement: Hashing improvements (<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/532";>#532</a>)</p>
   </li>
   <li>
   <p>Dependency upgrade: Update <code>hyper</code> to 1.6 (<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/524";>#524</a>)</p>
   </li>
   <li>
   <p>Dependency upgrade: Update <code>procfs</code> to 0.17 (<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/543";>#543</a>)</p>
   </li>
   <li>
   <p>Dependency upgrade: Update <code>protobuf</code> to 3.7.2 for 
RUSTSEC-2024-0437 (<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/541";>#541</a>)</p>
   </li>
   <li>
   <p>Dependency upgrade: Update <code>thiserror</code> to 2.0 (<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/534";>#534</a>)</p>
   </li>
   <li>
   <p>Internal change: Fix LSP and Clippy warnings (<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/540";>#540</a>)</p>
   </li>
   <li>
   <p>Internal change: Bump MSRV to 1.81 (<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/539";>#539</a>)</p>
   </li>
   <li>
   <p>Documentation: Fix <code>register_histogram_vec_with_registry</code> 
docstring (<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/528";>#528</a>)</p>
   </li>
   <li>
   <p>Documentation: Fix typos in static-metric docstrings (<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/479";>#479</a>)</p>
   </li>
   <li>
   <p>Documentation: Add missing <code>protobuf</code> feature to README list 
(<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/531";>#531</a>)</p>
   </li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/tikv/rust-prometheus/commit/e07efb4f372f1245bf7410b71e822c69877bcb32";><code>e07efb4</code></a>
 prometheus: release 0.14.0 (<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/545";>#545</a>)</li>
   <li><a 
href="https://github.com/tikv/rust-prometheus/commit/26e46ec03a36aa0aa4cd5c1a68e2635c44e44101";><code>26e46ec</code></a>
 Hashing improvements (<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/532";>#532</a>)</li>
   <li><a 
href="https://github.com/tikv/rust-prometheus/commit/e17c5ced2bc0f8ea436aaf1acc830a30ab15ada3";><code>e17c5ce</code></a>
 build(deps): update procfs requirement from ^0.16 to ^0.17 (<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/543";>#543</a>)</li>
   <li><a 
href="https://github.com/tikv/rust-prometheus/commit/e5809b7ab922408e02f1ad2142a78f32b9f8e603";><code>e5809b7</code></a>
 build(deps): update hyper requirement from ^0.14 to ^1.4 (<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/524";>#524</a>)</li>
   <li><a 
href="https://github.com/tikv/rust-prometheus/commit/4a0e282888b56d72a59cfa21b21881f2b4aea7c3";><code>4a0e282</code></a>
 Use AsRef&lt;str&gt; for owned label values (<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/537";>#537</a>)</li>
   <li><a 
href="https://github.com/tikv/rust-prometheus/commit/c3865f3c40a5609d5189731502d4bafce09e3df1";><code>c3865f3</code></a>
 cargo: upgrade to protobuf 3.7 (<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/541";>#541</a>)</li>
   <li><a 
href="https://github.com/tikv/rust-prometheus/commit/7e4e6f2d3398aceeeb4f698a8acf508c71152498";><code>7e4e6f2</code></a>
 docs: fix <code>register_histogram_vec_with_registry</code> docstring (<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/528";>#528</a>)</li>
   <li><a 
href="https://github.com/tikv/rust-prometheus/commit/5b62f4b78b514c6d875ced1d0ad34450a69a8373";><code>5b62f4b</code></a>
 Fix LSP and Clippy warnings and errors (<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/540";>#540</a>)</li>
   <li><a 
href="https://github.com/tikv/rust-prometheus/commit/52d76fc2d888cad2cac0218496acf2e9dd1f89d5";><code>52d76fc</code></a>
 cargo: bump MSRV to 1.81 (<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/539";>#539</a>)</li>
   <li><a 
href="https://github.com/tikv/rust-prometheus/commit/3bd0e82f1f85b1ab60a59cf09d640f9716cf845d";><code>3bd0e82</code></a>
 Upgrade <code>thiserror</code> crate from 1.0 to 2.0 version (<a 
href="https://redirect.github.com/tikv/rust-prometheus/issues/534";>#534</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/tikv/rust-prometheus/compare/v0.13.4...v0.14.0";>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 merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@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]

Reply via email to