dependabot[bot] opened a new pull request, #1676:
URL: https://github.com/apache/sedona/pull/1676

   Bumps [rasterio](https://github.com/rasterio/rasterio) from 1.3.11 to 1.4.2.
   <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.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 &quot;MEM::&quot; 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>
   <h2>1.4.0</h2>
   <p>This is the final 1.4.0 release. The package version, credits, and 
citation file have been updated. There have been no other changes since 
1.4.0rc2. Rasterio is the work of 157 contributors, including 33 new 
contributors since 1.3.0.</p>
   <p>Rasterio 1.4 will continue to support classic GIS programming work with a 
band-based data model.</p>
   <p>The changes since 1.3.11 are fully described in the changelog, split 
across pre-releases. Here is a high-level summary.</p>
   <h3>Deprecations</h3>
   <ul>
   <li>The statistics() method of a dataset is faulty and will be removed in a 
future version (<a 
href="https://redirect.github.com/rasterio/rasterio/issues/3134";>#3134</a>).</li>
   <li>The is_tiled property of a dataset will be removed in a future version 
and a pending deprecation warning will be raised if it is used (<a 
href="https://redirect.github.com/rasterio/rasterio/issues/3015";>#3015</a>).</li>
   <li>The is_valid property of the CRS class is not useful and will be removed 
in a future version (<a 
href="https://redirect.github.com/rasterio/rasterio/issues/2919";>#2919</a>).</li>
   <li>The FilePath class has been supplanted by rasterio.open's new opener 
keyword argument and its associated GDAL virtual filesystem plugin. It will be 
removed in version 2.0 (<a 
href="https://redirect.github.com/rasterio/rasterio/issues/2919";>#2919</a>).</li>
   </ul>
   <h3>New features</h3>
   <ul>
   <li>New dataset stats(), clear_stats(), and update_stats() methods have been 
added to replace the deprecated statistics() method (<a 
href="https://redirect.github.com/rasterio/rasterio/issues/3134";>#3134</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.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
   specifies a testing dependency that was previously undeclared..</p>
   <p>Bug fixes:</p>
   <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>
   <p>Other changes:</p>
   <ul>
   <li>GDAL 3.10 will disable opening &quot;MEM::&quot; 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>
   <h2>1.4.0 (2024-09-23)</h2>
   <p>This is the final 1.4.0 release. The package version, credits, and 
citation
   file have been updated. There have been no other changes since 1.4.0rc2.
   Rasterio is the work of 157 contributors, including 33 new contributors since
   1.3.0.</p>
   <h2>1.4.0rc2 (2024-09-10)</h2>
   <p>Version 1.4.0 will require GDAL &gt;= 3.5. Conditional checks for older 
GDAL
   versions at compile and run time have been removed across the entirety of 
the</p>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/rasterio/rasterio/commit/af32faa627e1a73d63b166cb43e035cd3fcc4af5";><code>af32faa</code></a>
 Update change log and version for 1.4.2</li>
   <li><a 
href="https://github.com/rasterio/rasterio/commit/3e1514f4f2339dcf6608fbd0a87c9d868e224d44";><code>3e1514f</code></a>
 Reduce shape of destination for the 1-D case. (<a 
href="https://redirect.github.com/rasterio/rasterio/issues/3223";>#3223</a>)</li>
   <li><a 
href="https://github.com/rasterio/rasterio/commit/72191277ce53227a7e1b8c950477540863f99cae";><code>7219127</code></a>
 Restore default behavior of rowcol(), returning ints (<a 
href="https://redirect.github.com/rasterio/rasterio/issues/3219";>#3219</a>)</li>
   <li><a 
href="https://github.com/rasterio/rasterio/commit/aa3b664e3571acef937ff4ffb2bcbb398449a7d7";><code>aa3b664</code></a>
 Eliminate much to_epsg() usage and speed up <strong>eq</strong>() (<a 
href="https://redirect.github.com/rasterio/rasterio/issues/3216";>#3216</a>)</li>
   <li><a 
href="https://github.com/rasterio/rasterio/commit/20fddc18a208eb5692f18af20a9375f4375ac199";><code>20fddc1</code></a>
 Test maint-1.4 against GDAL 3.10-to-be and add more MEM file checks (<a 
href="https://redirect.github.com/rasterio/rasterio/issues/3212";>#3212</a>)</li>
   <li><a 
href="https://github.com/rasterio/rasterio/commit/fd2ffe74249e0ef9f80bfffaac1f7d6e7a843a82";><code>fd2ffe7</code></a>
 Update return values in docstrings (<a 
href="https://redirect.github.com/rasterio/rasterio/issues/3204";>#3204</a>)</li>
   <li><a 
href="https://github.com/rasterio/rasterio/commit/909576bdeae00dc659253630a1696753d3330b96";><code>909576b</code></a>
 Merge branch 'main' into maint-1.4</li>
   <li><a 
href="https://github.com/rasterio/rasterio/commit/df409de086efa437fef2b66b4e0d2e1e387fe474";><code>df409de</code></a>
 Rel 1.4.1 (<a 
href="https://redirect.github.com/rasterio/rasterio/issues/3199";>#3199</a>)</li>
   <li><a 
href="https://github.com/rasterio/rasterio/commit/0d1a180c358c085e2deed1c033c3c2c28dc0fe3a";><code>0d1a180</code></a>
 Add fsspec to test dependencies (<a 
href="https://redirect.github.com/rasterio/rasterio/issues/3197";>#3197</a>)</li>
   <li><a 
href="https://github.com/rasterio/rasterio/commit/883b5f5aee327be44791e92f0b169709f266191e";><code>883b5f5</code></a>
 Restore xy transform of grid coordinates (<a 
href="https://redirect.github.com/rasterio/rasterio/issues/3198";>#3198</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/rasterio/rasterio/compare/1.3.11...1.4.2";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rasterio&package-manager=pip&previous-version=1.3.11&new-version=1.4.2)](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

Reply via email to