dependabot[bot] opened a new pull request, #451: URL: https://github.com/apache/arrow-datafusion-python/pull/451
Bumps [pyo3](https://github.com/pyo3/pyo3) from 0.19.1 to 0.19.2. <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.2</h2> <p>This release is a bugfix release with the primary focus being improved compatibility with Python 3.12 betas. Please note that until Python 3.12.0 stable is released PyO3 cannot guarantee that code compiled using PyO3 and beta versions of Python 3.12 will support 3.12 stable.</p> <p>There have been some new minor APIs added in this release: <code>PyErr::Display</code>, <code>PyAny::downcast_exact</code> and <code>PySlice::full</code>.</p> <p>Other bugfixes shipped in this release include:</p> <ul> <li>A correction to the conversion of Python <code>datetime</code> to <code>chrono::DateTime<FixedOffset></code> with respect to the handling of timezones.</li> <li>Fix an edge case where <code>PyErr::matches</code> and <code>PyErr::get_type</code> could return results inconsistent with each other.</li> <li>Fix cases where converting a Python exception into a <code>PyErr</code> would cause its traceback to be lost.</li> </ul> <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/alex"><code>@alex</code></a> <a href="https://github.com/BooleanCat"><code>@BooleanCat</code></a> <a href="https://github.com/CallMeMSL"><code>@CallMeMSL</code></a> <a href="https://github.com/cdce8p"><code>@cdce8p</code></a> <a href="https://github.com/davidhewitt"><code>@davidhewitt</code></a> <a href="https://github.com/grantslatton"><code>@grantslatton</code></a> <a href="https://github.com/juntyr"><code>@juntyr</code></a> <a href="https://github.com/mejrs"><code>@mejrs</code></a> <a href="https://github.com/panpilkarz"><code>@panpilkarz</code></a> <a href="https://github.com/ringsaturn"><code>@ringsaturn</code></a> <a href="https://github.com/zakstucke"><code>@zakstucke</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.2] - 2023-08-01</h2> <h3>Added</h3> <ul> <li>Add FFI definitions <code>PyState_AddModule</code>, <code>PyState_RemoveModule</code> and <code>PyState_FindModule</code> for PyPy 3.9 and up. <a href="https://redirect.github.com/PyO3/pyo3/pull/3295">#3295</a></li> <li>Add FFI definitions <code>_PyObject_CallFunction_SizeT</code> and <code>_PyObject_CallMethod_SizeT</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/3297">#3297</a></li> <li>Add a "performance" section to the guide collecting performance-related tricks and problems. <a href="https://redirect.github.com/PyO3/pyo3/pull/3304">#3304</a></li> <li>Add <code>PyErr::Display</code> for all Python versions, and FFI symbol <code>PyErr_DisplayException</code> for Python 3.12. <a href="https://redirect.github.com/PyO3/pyo3/pull/3334">#3334</a></li> <li>Add FFI definition <code>PyType_GetDict()</code> for Python 3.12. <a href="https://redirect.github.com/PyO3/pyo3/pull/3339">#3339</a></li> <li>Add <code>PyAny::downcast_exact</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/3346">#3346</a></li> <li>Add <code>PySlice::full()</code> to construct a full slice (<code>::</code>). <a href="https://redirect.github.com/PyO3/pyo3/pull/3353">#3353</a></li> </ul> <h3>Changed</h3> <ul> <li>Update <code>PyErr</code> for 3.12 betas to avoid deprecated ffi methods. <a href="https://redirect.github.com/PyO3/pyo3/pull/3306">#3306</a></li> <li>Update FFI definitions of <code>object.h</code> for Python 3.12.0b4. <a href="https://redirect.github.com/PyO3/pyo3/pull/3335">#3335</a></li> <li>Update <code>pyo3::ffi</code> struct definitions to be compatible with 3.12.0b4. <a href="https://redirect.github.com/PyO3/pyo3/pull/3342">#3342</a></li> <li>Optimize conversion of <code>float</code> to <code>f64</code> (and <code>PyFloat::value</code>) on non-abi3 builds. <a href="https://redirect.github.com/PyO3/pyo3/pull/3345">#3345</a></li> </ul> <h3>Fixed</h3> <ul> <li>Fix timezone conversion bug for FixedOffset datetimes that were being incorrectly converted to and from UTC. <a href="https://redirect.github.com/PyO3/pyo3/pull/3269">#3269</a></li> <li>Fix <code>SystemError</code> raised in <code>PyUnicodeDecodeError_Create</code> on PyPy 3.10. <a href="https://redirect.github.com/PyO3/pyo3/pull/3297">#3297</a></li> <li>Correct FFI definition <code>Py_EnterRecursiveCall</code> to return <code>c_int</code> (was incorrectly returning <code>()</code>). <a href="https://redirect.github.com/PyO3/pyo3/pull/3300">#3300</a></li> <li>Fix case where <code>PyErr::matches</code> and <code>PyErr::is_instance</code> returned results inconsistent with <code>PyErr::get_type</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/3313">#3313</a></li> <li>Fix loss of panic message in <code>PanicException</code> when unwinding after the exception was "normalized". <a href="https://redirect.github.com/PyO3/pyo3/pull/3326">#3326</a></li> <li>Fix <code>PyErr::from_value</code> and <code>PyErr::into_value</code> losing traceback on conversion. <a href="https://redirect.github.com/PyO3/pyo3/pull/3328">#3328</a></li> <li>Fix reference counting of immortal objects on Python 3.12.0b4. <a href="https://redirect.github.com/PyO3/pyo3/pull/3335">#3335</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/PyO3/pyo3/commit/931e23dde6080602acaca00d5ca5884c6109efd3"><code>931e23d</code></a> release: 0.19.2</li> <li><a href="https://github.com/PyO3/pyo3/commit/e8d8840e1514060e4eb1fdeb22d59311528e62ef"><code>e8d8840</code></a> fix msrv issues for 0.19.2 patch release</li> <li><a href="https://github.com/PyO3/pyo3/commit/ecfddd5ab9ac0bf2aa6e199f6a43ff374e0ec546"><code>ecfddd5</code></a> update tests of refcounting to use a non-immortal object</li> <li><a href="https://github.com/PyO3/pyo3/commit/5564d61b7c4c63fec84d803418114382811a0711"><code>5564d61</code></a> update object.h definitions for Python 3.12</li> <li><a href="https://github.com/PyO3/pyo3/commit/0f1846c561781aa66ba4f6b1f46b337a4c214e41"><code>0f1846c</code></a> update criterion to 0.5.1</li> <li><a href="https://github.com/PyO3/pyo3/commit/1f7c1fc7fb249968e32fe178d5634754a23fa01b"><code>1f7c1fc</code></a> move benches to subdirectory</li> <li><a href="https://github.com/PyO3/pyo3/commit/1fa46d0726b5f72845cdd1bf7d342f249d1ca617"><code>1fa46d0</code></a> add macro quotes module for common snippets</li> <li><a href="https://github.com/PyO3/pyo3/commit/0f796e77af205b9a4cff593387a1ab77c29936b2"><code>0f796e7</code></a> macros: <code>_py</code> -> <code>py</code></li> <li><a href="https://github.com/PyO3/pyo3/commit/00a6ce6d919d087c3af4de98055b8cab3460f636"><code>00a6ce6</code></a> fix compile failure for getter with return lifetime of self</li> <li><a href="https://github.com/PyO3/pyo3/commit/79d5e4f8f48f58473c319453da04dc8a8e4b2a69"><code>79d5e4f</code></a> Added newsfragment</li> <li>Additional commits viewable in <a href="https://github.com/pyo3/pyo3/compare/v0.19.1...v0.19.2">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]
