dependabot[bot] opened a new pull request, #428: URL: https://github.com/apache/arrow-datafusion-python/pull/428
Bumps [pyo3](https://github.com/pyo3/pyo3) from 0.19.0 to 0.19.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pyo3/pyo3/releases">pyo3's releases</a>.</em></p> <blockquote> <h2>PyO3 0.19.1</h2> <p>This release fixes a memory leak caused by a reference counting error which affected <code>PySet::new</code>, <code>PyFrozenSet::new</code> and conversions from Rust set types to Python's <code>set</code>.</p> <p>There are several other notable quality-of-life changes in this release:</p> <ul> <li>Support for PyPy 3.10.</li> <li>Support for <code>hashbrown</code> 0.14 and <code>indexmap</code> 2.0.</li> <li>Conversions for <code>std::net::IpAddr</code> have been added.</li> <li>The <code>num-bigint</code> feature is now supported with the <code>abi3</code> feature.</li> <li>The <code>num-complex</code> feature with <code>abi3</code> feature enabled will now correctly use <code>__complex__</code> implementations (it always has without <code>abi3</code> enabled).</li> <li><code>#[new]</code> methods can now return <code>Py<Self></code> to return an existing object (e.g. for singleton classes).</li> </ul> <p>There are also a handful of other additions and bugfixes included in this release.</p> <p>Thank you to the following users for the improvements:</p> <p><a href="https://github.com/adamreichold"><code>@adamreichold</code></a> <a href="https://github.com/adriangb"><code>@adriangb</code></a> <a href="https://github.com/alex"><code>@alex</code></a> <a href="https://github.com/CallMeMSL"><code>@CallMeMSL</code></a> <a href="https://github.com/davidhewitt"><code>@davidhewitt</code></a> <a href="https://github.com/ijl"><code>@ijl</code></a> <a href="https://github.com/jakelishman"><code>@jakelishman</code></a> <a href="https://github.com/lucatrv"><code>@lucatrv</code></a> <a href="https://github.com/mejrs"><code>@mejrs</code></a> <a href="https://github.com/mhils"><code>@mhils</code></a> <a href="https://github.com/youknowone"><code>@youknowone</code></a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md">pyo3's changelog</a>.</em></p> <blockquote> <h2>[0.19.1] - 2023-07-03</h2> <h3>Packaging</h3> <ul> <li>Extend range of supported versions of <code>hashbrown</code> optional dependency to include version 0.14 <a href="https://redirect.github.com/PyO3/pyo3/pull/3258">#3258</a></li> <li>Extend range of supported versions of <code>indexmap</code> optional dependency to include version 2. <a href="https://redirect.github.com/PyO3/pyo3/pull/3277">#3277</a></li> <li>Support PyPy 3.10. <a href="https://redirect.github.com/PyO3/pyo3/pull/3289">#3289</a></li> </ul> <h3>Added</h3> <ul> <li>Add <code>pyo3::types::PyFrozenSetBuilder</code> to allow building a <code>PyFrozenSet</code> item by item. <a href="https://redirect.github.com/PyO3/pyo3/pull/3156">#3156</a></li> <li>Add support for converting to and from Python's <code>ipaddress.IPv4Address</code>/<code>ipaddress.IPv6Address</code> and <code>std::net::IpAddr</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/3197">#3197</a></li> <li>Add support for <code>num-bigint</code> feature in combination with <code>abi3</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/3198">#3198</a></li> <li>Add <code>PyErr_GetRaisedException()</code>, <code>PyErr_SetRaisedException()</code> to FFI definitions for Python 3.12 and later. <a href="https://redirect.github.com/PyO3/pyo3/pull/3248">#3248</a></li> <li>Add <code>Python::with_pool</code> which is a safer but more limited alternative to <code>Python::new_pool</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/3263">#3263</a></li> <li>Add <code>PyDict::get_item_with_error</code> on PyPy. <a href="https://redirect.github.com/PyO3/pyo3/pull/3270">#3270</a></li> <li>Allow <code>#[new]</code> methods may to return <code>Py<Self></code> in order to return existing instances. <a href="https://redirect.github.com/PyO3/pyo3/pull/3287">#3287</a></li> </ul> <h3>Fixed</h3> <ul> <li>Fix conversion of classes implementing <code>__complex__</code> to <code>Complex</code> when using <code>abi3</code> or PyPy. <a href="https://redirect.github.com/PyO3/pyo3/pull/3185">#3185</a></li> <li>Stop suppressing unrelated exceptions in <code>PyAny::hasattr</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/3271">#3271</a></li> <li>Fix memory leak when creating <code>PySet</code> or <code>PyFrozenSet</code> or returning types converted into these internally, e.g. <code>HashSet</code> or <code>BTreeSet</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/3286">#3286</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/PyO3/pyo3/commit/dfe04e9b316a54c860539bda235972ebcf24a54d"><code>dfe04e9</code></a> release: 0.19.1</li> <li><a href="https://github.com/PyO3/pyo3/commit/7b2d6276ca5edd5e1a4d5e8b6ae10ceb3d51f745"><code>7b2d627</code></a> workaround msrv lint issue</li> <li><a href="https://github.com/PyO3/pyo3/commit/5fb41a43a0362053fdad388e807f4c4efd134989"><code>5fb41a4</code></a> fixup minimal package versions for msrv</li> <li><a href="https://github.com/PyO3/pyo3/commit/9151c967d23f697cab0b4b44b6f7af4da59a2adb"><code>9151c96</code></a> support PyPy 3.10</li> <li><a href="https://github.com/PyO3/pyo3/commit/9f9be35102f80bae8337e38069d2516baa110378"><code>9f9be35</code></a> Allow <code>#[new]</code> to return existing instances</li> <li><a href="https://github.com/PyO3/pyo3/commit/18122740bd7cdee435f06a11130e231e6f86bba9"><code>1812274</code></a> Apparently, PySet_Add does not steal a reference, hence we should not forget ...</li> <li><a href="https://github.com/PyO3/pyo3/commit/efea50bbfc7fd56ad1e51f2fdbbb7fc92793eccf"><code>efea50b</code></a> clarify ownership of opt_to_pyobj helper function</li> <li><a href="https://github.com/PyO3/pyo3/commit/710a2dc1da1878aff8b24edb1b7680333618bc9b"><code>710a2dc</code></a> Fix typos and add punctuation recommended by grammarly in Class.md</li> <li><a href="https://github.com/PyO3/pyo3/commit/0ba07db807559c9d1dfb8919e58ba9f21d83da05"><code>0ba07db</code></a> use _run_cargo helper in noxfile</li> <li><a href="https://github.com/PyO3/pyo3/commit/cd33b1cd98b36ff4f1b21a914f5cd88258d072c9"><code>cd33b1c</code></a> move pyo3-ffi-check into its own workspace</li> <li>Additional commits viewable in <a href="https://github.com/pyo3/pyo3/compare/v0.19.0...v0.19.1">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
