dependabot[bot] opened a new pull request, #722: URL: https://github.com/apache/arrow-rs-object-store/pull/722
Updates the requirements on [quick-xml](https://github.com/tafia/quick-xml) to permit the latest version. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tafia/quick-xml/releases">quick-xml's releases</a>.</em></p> <blockquote> <h2>v0.40.0 - UTF-16 and ISO-2022-JP encodings supported</h2> <h2>What's Changed</h2> <p>MSRV bumped to 1.79.</p> <p>Now <code>quick-xml</code> supports the UTF-16 and ISO-2022-JP encoded documents. See the new <code>DecodingReader</code> type.</p> <h3>New Features</h3> <ul> <li> <p><a href="https://redirect.github.com/tafia/quick-xml/issues/956">#956</a>: Add <code>DecodingReader</code>, a <code>BufRead</code> adapter that auto-detects encoding from BOM or XML declaration and transcodes to UTF-8. Enabled by the <code>encoding</code> feature.</p> </li> <li> <p><a href="https://redirect.github.com/tafia/quick-xml/issues/938">#938</a>: Add new enumeration <code>XmlVersion</code> and typified getter <code>BytesDecl::xml_version()</code>.</p> </li> <li> <p><a href="https://redirect.github.com/tafia/quick-xml/issues/938">#938</a>: Add new error variant <code>IllFormedError::UnknownVersion</code>.</p> </li> <li> <p><a href="https://redirect.github.com/tafia/quick-xml/issues/371">#371</a>: Add new error variant <code>EscapeError::TooManyNestedEntities</code>.</p> </li> <li> <p><a href="https://redirect.github.com/tafia/quick-xml/issues/371">#371</a>: Improved compliance with the XML attribute value normalization process by adding</p> <ul> <li><code>Attribute::normalized_value()</code></li> <li><code>Attribute::normalized_value_with()</code></li> <li><code>Attribute::decoded_and_normalized_value()</code></li> <li><code>Attribute::decoded_and_normalized_value_with()</code></li> </ul> <p>which ought to be used in place of deprecated</p> <ul> <li><code>Attribute::unescape_value()</code></li> <li><code>Attribute::unescape_value_with()</code></li> <li><code>Attribute::decode_and_unescape_value()</code></li> <li><code>Attribute::decode_and_unescape_value_with()</code></li> </ul> <p>Deprecated functions now behaves the same as newly added.</p> </li> </ul> <h3>Bug Fixes</h3> <ul> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/938">#938</a>: Use correct rules for EOL normalization in <code>Deserializer</code> when parse XML 1.0 documents. Previously XML 1.1. rules was applied.</li> </ul> <h3>Misc Changes</h3> <ul> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/914">#914</a>: Remove deprecated <code>.prefixes()</code>, <code>.resolve()</code>, <code>.resolve_attribute()</code>, and <code>.resolve_element()</code> of <code>NsReader</code>. Use <code>.resolver().<...></code> methods instead.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/938">#938</a>: Now <code>BytesText::xml_content</code>, <code>BytesCData::xml_content</code> and <code>BytesRef::xml_content</code> accepts <code>XmlVersion</code> parameter to apply correct EOL normalization rules.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/944">#944</a>: <code>read_text()</code> now returns <code>BytesText</code> which allows you to get the content with properly normalized EOLs. To get the previous behavior use <code>.read_text().decode()?</code>.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/956">#956</a>: Bumped MSRV from 1.59 (Feb 2022) to 1.79 (June 2024)</li> </ul> <p><a href="https://redirect.github.com/tafia/quick-xml/issues/371">#371</a>: <a href="https://redirect.github.com/tafia/quick-xml/issues/371">tafia/quick-xml#371</a> <a href="https://redirect.github.com/tafia/quick-xml/issues/914">#914</a>: <a href="https://redirect.github.com/tafia/quick-xml/pull/914">tafia/quick-xml#914</a> <a href="https://redirect.github.com/tafia/quick-xml/issues/938">#938</a>: <a href="https://redirect.github.com/tafia/quick-xml/pull/938">tafia/quick-xml#938</a> <a href="https://redirect.github.com/tafia/quick-xml/issues/944">#944</a>: <a href="https://redirect.github.com/tafia/quick-xml/pull/944">tafia/quick-xml#944</a> <a href="https://redirect.github.com/tafia/quick-xml/issues/956">#956</a>: <a href="https://redirect.github.com/tafia/quick-xml/pull/956">tafia/quick-xml#956</a></p> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/dobermai"><code>@​dobermai</code></a> made their first contribution in <a href="https://redirect.github.com/tafia/quick-xml/pull/958">tafia/quick-xml#958</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/tafia/quick-xml/compare/v0.39.4...v0.40.0">https://github.com/tafia/quick-xml/compare/v0.39.4...v0.40.0</a></p> </blockquote> </details> <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.40.0 -- 2026-05-11</h2> <p>MSRV bumped to 1.79.</p> <p>Now <code>quick-xml</code> supports the UTF-16 encoded documents. See the new <code>DecodingReader</code> type.</p> <h3>New Features</h3> <ul> <li> <p><a href="https://redirect.github.com/tafia/quick-xml/issues/956">#956</a>: Add <code>DecodingReader</code>, a <code>BufRead</code> adapter that auto-detects encoding from BOM or XML declaration and transcodes to UTF-8. Enabled by the <code>encoding</code> feature.</p> </li> <li> <p><a href="https://redirect.github.com/tafia/quick-xml/issues/938">#938</a>: Add new enumeration <code>XmlVersion</code> and typified getter <code>BytesDecl::xml_version()</code>.</p> </li> <li> <p><a href="https://redirect.github.com/tafia/quick-xml/issues/938">#938</a>: Add new error variant <code>IllFormedError::UnknownVersion</code>.</p> </li> <li> <p><a href="https://redirect.github.com/tafia/quick-xml/issues/371">#371</a>: Add new error variant <code>EscapeError::TooManyNestedEntities</code>.</p> </li> <li> <p><a href="https://redirect.github.com/tafia/quick-xml/issues/371">#371</a>: Improved compliance with the XML attribute value normalization process by adding</p> <ul> <li><code>Attribute::normalized_value()</code></li> <li><code>Attribute::normalized_value_with()</code></li> <li><code>Attribute::decoded_and_normalized_value()</code></li> <li><code>Attribute::decoded_and_normalized_value_with()</code></li> </ul> <p>which ought to be used in place of deprecated</p> <ul> <li><code>Attribute::unescape_value()</code></li> <li><code>Attribute::unescape_value_with()</code></li> <li><code>Attribute::decode_and_unescape_value()</code></li> <li><code>Attribute::decode_and_unescape_value_with()</code></li> </ul> <p>Deprecated functions now behaves the same as newly added.</p> </li> </ul> <h3>Bug Fixes</h3> <ul> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/938">#938</a>: Use correct rules for EOL normalization in <code>Deserializer</code> when parse XML 1.0 documents. Previously XML 1.1. rules was applied.</li> </ul> <h3>Misc Changes</h3> <ul> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/914">#914</a>: Remove deprecated <code>.prefixes()</code>, <code>.resolve()</code>, <code>.resolve_attribute()</code>, and <code>.resolve_element()</code> of <code>NsReader</code>. Use <code>.resolver().<...></code> methods instead.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/938">#938</a>: Now <code>BytesText::xml_content</code>, <code>BytesCData::xml_content</code> and <code>BytesRef::xml_content</code> accepts <code>XmlVersion</code> parameter to apply correct EOL normalization rules.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/944">#944</a>: <code>read_text()</code> now returns <code>BytesText</code> which allows you to get the content with properly normalized EOLs. To get the previous behavior use <code>.read_text().decode()?</code>.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/956">#956</a>: Bumped MSRV from 1.59 (Feb 2022) to 1.79 (June 2024)</li> </ul> <p><a href="https://redirect.github.com/tafia/quick-xml/issues/371">#371</a>: <a href="https://redirect.github.com/tafia/quick-xml/issues/371">tafia/quick-xml#371</a> <a href="https://redirect.github.com/tafia/quick-xml/issues/914">#914</a>: <a href="https://redirect.github.com/tafia/quick-xml/pull/914">tafia/quick-xml#914</a> <a href="https://redirect.github.com/tafia/quick-xml/issues/938">#938</a>: <a href="https://redirect.github.com/tafia/quick-xml/pull/938">tafia/quick-xml#938</a> <a href="https://redirect.github.com/tafia/quick-xml/issues/944">#944</a>: <a href="https://redirect.github.com/tafia/quick-xml/pull/944">tafia/quick-xml#944</a> <a href="https://redirect.github.com/tafia/quick-xml/issues/956">#956</a>: <a href="https://redirect.github.com/tafia/quick-xml/pull/956">tafia/quick-xml#956</a></p> <h2>0.39.4 -- 2026-05-08</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tafia/quick-xml/commit/2778564d592ca25d6315ea20b5105c74addfce5e"><code>2778564</code></a> Release 0.40.0</li> <li><a href="https://github.com/tafia/quick-xml/commit/393db036811e7473b22d875109cd07acb183580f"><code>393db03</code></a> Merge pull request <a href="https://redirect.github.com/tafia/quick-xml/issues/962">#962</a> from Mingun/prepare-0.40</li> <li><a href="https://github.com/tafia/quick-xml/commit/a27709a457126f129b06d20309316be74056234c"><code>a27709a</code></a> Fix misprint in code example</li> <li><a href="https://github.com/tafia/quick-xml/commit/0c0c914bc753075abdab92dcd94fc95c6a195b25"><code>0c0c914</code></a> Make some functions const and enable clippy::missing_const_for_fn lint</li> <li><a href="https://github.com/tafia/quick-xml/commit/bf4ffe5020cbe256c441c2cd26adf8716f6e5324"><code>bf4ffe5</code></a> Fix clippy warning: use <code>.first()</code> instead of <code>.get(0)</code></li> <li><a href="https://github.com/tafia/quick-xml/commit/d69baad385aeb489d4761469cc9738c21aa41c4f"><code>d69baad</code></a> Fix clippy warning: remove unnecessary after 241f01e20ff679e9248f2ae424c9ba82...</li> <li><a href="https://github.com/tafia/quick-xml/commit/8e0ae4f7f4f2d0dda9f000f094bdf9b8e2b915a5"><code>8e0ae4f</code></a> Fix clippy warning: use <code>strip_prefix</code> instead of manual stripping</li> <li><a href="https://github.com/tafia/quick-xml/commit/b795a5db737ad1b9c3fa8e61b31215fe1aba9552"><code>b795a5d</code></a> Remove outdated documentation line that accidentally remained after 99d2870a3...</li> <li><a href="https://github.com/tafia/quick-xml/commit/94e61ed5c0dbc8f18ce7e4bdc77a4a14fac71111"><code>94e61ed</code></a> Merge pull request <a href="https://redirect.github.com/tafia/quick-xml/issues/956">#956</a> from dralley/decode</li> <li><a href="https://github.com/tafia/quick-xml/commit/b918b0bab8c5b98cfc84f7322bd80fa3cc80f5b4"><code>b918b0b</code></a> Expand tests using DecodingReader</li> <li>Additional commits viewable in <a href="https://github.com/tafia/quick-xml/compare/v0.39.0...v0.40.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 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> -- 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]
