Skip to content

Comments

Bump rasterio from 1.1.8 to 1.3.0.post1#56

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/pip/rasterio-1.3.0.post1
Closed

Bump rasterio from 1.1.8 to 1.3.0.post1#56
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/pip/rasterio-1.3.0.post1

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 15, 2022

Bumps rasterio from 1.1.8 to 1.3.0.post1.

Release notes

Sourced from rasterio's releases.

1.3.0.post1

This release fixes two packaging issues. The project code itself has no changes other than an updated version string and a new change log entry.

  • Linux and macOS wheels for 1.3.0 were built without ZSTD support in the GeoTIFF driver (see rasterio/rasterio-wheels#87 and rasterio/rasterio#2542). This has been fixed.
  • Windows wheels for 1.3.0 included GDAL 3.4.3. They now include GDAL 3.5.1, as do the Linux and macOS wheels.

1.3.0

Rasterio 1.3.0 has new features, deprecations, and many bug fixes. It supports Python versions 3.8+ and GDAL versions 3.1+. Please see https://github.com/rasterio/rasterio/blob/master/CHANGES.txt for a fine grain description of changes since 1.2.10. Major changes and deprecations are listed below.

Packaging

  • Building from source now requires Cython (#2016).
  • PyPI wheels include GDAL 3.5.0 and PROJ 9.0.0.

Deprecations:

  • The rasterio.path module has been moved to rasterio._path and all its member made private (#2423). A new version of rasterio.path temporarily provides aliases to maintain compatibility.

New features:

  • A dataset's write method now accepts Numpy masked arrays and has a "masked" keyword argument. In this case, if masked is False, the masked array's filled method is called with the dataset's nodata value or else the masked array's fill value. If the masked argument is True, the dataset's write_mask method is called.
  • Datasets have a new statistics method that computes the minimum, maximum, mean, and standard deviation of a raster band's data, matching the output of gdalinfo (#2441).
  • The rio-warp CLI command now takes --wo (--warper-option) and --to (--transformer-option) options, allowing the use of PROJ coordinate transformation pipelines like "--to coordinate_operation=proj=pipeline" (#2438).
  • Python file objects and file-like objects from, for example, fsspec are adapted for opening to get a dataset without copying file data to a MemoryFile (#2141).
  • Added support for PROJ JSON based interchange for CRS (#2212).
  • More efficient window intersection and union (#2164).
  • New Affine, GCP, and RFC transformer classes (#2225).

1.3b3 fixes a significant bottleneck for non-EPSG CRS and adds 64-bit Windows wheels for Python 3.8-3.10.

1.3b2 is Rasterio's second pre-release containing a nearly complete view of new features for 1.3.0. We're not accepting new features for 1.3.0 and are only working on major runtime and installation bugs. If you would be willing to try out this pre-release and provide feedback on GitHub, or in responses to this email, the 1.3.0 release will be better and will arrive sooner.

There's one significant bug fix since 1.3b1: error contexts no longer leak from use of GDAL's coordinate transformer.

Our set of binary wheels is small right now, but we'll keep working on that, and will send updates when we've added support for more platforms.

1.3b1 is Rasterio's first pre-release containing a nearly complete view of new features for 1.3.0. We're not accepting new features for 1.3.0 and are only working on major runtime and installation bugs. If you would be willing to try out this pre-release and provide feedback on GitHub, or in responses to this email, the 1.3.0 release will be better and will arrive sooner.

There's one new feature since 1.3a4: support for writing both band data and band mask when passing a Numpy MaskedArray to a dataset's write method. Perhaps more interesting is that the binary wheels on PyPI include GDAL 3.5.0rc4 and PROJ 9.0.0, the latest versions of each.

Our set of binary wheels is small right now, but we'll keep working on that, and will send updates when we've added support for more platforms.

Big thanks to everyone who contributed since 1.3a4, particularly Alan Snow, who cleaned up a lot of obsolete code that was supporting older versions of GDAL.

Rasterio 1.3a2

The second 1.3 pre-release is on the package index this morning. There's one new feature: PROJJSON support (thank you, Alan Snow) and one change to the reprojection code that prevents unnecessary data copying when warping raster data stored in a numpy array (thank you, Ryan Grout). Your feedback on these would be greatly appreciated!

1.2.10

This is the final release from the 1.2 branch.

Changelog

Sourced from rasterio's changelog.

1.3.0.post1 (2022-08-09)

This version corrects errors made in building binary wheels for 1.3.0. There are no bug fixes or new features in this version.

1.3.0 (2022-07-05)

Bug fixes:

  • Temporarily restore rasterio.parse_path (wrapper with a warning).
  • In 1.3b3, rasterio.dtypes.uint64 mapped to 'uint32'. Now it correctly maps to 'uint64' (reported in #2502).

1.3b3 (2022-06-27)

Bug fixes:

  • A bottleneck in construction of non-EPSG CRS objects has been fixed (#2488).
  • The last runtime checks for GDAL version 3.1+ have been removed (#2463).

1.3b2 (2022-06-22)

Changes:

  • The merge tool has new "sum" and "count" merge methods (#2457).

Bug fixes:

  • Some GDAL methods may set a failure level error while also succeeding, according to their return value. We now ensure that callers of these methods can clear any leftover errors (#2487).

Linux and macOS wheels for 1.3b1 are built using the version of rasterio-wheels dated 2022-06-21.

1.3b1 (2022-05-10)

New features:

  • A dataset's write method now accepts Numpy masked arrays and has a "masked" keyword argument. In this case, if masked is False, the masked array's filled method is called with the dataset's nodata value or else the masked array's fill value. If the masked argument is True, the dataset's write_mask method is called.

... (truncated)

Commits
  • 522c8e1 This is 1.3.0.post1
  • 0e3f1f0 DOC: Consistently document dependency versions (#2506)
  • 438399b Update list of authors
  • 525986c Note parse_path alias
  • 5d5d946 Temporarily restore rasterio.parse_path
  • 08413a6 Merge branch 'master' of github.com:rasterio/rasterio
  • 10dac47 Update change log and version, this is 1.3.0.
  • e592bd4 MNT: Fix failing conda tests on master (#2504)
  • 31adeed Fix mapping of rasterio.uint64 to 'uint64'
  • d761b0e This is 1.3b3
  • Additional commits viewable in compare view

Dependabot compatibility score

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 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)

Bumps [rasterio](https://github.com/rasterio/rasterio) from 1.1.8 to 1.3.0.post1.
- [Release notes](https://github.com/rasterio/rasterio/releases)
- [Changelog](https://github.com/rasterio/rasterio/blob/main/CHANGES.txt)
- [Commits](rasterio/rasterio@1.1.8...1.3.0.post1)

---
updated-dependencies:
- dependency-name: rasterio
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 15, 2022
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 22, 2022

Superseded by #58.

@dependabot dependabot bot closed this Aug 22, 2022
@dependabot dependabot bot deleted the dependabot/pip/rasterio-1.3.0.post1 branch August 22, 2022 19:01
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.

0 participants