dependabot[bot] opened a new pull request, #1738: URL: https://github.com/apache/sedona/pull/1738
Bumps [rasterio](https://github.com/rasterio/rasterio) from 1.3.11 to 1.4.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rasterio/rasterio/releases">rasterio's releases</a>.</em></p> <blockquote> <h2>1.4.3</h2> <p>Version 1.4.3 fixes two major regressions and several other minor bugs.</p> <h3>Bug fixes</h3> <ul> <li>Erroneous masking of 0-valued raster data by boundless, masked reads has been fixed (<a href="https://redirect.github.com/rasterio/rasterio/issues/3268">#3268</a>).</li> <li>If passed a dataset object, <code>rasterio.open()</code> now raises TypeError instead of proceeding and crashing (<a href="https://redirect.github.com/rasterio/rasterio/issues/3266">#3266</a>).</li> <li>All options of <code>GDALFillNodata()</code> are now supported by <code>rasterio.fill.fill nodata()</code> (<a href="https://redirect.github.com/rasterio/rasterio/issues/3265">#3265</a>).</li> <li>The flag for GDAL driver registration has been changed to an _env module attribute. Drivers should only be registered once per process at most (<a href="https://redirect.github.com/rasterio/rasterio/issues/3260">#3260</a>). A side effect of this is that the GDAL_SKIP configuration option, which affects format driver registration, only has an effect the first time a dataset is opened.</li> <li>Allow a dataset's compression metadata to surface in profile and compression properties even if the value isn't present in the Compression enum (<a href="https://redirect.github.com/rasterio/rasterio/issues/3259">#3259</a>).</li> <li>A bug that causes <code>CRS.from_wkt().is_epsg_code()</code> to erroneously return False when an EPSG code is embedded in WKT has been fixed (<a href="https://redirect.github.com/rasterio/rasterio/issues/3258">#3258</a>).</li> <li>IAU 2015 has been added to the list of known CRS authorities (<a href="https://redirect.github.com/rasterio/rasterio/issues/3243">#3243</a>).</li> <li>A major performance regression in Rasterio's merge tool has been corrected (<a href="https://redirect.github.com/rasterio/rasterio/issues/3234">#3234</a>).</li> </ul> <h3>Other changes</h3> <ul> <li><code>CRS._matches()</code> has been rewritten to better support <code>CRS.to_authority()</code> and <code>CRS.to_epsg()</code> (<a href="https://redirect.github.com/rasterio/rasterio/issues/3255">#3255</a>).</li> </ul> <h2>1.4.2</h2> <p>Version 1.4.2 fixes two regressions and further improves compatibility with GDAL 3.10.</p> <h3>Important note about GDAL 3.10.0</h3> <p>GDAL version 3.10.0 will be released soon. No version of Rasterio before 1.4.2 will fully function with GDAL 3.10. To use GDAL 3.10, you must upgrade Rasterio to 1.4.2.</p> <h3>Bug fixes</h3> <ul> <li>The <code>reproject()</code> function now always returns a 2-D array, masked or non-masked, when requested (<a href="https://redirect.github.com/rasterio/rasterio/issues/3223">#3223</a>).</li> <li>The various <code>rowcol()</code> methods once again return integers by default as they did in 1.3.11 (<a href="https://redirect.github.com/rasterio/rasterio/issues/3219">#3219</a>).</li> <li>Internal usage of <code>CRS.to_epsg()</code>, which is slow, has been reduced, and <code>CRS.__eq__()</code> has been made much faster (<a href="https://redirect.github.com/rasterio/rasterio/issues/3216">#3216</a>).</li> <li>The warper's use of a MEM:: dataset has been made fully compatible with changes coming in GDAL 3.10 (<a href="https://redirect.github.com/rasterio/rasterio/issues/3212">#3212</a>).</li> </ul> <h3>Packaging notes</h3> <p>All wheels on PyPI include GDAL 3.9.3.</p> <p>The macOS ARM64 wheels on PyPI are available only for macOS version 14 (Sonoma) or newer because of changes on the platform we use to build those wheels.</p> <h2>1.4.1</h2> <p>Version 1.4.1 fixes two regressions, improves compatibility with GDAL 3.10, and specifies a testing dependency that was previously undeclared.</p> <h3>Bug fixes</h3> <ul> <li>The xy() transform method once again accepts grid coordinates as input (<a href="https://redirect.github.com/rasterio/rasterio/issues/3198">#3198</a>).</li> <li>A dataset's index() method again returns a tuple of ints, not floats (<a href="https://redirect.github.com/rasterio/rasterio/issues/3195">#3195</a>).</li> </ul> <h3>Other changes</h3> <ul> <li>GDAL 3.10 will disable opening "MEM::" datasets by default. Rasterio's internal usage of these datasets is wrapped in special configuration.</li> <li>New color interpretation constants of GDAL 3.10 have been added to the ColorInterp enum (<a href="https://redirect.github.com/rasterio/rasterio/issues/3194">#3194</a>).</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rasterio/rasterio/blob/main/CHANGES.txt">rasterio's changelog</a>.</em></p> <blockquote> <h2>1.4.3 (2024-12-02)</h2> <p>Bug fixes:</p> <ul> <li>Erroneous masking of 0-valued raster data by boundless, masked reads has been fixed (<a href="https://redirect.github.com/rasterio/rasterio/issues/3268">#3268</a>).</li> <li>If passed a dataset object, rasterio.open() now raises TypeError instead of proceeding and crashing (<a href="https://redirect.github.com/rasterio/rasterio/issues/3266">#3266</a>).</li> <li>All options of GDALFillNodata() are now supported by the method in rasterio.fill (<a href="https://redirect.github.com/rasterio/rasterio/issues/3265">#3265</a>).</li> <li>The flag for GDAL driver registration has been changed to an _env module attribute. Drivers should only be registered once per process at most (<a href="https://redirect.github.com/rasterio/rasterio/issues/3260">#3260</a>). A side effect of this is that the GDAL_SKIP configuration option, which affects format driver registration, only has an effect the first time a dataset is opened.</li> <li>Allow a dataset's compression metadata to surface in profile and compression properties even if the value isn't present in the Compression enum (<a href="https://redirect.github.com/rasterio/rasterio/issues/3259">#3259</a>).</li> <li>A bug that causes CRS.from_wkt().is_epsg_code() to erroneously return False when an EPSG code is embedded in WKT has been fixed (<a href="https://redirect.github.com/rasterio/rasterio/issues/3258">#3258</a>).</li> <li>IAU 2015 has been added to the list of known CRS authorities (<a href="https://redirect.github.com/rasterio/rasterio/issues/3243">#3243</a>).</li> <li>A major performance regression in Rasterio's merge tool has been corrected (<a href="https://redirect.github.com/rasterio/rasterio/issues/3234">#3234</a>).</li> </ul> <p>Other changes:</p> <ul> <li>CRS._matches() has been rewritten to better support CRS.to_authority() and CRS.to_epsg() (<a href="https://redirect.github.com/rasterio/rasterio/issues/3255">#3255</a>).</li> </ul> <h2>1.4.2 (2024-10-30)</h2> <p>Version 1.4.2 fixes two regressions and further improves compatibility with GDAL 3.10.</p> <p>Bug fixes:</p> <ul> <li>The reproject() function now always returns a 2-D array, masked or non-masked, when requested (<a href="https://redirect.github.com/rasterio/rasterio/issues/3223">#3223</a>).</li> <li>The various rowcol() methods once again return integers by default as they did in 1.3.11 (<a href="https://redirect.github.com/rasterio/rasterio/issues/3219">#3219</a>).</li> <li>Internal usage of CRS.to_epsg(), which is slow, has been reduced, and CRS.<strong>eq</strong>() has been made much faster (<a href="https://redirect.github.com/rasterio/rasterio/issues/3216">#3216</a>).</li> <li>The warper's use of a MEM:: dataset has been made fully compatible with changes coming in GDAL 3.10 (<a href="https://redirect.github.com/rasterio/rasterio/issues/3212">#3212</a>).</li> </ul> <h2>1.4.1 (2024-09-30)</h2> <p>Version 1.4.1 fixes two regressions, improves compatibility with GDAL 3.10, and</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rasterio/rasterio/commit/7f8bda2e32df5b5eefc6e1ea6b5f04a946567ede"><code>7f8bda2</code></a> This is 1.4.3</li> <li><a href="https://github.com/rasterio/rasterio/commit/0ac5c29f34c3e5443a801bb83857046ed14cbe29"><code>0ac5c29</code></a> Fix erroneous masking of 0-valued data (<a href="https://redirect.github.com/rasterio/rasterio/issues/3268">#3268</a>)</li> <li><a href="https://github.com/rasterio/rasterio/commit/f0f03e36dd03473db880d78b846034bcdcbfe45b"><code>f0f03e3</code></a> Fix typos discovered by codespell (<a href="https://redirect.github.com/rasterio/rasterio/issues/3264">#3264</a>) (<a href="https://redirect.github.com/rasterio/rasterio/issues/3267">#3267</a>)</li> <li><a href="https://github.com/rasterio/rasterio/commit/22b1d792bc6964024d325ba22424e00c7ca14ef0"><code>22b1d79</code></a> Prevent rasterio from trying to open a dataset object (<a href="https://redirect.github.com/rasterio/rasterio/issues/3266">#3266</a>)</li> <li><a href="https://github.com/rasterio/rasterio/commit/77ef4c21e117668a2786e7af32c2e4f104df5b76"><code>77ef4c2</code></a> Support all GDALFillNodata() options in rasterio.fill (<a href="https://redirect.github.com/rasterio/rasterio/issues/3265">#3265</a>)</li> <li><a href="https://github.com/rasterio/rasterio/commit/d78d09beaebee4c49b970834c9801f4c6346d61c"><code>d78d09b</code></a> Register drivers at most once per process (<a href="https://redirect.github.com/rasterio/rasterio/issues/3260">#3260</a>)</li> <li><a href="https://github.com/rasterio/rasterio/commit/213618dca440194f937969bb86ffc7a9f14fbdc3"><code>213618d</code></a> Allow MRF compression to surface in properties (<a href="https://redirect.github.com/rasterio/rasterio/issues/3259">#3259</a>)</li> <li><a href="https://github.com/rasterio/rasterio/commit/d535ef804fa628185ee7290a987277d66726e609"><code>d535ef8</code></a> Use to_epsg() in is_epsg_code() (<a href="https://redirect.github.com/rasterio/rasterio/issues/3258">#3258</a>)</li> <li><a href="https://github.com/rasterio/rasterio/commit/c5a0929a18fba04ef16fde1ef7180a13a2df24b8"><code>c5a0929</code></a> Rewrite _matches() to better support to_authority() and to_epsg() (<a href="https://redirect.github.com/rasterio/rasterio/issues/3255">#3255</a>)</li> <li><a href="https://github.com/rasterio/rasterio/commit/8420a4a085964148f0a466df15eb801fefc0441e"><code>8420a4a</code></a> Increment GDAL and Python versions for CI (<a href="https://redirect.github.com/rasterio/rasterio/issues/3244">#3244</a>)</li> <li>Additional commits viewable in <a href="https://github.com/rasterio/rasterio/compare/1.3.11...1.4.3">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 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: dev-unsubscr...@sedona.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org