dependabot[bot] opened a new pull request, #602: URL: https://github.com/apache/arrow-rs-object-store/pull/602
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.39.0 - Config for Writer</h2> <h2>What's Changed</h2> <p>Added a way to configure <code>Writer</code>. Now all configuration is contained in the <code>writer::Config</code> struct and can be applied at once. When <code>serde-types</code> feature is enabled, configuration is serializable.</p> <h3>New Features</h3> <ul> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/846">#846</a>: Add methods <code>config()</code> and <code>config_mut()</code> to inspect and change the writer configuration.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/846">#846</a>: Add ability to write space before <code>/></code> in self-closed tags for maximum compatibility with XHTML.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/846">#846</a>: Add method <code>empty_element_handling()</code> as a more powerful alternative to <code>expand_empty_elements()</code> in <code>Serializer</code>.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/929">#929</a>: Allow to pass list of field names to <code>impl_deserialize_for_internally_tagged_enum!</code> macro which is required if you enum variants contains <code>$value</code> fields.</li> </ul> <h3>Bug Fixes</h3> <ul> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/923">#923</a>: Implement correct skipping of well-formed DTD.</li> </ul> <h3>Misc Changes</h3> <ul> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/908">#908</a>: Increase minimal supported <code>serde</code> version from 1.0.139 to 1.0.180.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/913">#913</a>: Deprecate <code>.prefixes()</code>, <code>.resolve()</code>, <code>.resolve_attribute()</code>, and <code>.resolve_element()</code> of <code>NsReader</code>. Use <code>.resolver().bindings()</code> and <code>.resolver().resolve()</code> methods instead.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/913">#913</a>: <code>Attributes::has_nil</code> now accepts <code>NamespaceResolver</code> instead of <code>Reader<R></code>.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/924">#924</a>: (breaking change) Split <code>SyntaxError::UnclosedPIOrXmlDecl</code> into <code>UnclosedPI</code> and <code>UnclosedXmlDecl</code> for more precise error reporting.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/924">#924</a>: (breaking change) <code>Parser::eof_error</code> now takes <code>&self</code> and content <code>&[u8]</code> parameters.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/926">#926</a>: (breaking change) Split <code>SyntaxError::UnclosedTag</code> into <code>UnclosedTag</code>, <code>UnclosedSingleQuotedAttributeValue</code> and <code>UnclosedDoubleQuotedAttributeValue</code> for more precise error reporting.</li> </ul> <p><a href="https://redirect.github.com/tafia/quick-xml/issues/846">#846</a>: <a href="https://redirect.github.com/tafia/quick-xml/issues/846">tafia/quick-xml#846</a> <a href="https://redirect.github.com/tafia/quick-xml/issues/908">#908</a>: <a href="https://redirect.github.com/tafia/quick-xml/pull/908">tafia/quick-xml#908</a> <a href="https://redirect.github.com/tafia/quick-xml/issues/913">#913</a>: <a href="https://redirect.github.com/tafia/quick-xml/pull/913">tafia/quick-xml#913</a> <a href="https://redirect.github.com/tafia/quick-xml/issues/923">#923</a>: <a href="https://redirect.github.com/tafia/quick-xml/issues/923">tafia/quick-xml#923</a> <a href="https://redirect.github.com/tafia/quick-xml/issues/924">#924</a>: <a href="https://redirect.github.com/tafia/quick-xml/pull/924">tafia/quick-xml#924</a> <a href="https://redirect.github.com/tafia/quick-xml/issues/926">#926</a>: <a href="https://redirect.github.com/tafia/quick-xml/issues/926">tafia/quick-xml#926</a> <a href="https://redirect.github.com/tafia/quick-xml/issues/929">#929</a>: <a href="https://redirect.github.com/tafia/quick-xml/pull/929">tafia/quick-xml#929</a></p> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/rzmk"><code>@rzmk</code></a> made their first contribution in <a href="https://redirect.github.com/tafia/quick-xml/pull/920">tafia/quick-xml#920</a></li> <li><a href="https://github.com/zrneely"><code>@zrneely</code></a> made their first contribution in <a href="https://redirect.github.com/tafia/quick-xml/pull/922">tafia/quick-xml#922</a></li> <li><a href="https://github.com/SuchAFuriousDeath"><code>@SuchAFuriousDeath</code></a> made their first contribution in <a href="https://redirect.github.com/tafia/quick-xml/pull/924">tafia/quick-xml#924</a></li> <li><a href="https://github.com/tayu0110"><code>@tayu0110</code></a> made their first contribution in <a href="https://redirect.github.com/tafia/quick-xml/pull/925">tafia/quick-xml#925</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/tafia/quick-xml/compare/v0.38.4...v0.39.0">https://github.com/tafia/quick-xml/compare/v0.38.4...v0.39.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.39.0 -- 2026-01-11</h2> <p>Added a way to configure <code>Writer</code>. Now all configuration is contained in the <code>writer::Config</code> struct and can be applied at once. When <code>serde-types</code> feature is enabled, configuration is serializable.</p> <h3>New Features</h3> <ul> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/846">#846</a>: Add methods <code>config()</code> and <code>config_mut()</code> to inspect and change the writer configuration.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/846">#846</a>: Add ability to write space before <code>/></code> in self-closed tags for maximum compatibility with XHTML.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/846">#846</a>: Add method <code>empty_element_handling()</code> as a more powerful alternative to <code>expand_empty_elements()</code> in <code>Serializer</code>.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/929">#929</a>: Allow to pass list of field names to <code>impl_deserialize_for_internally_tagged_enum!</code> macro which is required if you enum variants contains <code>$value</code> fields.</li> </ul> <h3>Bug Fixes</h3> <ul> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/923">#923</a>: Implement correct skipping of well-formed DTD.</li> </ul> <h3>Misc Changes</h3> <ul> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/908">#908</a>: Increase minimal supported <code>serde</code> version from 1.0.139 to 1.0.180.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/913">#913</a>: Deprecate <code>.prefixes()</code>, <code>.resolve()</code>, <code>.resolve_attribute()</code>, and <code>.resolve_element()</code> of <code>NsReader</code>. Use <code>.resolver().bindings()</code> and <code>.resolver().resolve()</code> methods instead.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/913">#913</a>: <code>Attributes::has_nil</code> now accepts <code>NamespaceResolver</code> instead of <code>Reader<R></code>.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/924">#924</a>: (breaking change) Split <code>SyntaxError::UnclosedPIOrXmlDecl</code> into <code>UnclosedPI</code> and <code>UnclosedXmlDecl</code> for more precise error reporting.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/924">#924</a>: (breaking change) <code>Parser::eof_error</code> now takes <code>&self</code> and content <code>&[u8]</code> parameters.</li> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/926">#926</a>: (breaking change) Split <code>SyntaxError::UnclosedTag</code> into <code>UnclosedTag</code>, <code>UnclosedSingleQuotedAttributeValue</code> and <code>UnclosedDoubleQuotedAttributeValue</code> for more precise error reporting.</li> </ul> <p><a href="https://redirect.github.com/tafia/quick-xml/issues/846">#846</a>: <a href="https://redirect.github.com/tafia/quick-xml/issues/846">tafia/quick-xml#846</a> <a href="https://redirect.github.com/tafia/quick-xml/issues/908">#908</a>: <a href="https://redirect.github.com/tafia/quick-xml/pull/908">tafia/quick-xml#908</a> <a href="https://redirect.github.com/tafia/quick-xml/issues/913">#913</a>: <a href="https://redirect.github.com/tafia/quick-xml/pull/913">tafia/quick-xml#913</a> <a href="https://redirect.github.com/tafia/quick-xml/issues/923">#923</a>: <a href="https://redirect.github.com/tafia/quick-xml/issues/923">tafia/quick-xml#923</a> <a href="https://redirect.github.com/tafia/quick-xml/issues/924">#924</a>: <a href="https://redirect.github.com/tafia/quick-xml/pull/924">tafia/quick-xml#924</a> <a href="https://redirect.github.com/tafia/quick-xml/issues/926">#926</a>: <a href="https://redirect.github.com/tafia/quick-xml/issues/926">tafia/quick-xml#926</a> <a href="https://redirect.github.com/tafia/quick-xml/issues/929">#929</a>: <a href="https://redirect.github.com/tafia/quick-xml/pull/929">tafia/quick-xml#929</a></p> <h2>0.38.4 -- 2025-11-11</h2> <h3>New Features</h3> <ul> <li><a href="https://redirect.github.com/tafia/quick-xml/issues/353">#353</a>: Add ability to serialize textual content as CDATA sections in <code>Serializer</code>. Everywhere where the text node may be created, a CDATA section(s) could be produced instead. See the new [<code>Serializer::text_format()</code>] method.</li> </ul> <h3>Bug Fixes</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tafia/quick-xml/commit/6242da0db105c4d78fd3e4218aa940e82a0cba57"><code>6242da0</code></a> Release 0.39.0</li> <li><a href="https://github.com/tafia/quick-xml/commit/549bb097dc24c793b1e3c08420c03f06de30e20e"><code>549bb09</code></a> Disable tests for documents that are not supported by rxml</li> <li><a href="https://github.com/tafia/quick-xml/commit/2c19dfdef92d884ca8a51a4401267e8a6ad8238d"><code>2c19dfd</code></a> Run <code>cargo fmt</code> in <code>compare</code> project</li> <li><a href="https://github.com/tafia/quick-xml/commit/5fc5a162730cf8ce108afcab639b6b0711bf4c58"><code>5fc5a16</code></a> Fix misprint in benchmark name</li> <li><a href="https://github.com/tafia/quick-xml/commit/ba6b9c5bcc9ba8868ac27f8cf84f6b80b53de71c"><code>ba6b9c5</code></a> Update xml5ever & markup5even: 0.36 -> 0.37</li> <li><a href="https://github.com/tafia/quick-xml/commit/70208daf20ccf11d55b209e6440c3c0f9581506a"><code>70208da</code></a> Fix not updated internal documentation link after <a href="https://redirect.github.com/tafia/quick-xml/issues/922">#922</a></li> <li><a href="https://github.com/tafia/quick-xml/commit/0bfface39bcd7f646b00493106659a89a3e8d67d"><code>0bfface</code></a> Fix misprint in error message</li> <li><a href="https://github.com/tafia/quick-xml/commit/9f6babb0f848a78051ed5bafa7520717283f1a03"><code>9f6babb</code></a> Merge pull request <a href="https://redirect.github.com/tafia/quick-xml/issues/932">#932</a> from Mingun/unclosed-attr-error</li> <li><a href="https://github.com/tafia/quick-xml/commit/229d84c101634db5f45b5c33309cd97069a5a7a6"><code>229d84c</code></a> Split <code>SyntaxError::UnclosedTag</code> into <code>UnclosedTag</code>, `UnclosedSingleQuotedAtt...</li> <li><a href="https://github.com/tafia/quick-xml/commit/f869d0eb04fcce1ddf6624942d00043b57e84dd2"><code>f869d0e</code></a> Merge pull request <a href="https://redirect.github.com/tafia/quick-xml/issues/931">#931</a> from Mingun/benches</li> <li>Additional commits viewable in <a href="https://github.com/tafia/quick-xml/compare/v0.38.0...v0.39.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 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]
