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

   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>Improvements in serde deserializer and MSRV bumped to 1.52</h2>
   <h2>What's Changed</h2>
   <p>MSRV was increased from 1.46 to 1.52 in <a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/521";>#521</a>.</p>
   <h3>New Features</h3>
   <ul>
   <li><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/521";>#521</a>:
 Implement <code>Clone</code> for all error types. This required changing 
<code>Error::Io</code> to contain
   <code>Arc&lt;std::io::Error&gt;</code> instead of 
<code>std::io::Error</code> since <code>std::io::Error</code> does not implement
   <code>Clone</code>.</li>
   </ul>
   <h3>Bug Fixes</h3>
   <ul>
   <li><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/490";>#490</a>:
 Ensure that serialization of map keys always produces valid XML names.
   In particular, that means that maps with numeric and numeric-like keys (for
   example, <code>&quot;42&quot;</code>) no longer can be serialized because 
[XML name] cannot start
   from a digit</li>
   <li><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/500";>#500</a>:
 Fix deserialization of top-level sequences of enums, like
   <pre lang="xml"><code>&lt;?xml version=&quot;1.0&quot; 
encoding=&quot;UTF-8&quot;?&gt;
   &lt;!-- list of enum Enum { A, B, С } --&gt;
   &lt;A/&gt;
   &lt;B/&gt;
   &lt;C/&gt;
   </code></pre>
   </li>
   <li><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/514";>#514</a>:
 Fix wrong reporting <code>Error::EndEventMismatch</code> after disabling and 
enabling
   <code>.check_end_names</code></li>
   <li><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/517";>#517</a>:
 Fix swapped codes for <code>\r</code> and <code>\n</code> characters when 
escaping them</li>
   <li><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/523";>#523</a>:
 Fix incorrect skipping text and CDATA content before any map-like structures
   in serde deserializer, like
   <pre lang="xml"><code>unwanted text&lt;struct&gt;...&lt;/struct&gt;
   </code></pre>
   </li>
   <li><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/523";>#523</a>:
 Fix incorrect handling of <code>xs:list</code>s with encoded spaces: they still
   act as delimiters, which is confirmed also by mature XmlBeans Java 
library</li>
   <li><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/473";>#473</a>:
 Fix a hidden requirement to enable serde's <code>derive</code> feature to get
   quick-xml's <code>serialize</code> feature for <code>edition = 2021</code> 
or <code>resolver = 2</code> crates</li>
   </ul>
   <h3>Misc Changes</h3>
   <ul>
   <li>
   <p><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/490";>#490</a>:
 Removed <code>$unflatten=</code> special prefix for fields for serde 
(de)serializer, because:</p>
   <ul>
   <li>it is useless for deserializer</li>
   <li>serializer was rewritten and does not require it anymore</li>
   </ul>
   <p>This prefix allowed you to serialize struct field as an XML element and 
now
   replaced by a more thoughtful system explicitly indicating that a field 
should
   be serialized as an attribute by prepending <code>@</code> character to its 
name</p>
   </li>
   <li>
   <p><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/490";>#490</a>:
 Removed <code>$primitive=</code> prefix. That prefix allowed you to serialize 
struct
   field as an attribute instead of an element and now replaced by a more 
thoughtful
   system explicitly indicating that a field should be serialized as an 
attribute</p>
   </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.27.0 -- 2022-12-25</h2>
   <h3>New Features</h3>
   <ul>
   <li><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/521";>#521</a>:
 Implement <code>Clone</code> for all error types. This required changing 
<code>Error::Io</code> to contain
   <code>Arc&lt;std::io::Error&gt;</code> instead of 
<code>std::io::Error</code> since <code>std::io::Error</code> does not implement
   <code>Clone</code>.</li>
   </ul>
   <h3>Bug Fixes</h3>
   <ul>
   <li><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/490";>#490</a>:
 Ensure that serialization of map keys always produces valid XML names.
   In particular, that means that maps with numeric and numeric-like keys (for
   example, <code>&quot;42&quot;</code>) no longer can be serialized because 
[XML name] cannot start
   from a digit</li>
   <li><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/500";>#500</a>:
 Fix deserialization of top-level sequences of enums, like
   <pre lang="xml"><code>&lt;?xml version=&quot;1.0&quot; 
