Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update gdal requirement from <3.7.2,>=3.7.0 to >=3.7.0,<3.8.1 #57

Merged
merged 1 commit into from
Nov 27, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 14, 2023

Updates the requirements on gdal to permit the latest version.

Release notes

Sourced from gdal's releases.

GDAL 3.8.0

The 3.8.0 release is a new feature release with the following highlights:

  • Add JSONFG read/write vector driver for OGC Features and Geometries JSON.
  • Add PMTiles read/write vector driver for PMTiles v3 datasets containing MVT PBF tiles
  • Add S102 raster read-only driver for S-102 bathymetric products (depends on libhdf5)
  • Add gdal_footprint utility: compute the footprint of a raster file, taking into account nodata/mask band, and generating polygons/multipolygons corresponding to areas where pixels are valid (#6264)
  • Python bindings: various enhancements to reduce the number of "gotchas" related to inter-object ownership relationships, and a few syntaxic sugar enhancements
  • Arrow interface: improve spatial and attribute filtering on read side; add write side with OGRLayer::WriteArrowBatch()
  • GeoPackage: much faster spatial index creation (~ 3-4 times faster)
  • ARG driver deprecated: will be removed in 3.9.0

and many other enhancements and fixes as detailed in the release notes

Changelog

Sourced from gdal's changelog.

GDAL/OGR 3.8.0 Releases Notes

GDAL/OGR 3.8.0 is a feature release. Those notes include changes since GDAL 3.8.0, but not already included in a GDAL 3.7.x bugfix release.

In a nutshell...

  • Add JSONFG read/write vector driver for OGC Features and Geometries JSON.
  • Add PMTiles read/write vector driver for PMTiles v3 datasets containing MVT PBF tiles
  • Add S102 raster read-only driver for S-102 bathymetric products (depends on libhdf5)
  • Add gdal_footprint utility: compute the footprint of a raster file, taking into account nodata/mask band, and generating polygons/multipolygons corresponding to areas where pixels are valid (#6264)
  • Python bindings: various enhancements to reduce the number of "gotchas" related to inter-object ownership relationships, and a few syntaxic sugar enhancements
  • Arrow interface: improve spatial and attribute filtering on read side; add write side with OGRLayer::WriteArrowBatch()
  • GeoPackage: much faster spatial index creation (~ 3-4 times faster)
  • ARG driver deprecated: will be removed in 3.9.0

Backward compatibility issues

See MIGRATION_GUIDE.TXT

New optional dependencies

  • libaec to enable CCSDS Adaptive Entropy Coding decompression in the GRIB driver

Build

  • emit better error message when a raster driver cannot be enabled because of OGR_BUILD_OPTIONAL_DRIVERS=OFF
  • improve static linking for CURL and EXPAT
  • Java bindings: change default installation directory of JNI shared library and control it with GDAL_JAVA_JNI_INSTALL_DIR
  • automatically enable SQLite driver if -DOGR_ENABLE_DRIVER_GPKG=ON
  • Don't use libjpeg if disabled (and libjpeg-turbo >= 3.0 available) (#8336)
  • gdal.pc generation: use CMAKE_INSTALL_INCLUDEDIR/CMAKE_INSTALL_LIBDIR for includedir/libdir (#8012)
  • gdal-config: add a --plugindir switch (#8012)

GDAL 3.8.0 - Overview of Changes

Port

... (truncated)

Commits
  • 2072770 Python utilities: make gdal_edit, gdal_pansharp, gdal_retile and ogr_layer_al...
  • ff68a2c Prepare for 3.8.0beta1
  • 15b4b2f gdal_calc.py: restore specifc --format behaviour (master only fix, fixes #8619)
  • 4ae8505 Merge pull request #8516 from rouault/fix_8514
  • 4d6bb03 validate_gpkg.py: make it work with -DSQLITE_TRUSTED_SCHEMA=0 SQLite compile-...
  • ac75d43 gdalcompare.py: multiple enhancements
  • bb49e41 Command line utilities: use usual conventions for placeholder (<value>), excl...
  • 6103d79 Merge pull request #8335 from rouault/fix_8331
  • 170a765 Merge pull request #8317 from rouault/fix_8316
  • 8008002 gdal2tiles: raise explicit exception if bad value for --s_srs (fixes #8331)
  • Additional commits viewable in compare view

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 commands and options

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)

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 14, 2023
Copy link

codecov bot commented Nov 14, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (ffcee3e) 83.13% compared to head (b7cdbc4) 83.13%.

Additional details and impacted files
@@           Coverage Diff           @@
##             main      #57   +/-   ##
=======================================
  Coverage   83.13%   83.13%           
=======================================
  Files           7        7           
  Lines        2081     2081           
=======================================
  Hits         1730     1730           
  Misses        351      351           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Updates the requirements on [gdal](https://github.com/OSGeo/gdal) to permit the latest version.
- [Release notes](https://github.com/OSGeo/gdal/releases)
- [Changelog](https://github.com/OSGeo/gdal/blob/master/NEWS.md)
- [Commits](OSGeo/gdal@v3.7.0...v3.8.0)

---
updated-dependencies:
- dependency-name: gdal
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/gdal-gte-3.7.0-and-lt-3.8.1 branch from b4cc1e7 to b7cdbc4 Compare November 27, 2023 08:22
@MAfarrag MAfarrag merged commit e718db5 into main Nov 27, 2023
10 checks passed
@MAfarrag MAfarrag deleted the dependabot/pip/gdal-gte-3.7.0-and-lt-3.8.1 branch November 27, 2023 16:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant