dependabot[bot] opened a new pull request, #6633:
URL: https://github.com/apache/arrow-rs/pull/6633

   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.37.0 - serde &amp; errors imporvements</h2>
   <h2>What's Changed</h2>
   <h3>⚠️ Significant Changes</h3>
   <p>Those changes could require not trivial adoption of your code:</p>
   <ul>
   <li>The recognized boolean values in serde <code>Deserializer</code> are 
reduced. Use <code>#[serde(deserialize_with)]</code> which will accept and 
parse strings if you need the old behavior.</li>
   <li><code>Serializer</code> no longer serialize consequent 
<em>primitive</em> values (those which would produce only text, without 
surrounding tags), because it is impossible to deserialize them back to the 
same value.</li>
   <li>The crate's errors was changed, some variants was splitted to their own 
error types, some removed.</li>
   </ul>
   <h3>New Features</h3>
   <ul>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/826";>#826</a>: 
Implement <code>From&lt;String&gt;</code> and 
<code>From&lt;Cow&lt;str&gt;&gt;</code> for 
<code>quick_xml::de::Text</code>.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/826";>#826</a>: Make 
<code>SimpleTypeDeserializer</code> and <code>SimpleTypeSerializer</code> 
public.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/826";>#826</a>: 
Implement <code>IntoDeserializer</code> for <code>&amp;mut 
Deserializer</code>.</li>
   </ul>
   <h3>Bug Fixes</h3>
   <ul>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/655";>#655</a>: Do not 
write indent before and after <code>$text</code> fields and those 
<code>$value</code> fields that are serialized as a text (for example, 
<code>usize</code> or <code>String</code>).</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/826";>#826</a>: Handle 
only those boolean representations that are allowed by [Xml Schema] which is 
only <code>&quot;true&quot;</code>, <code>&quot;1&quot;</code>, 
<code>&quot;false&quot;</code>, and <code>&quot;0&quot;</code>. Previously the 
following values also was accepted:
   <table>
   <thead>
   <tr>
   <th><code>bool</code></th>
   <th>XML content</th>
   </tr>
   </thead>
   <tbody>
   <tr>
   <td><code>true</code></td>
   <td><code>&quot;True&quot;</code>,  <code>&quot;TRUE&quot;</code>,  
<code>&quot;t&quot;</code>, <code>&quot;Yes&quot;</code>, 
<code>&quot;YES&quot;</code>, <code>&quot;yes&quot;</code>, 
<code>&quot;y&quot;</code></td>
   </tr>
   <tr>
   <td><code>false</code></td>
   <td><code>&quot;False&quot;</code>, <code>&quot;FALSE&quot;</code>, 
<code>&quot;f&quot;</code>, <code>&quot;No&quot;</code>,  
<code>&quot;NO&quot;</code>,  <code>&quot;no&quot;</code>,  
<code>&quot;n&quot;</code></td>
   </tr>
   </tbody>
   </table>
   </li>
   </ul>
   <h3>Misc Changes</h3>
   <ul>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/227";>#227</a>: Split 
<code>SeError</code> from <code>DeError</code> in the <code>serialize</code> 
feature. Serialize functions and methods now return <code>SeError</code>.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/810";>#810</a>: Return 
<code>std::io::Error</code> from <code>Writer</code> methods.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/811";>#811</a>: Split 
<code>NamespaceError</code> and <code>EncodingError</code> from 
<code>Error</code>.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/811";>#811</a>: Renamed 
<code>Error::EscapeError</code> to <code>Error::Escape</code> to match other 
variants.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/811";>#811</a>: Narrow 
down error return type from <code>Error</code> where only one variant is ever 
returned: attribute related methods on <code>BytesStart</code> and 
<code>BytesDecl</code> returns <code>AttrError</code>.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/820";>#820</a>: 
Classify output of the <code>Serializer</code> by returning an enumeration with 
kind of written data.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/823";>#823</a>: Do not 
allow serialization of consequent primitives, for example 
<code>Vec&lt;usize&gt;</code> or <code>Vec&lt;String&gt;</code> in 
<code>$value</code> fields. They cannot be deserialized back with the same 
result.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/827";>#827</a>: Make 
<code>escape</code> and it variants take a <code>impl 
Into&lt;Cow&lt;str&gt;&gt;</code> argument and implement <code>From&lt;(&amp;'a 
str, Cow&lt;'a, str&gt;)&gt;</code> on <code>Attribute</code>.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/826";>#826</a>: Removed 
<code>DeError::InvalidInt</code>, <code>DeError::InvalidFloat</code> and 
<code>DeError::InvalidBoolean</code>. Now the responsibility for returning the 
error lies with the visitor of the type. See rationale in <a 
href="https://redirect.github.com/serde-rs/serde/pull/2811";>serde-rs/serde#2811</a></li>
   </ul>
   <p><a 
href="https://redirect.github.com/tafia/quick-xml/issues/227";>#227</a>: <a 
href="https://redirect.github.com/tafia/quick-xml/issues/227";>tafia/quick-xml#227</a>
   <a href="https://redirect.github.com/tafia/quick-xml/issues/655";>#655</a>: 
<a 
href="https://redirect.github.com/tafia/quick-xml/issues/655";>tafia/quick-xml#655</a>
   <a href="https://redirect.github.com/tafia/quick-xml/issues/810";>#810</a>: 
<a 
href="https://redirect.github.com/tafia/quick-xml/pull/810";>tafia/quick-xml#810</a>
   <a href="https://redirect.github.com/tafia/quick-xml/issues/811";>#811</a>: 
<a 
href="https://redirect.github.com/tafia/quick-xml/pull/811";>tafia/quick-xml#811</a>
   <a href="https://redirect.github.com/tafia/quick-xml/issues/820";>#820</a>: 
<a 
href="https://redirect.github.com/tafia/quick-xml/pull/820";>tafia/quick-xml#820</a>
   <a href="https://redirect.github.com/tafia/quick-xml/issues/823";>#823</a>: 
<a 
href="https://redirect.github.com/tafia/quick-xml/pull/823";>tafia/quick-xml#823</a>
   <a href="https://redirect.github.com/tafia/quick-xml/issues/826";>#826</a>: 
<a 
href="https://redirect.github.com/tafia/quick-xml/pull/826";>tafia/quick-xml#826</a>
   <a href="https://redirect.github.com/tafia/quick-xml/issues/827";>#827</a>: 
<a 
href="https://redirect.github.com/tafia/quick-xml/pull/827";>tafia/quick-xml#827</a>
   [Xml Schema]: <a 
href="https://www.w3.org/TR/xmlschema11-2/#boolean";>https://www.w3.org/TR/xmlschema11-2/#boolean</a></p>
   <h2>New Contributors</h2>
   <ul>
   <li><a href="https://github.com/RedPhoenixQ";><code>@​RedPhoenixQ</code></a> 
made their first contribution in <a 
href="https://redirect.github.com/tafia/quick-xml/pull/810";>tafia/quick-xml#810</a></li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </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.37.0 -- 2024-10-27</h2>
   <h3>New Features</h3>
   <ul>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/826";>#826</a>: 
Implement <code>From&lt;String&gt;</code> and 
<code>From&lt;Cow&lt;str&gt;&gt;</code> for 
<code>quick_xml::de::Text</code>.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/826";>#826</a>: Make 
<code>SimpleTypeDeserializer</code> and <code>SimpleTypeSerializer</code> 
public.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/826";>#826</a>: 
Implement <code>IntoDeserializer</code> for <code>&amp;mut 
Deserializer</code>.</li>
   </ul>
   <h3>Bug Fixes</h3>
   <ul>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/655";>#655</a>: Do not 
write indent before and after <code>$text</code> fields and those 
<code>$value</code> fields
   that are serialized as a text (for example, <code>usize</code> or 
<code>String</code>).</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/826";>#826</a>: Handle 
only those boolean representations that are allowed by [Xml Schema]
   which is only <code>&quot;true&quot;</code>, <code>&quot;1&quot;</code>, 
<code>&quot;false&quot;</code>, and <code>&quot;0&quot;</code>. Previously the 
following values
   also was accepted:
   <table>
   <thead>
   <tr>
   <th><code>bool</code></th>
   <th>XML content</th>
   </tr>
   </thead>
   <tbody>
   <tr>
   <td><code>true</code></td>
   <td><code>&quot;True&quot;</code>,  <code>&quot;TRUE&quot;</code>,  
<code>&quot;t&quot;</code>, <code>&quot;Yes&quot;</code>, 
<code>&quot;YES&quot;</code>, <code>&quot;yes&quot;</code>, 
<code>&quot;y&quot;</code></td>
   </tr>
   <tr>
   <td><code>false</code></td>
   <td><code>&quot;False&quot;</code>, <code>&quot;FALSE&quot;</code>, 
<code>&quot;f&quot;</code>, <code>&quot;No&quot;</code>,  
<code>&quot;NO&quot;</code>,  <code>&quot;no&quot;</code>,  
<code>&quot;n&quot;</code></td>
   </tr>
   </tbody>
   </table>
   </li>
   </ul>
   <h3>Misc Changes</h3>
   <ul>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/227";>#227</a>: Split 
<code>SeError</code> from <code>DeError</code> in the <code>serialize</code> 
feature.
   Serialize functions and methods now return <code>SeError</code>.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/810";>#810</a>: Return 
<code>std::io::Error</code> from <code>Writer</code> methods.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/811";>#811</a>: Split 
<code>NamespaceError</code> and <code>EncodingError</code> from 
<code>Error</code>.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/811";>#811</a>: Renamed 
<code>Error::EscapeError</code> to <code>Error::Escape</code> to match other 
variants.</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/811";>#811</a>: Narrow 
down error return type from <code>Error</code> where only one variant is ever 
returned:
   attribute related methods on <code>BytesStart</code> and 
<code>BytesDecl</code> returns <code>AttrError</code></li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/820";>#820</a>: 
Classify output of the <code>Serializer</code> by returning an enumeration with 
kind of written data</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/823";>#823</a>: Do not 
allow serialization of consequent primitives, for example 
<code>Vec&lt;usize&gt;</code> or
   <code>Vec&lt;String&gt;</code> in <code>$value</code> fields. They cannot be 
deserialized back with the same result</li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/827";>#827</a>: Make 
<code>escape</code> and it variants take a <code>impl 
Into&lt;Cow&lt;str&gt;&gt;</code> argument and implement
   <code>From&lt;(&amp;'a str, Cow&lt;'a, str&gt;)&gt;</code> on 
<code>Attribute</code></li>
   <li><a 
href="https://redirect.github.com/tafia/quick-xml/issues/826";>#826</a>: Removed 
<code>DeError::InvalidInt</code>, <code>DeError::InvalidFloat</code> and 
<code>DeError::InvalidBoolean</code>.
   Now the responsibility for returning the error lies with the visitor of the 
type.
   See rationale in <a 
href="https://redirect.github.com/serde-rs/serde/pull/2811";>serde-rs/serde#2811</a></li>
   </ul>
   <p><a 
href="https://redirect.github.com/tafia/quick-xml/issues/227";>#227</a>: <a 
href="https://redirect.github.com/tafia/quick-xml/issues/227";>tafia/quick-xml#227</a>
   <a href="https://redirect.github.com/tafia/quick-xml/issues/655";>#655</a>: 
<a 
href="https://redirect.github.com/tafia/quick-xml/issues/655";>tafia/quick-xml#655</a>
   <a href="https://redirect.github.com/tafia/quick-xml/issues/810";>#810</a>: 
<a 
href="https://redirect.github.com/tafia/quick-xml/pull/810";>tafia/quick-xml#810</a>
   <a href="https://redirect.github.com/tafia/quick-xml/issues/811";>#811</a>: 
<a 
href="https://redirect.github.com/tafia/quick-xml/pull/811";>tafia/quick-xml#811</a>
   <a href="https://redirect.github.com/tafia/quick-xml/issues/820";>#820</a>: 
<a 
href="https://redirect.github.com/tafia/quick-xml/pull/820";>tafia/quick-xml#820</a>
   <a href="https://redirect.github.com/tafia/quick-xml/issues/823";>#823</a>: 
<a 
href="https://redirect.github.com/tafia/quick-xml/pull/823";>tafia/quick-xml#823</a>
   <a href="https://redirect.github.com/tafia/quick-xml/issues/826";>#826</a>: 
<a 
href="https://redirect.github.com/tafia/quick-xml/pull/826";>tafia/quick-xml#826</a>
   <a href="https://redirect.github.com/tafia/quick-xml/issues/827";>#827</a>: 
<a 
href="https://redirect.github.com/tafia/quick-xml/pull/827";>tafia/quick-xml#827</a>
   [Xml Schema]: <a 
href="https://www.w3.org/TR/xmlschema11-2/#boolean";>https://www.w3.org/TR/xmlschema11-2/#boolean</a></p>
   <h2>0.36.2 -- 2024-09-20</h2>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/3ac75a61b37ac96c0319cf7ac0d327d334799dff";><code>3ac75a6</code></a>
 Release 0.37.0</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/7799744ca3d9fdae0532a90ec51bac8b59434304";><code>7799744</code></a>
 Sort dependencies and table of tests which requires features</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/8311eeff6c19078e104bc1766f95a258085e34a3";><code>8311eef</code></a>
 Rename test xmlrs_reader_tests -&gt; html and run it only when escape-html 
featu...</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/a6c5fc575dda0d789e44858db8140295307a7024";><code>a6c5fc5</code></a>
 Merge pull request <a 
href="https://redirect.github.com/tafia/quick-xml/issues/826";>#826</a> from 
Mingun/more-deserializers</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/83d29578bfee2a5620665e9ca8089fb1e0c03cdb";><code>83d2957</code></a>
 Implement IntoDeserializer for public deserializers</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/921868429ac3018a4f04b687ad4844d83a0d35d9";><code>9218684</code></a>
 Make SimpleTypeDeserializer and SimpleTypeSerializer public</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/1920e03371456f52f2f549040e482a8ce713db67";><code>1920e03</code></a>
 Implement From&lt;String&gt; and From&lt;Cow<!-- raw HTML omitted -->&gt; for 
quick_xml::de::Text</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/45a66e56c806045a362b2681dc68497489eb221e";><code>45a66e5</code></a>
 Do not report errors if deserializer cannot convert string to the boolean or 
...</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/b285fc94e3ad340b0867fe29958d0ae2728d431a";><code>b285fc9</code></a>
 Move deserialization helper from Content to CowRef</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/62f10dde0637b4d5094896fa5897790a1bbf1c9d";><code>62f10dd</code></a>
 Forward deserialization of primitives in SimpleTypeDeserializer to 
AtomicDese...</li>
   <li>Additional commits viewable in <a 
href="https://github.com/tafia/quick-xml/compare/v0.36.0...v0.37.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]

Reply via email to