encoding=&quot;UTF-8&quot;?&gt;
   &lt;!-- list of enum Enum { A, B, С } --&gt;
   &lt;A/&gt;
   &lt;B/&gt;
   &lt;C/&gt;
   </code></pre>
   </li>
   <li><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/514";>#514</a>:
 Fix wrong reporting <code>Error::EndEventMismatch</code> after disabling and 
enabling
   <code>.check_end_names</code></li>
   <li><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/517";>#517</a>:
 Fix swapped codes for <code>\r</code> and <code>\n</code> characters when 
escaping them</li>
   <li><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/523";>#523</a>:
 Fix incorrect skipping text and CDATA content before any map-like structures
   in serde deserializer, like
   <pre lang="xml"><code>unwanted text&lt;struct&gt;...&lt;/struct&gt;
   </code></pre>
   </li>
   <li><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/523";>#523</a>:
 Fix incorrect handling of <code>xs:list</code>s with encoded spaces: they still
   act as delimiters, which is confirmed also by mature XmlBeans Java 
library</li>
   <li><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/473";>#473</a>:
 Fix a hidden requirement to enable serde's <code>derive</code> feature to get
   quick-xml's <code>serialize</code> feature for <code>edition = 2021</code> 
or <code>resolver = 2</code> crates</li>
   </ul>
   <h3>Misc Changes</h3>
   <ul>
   <li>
   <p><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/490";>#490</a>:
 Removed <code>$unflatten=</code> special prefix for fields for serde 
(de)serializer, because:</p>
   <ul>
   <li>it is useless for deserializer</li>
   <li>serializer was rewritten and does not require it anymore</li>
   </ul>
   <p>This prefix allowed you to serialize struct field as an XML element and 
now
   replaced by a more thoughtful system explicitly indicating that a field 
should
   be serialized as an attribute by prepending <code>@</code> character to its 
name</p>
   </li>
   <li>
   <p><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/490";>#490</a>:
 Removed <code>$primitive=</code> prefix. That prefix allowed you to serialize 
struct
   field as an attribute instead of an element and now replaced by a more 
thoughtful
   system explicitly indicating that a field should be serialized as an 
attribute
   by prepending <code>@</code> character to its name</p>
   </li>
   <li>
   <p><a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/490";>#490</a>:
 In addition to the <code>$value</code> special name for a field a new 
<code>$text</code>
   special name was added:</p>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/f63910d273283e2aea82bdb33ba40bf66b54d3d1";><code>f63910d</code></a>
 Release 0.27.0</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/d1908e66563bea54e418bd124ca533ccd17b5eab";><code>d1908e6</code></a>
 Merge pull request <a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/528";>#528</a>
 from Mingun/doc</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/66275cc917c40f380c0768fb2120cdea1008116a";><code>66275cc</code></a>
 Add an example for deserializing wrapped lists</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/c521a2ff30ced217bba45b836d0501d159dafd14";><code>c521a2f</code></a>
 Add documentation for mapping from XML to Rust used by deserializer</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/44a4c6941bbd7827504c86d94a350c48c2e6405a";><code>44a4c69</code></a>
 Merge pull request <a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/524";>#524</a>
 from Mingun/serde</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/c205f1d9ef0d7006a630f86a43d90c9542fd79cb";><code>c205f1d</code></a>
 Fix <a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/473";>#473</a>:
 add explicit serde feature that is independent from dependency</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/e877f4fe2f5c9ea920bca25aedccb332cbad2f02";><code>e877f4f</code></a>
 Merge pull request <a 
href="https://github-redirect.dependabot.com/tafia/quick-xml/issues/523";>#523</a>
 from Mingun/fix-bugs</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/8283121f631bb43038549cf96a80ddb7d21068c6";><code>8283121</code></a>
 Add some comments about deserializing sequences and give a more descriptive 
n...</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/daa652626b1cf6750055d73fa7e5cd3bcb83d810";><code>daa6526</code></a>
 Fix incorrect handling of <code>xs:list</code>s with encoded spaces: they 
still act as d...</li>
   <li><a 
href="https://github.com/tafia/quick-xml/commit/1373eb12a94646d1fd87362d80b5af5430bdece3";><code>1373eb1</code></a>
 Rename <code>next_text</code> to <code>read_string</code> because new name are 
better describes the...</li>
   <li>Additional commits viewable in <a 
href="https://github.com/tafia/quick-xml/compare/v0.26.0...v0.27.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 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: github-unsubscr...@arrow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to