Releases: sentinel-hub/sentinelhub-py
Releases · sentinel-hub/sentinelhub-py
Version 3.11.1
- Remove
numpy<2
restriction.
Version 3.11.0
- Support for Batch Process API Version 2.
Version 3.10.3
- Monitoring a batch job now concludes if the batch job is cancelled.
- The monitoring function now waits for the status of the batch job to change (even if all tiles have completed) before finalization in order to return the correct status.
Version 3.10.2
- Added
max_retries
parameter toSHConfig
class. It controls how many times the client will attempt to re-download before raisingOutOfRequestsException
. It is set toNone
by default, in which case it never stops trying. Contributed by @Regan-Koopmans.
Version 3.10.1
- Improved documentation for Copernicus Data Space Ecosystem.
- Restrict numpy version to <2 in anticipation of numpy 2.0 release.
Version 3.10.0
This update ensures that session-sharing works as intended.
Changelog:
- Adjust session caching to mirror changes to the core services. Older version might no longer correctly cache sessions.
- Switch default auth endpoint to the new address.
Version 3.9.5
- The
SentinelHubDownloadClient
class now has adefault_retry_time
parameter, which allows control over the waiting time when a request gets a 429 TOO_MANY_REQUESTS response without a specific retry time in the headers. The default value for this behavior has been changed from 0s to 30s to avoid edge-cases where SH services were bombarded with requests.
Version 3.9.4
- Fixed a problem with
dataclasses_json 0.6.2
that broke BYOC functionalities - Removed AWS examples from the docs since the functionality is no longer maintained.
Version 3.9.3
Changelog:
SHConfig
now correctly initializes a default profile in the file even if the first initialization call is done with a custom profile.- Save and load methods of
SHConfig
adjusted to work with the environmental variableSH_PROFILE
- CLI command
sentinelhub.config --show
works with the environmental variableSH_PROFILE
Version 3.9.2
Changelog:
- Adjusted how user credentials are passed to the OAuth service.
- Added
QUALITY_FLAGS
band toS3_OLCI
- Batch statistical API now supports IAM role style credentials.
- Various minor improvements