You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,12 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
### Added
11
11
12
+
- Official support for Python 3.14 (include Python 3.14 in unit test matrix on GitHub Actions) ([#801](https://github.com/Open-EO/openeo-python-client/issues/801))
13
+
- Add `on_response_headers_sync` option to `openeo.connect`/`Connection` to set default `on_response_headers` handler for sync requests at connection level.
14
+
12
15
### Changed
13
16
14
17
### Removed
15
18
16
19
### Fixed
17
20
21
+
- Guard STAC metadata parsing against invalid "item_assets" usage ([#853](https://github.com/Open-EO/openeo-python-client/issues/853))
f"Property filtering with unsupported properties according to collection/STAC metadata: {unsupported_properties} (supported: {supported_properties}).",
303
+
f"Property filtering with properties not listed in collection/STAC metadata: {list(unsupported_properties)} (supported: {list(supported_properties)}).",
304
304
stacklevel=3,
305
305
)
306
306
properties= {
@@ -2456,7 +2456,7 @@ def download(
2456
2456
:param additional: (optional) additional (top-level) properties to set in the request body
2457
2457
:param job_options: (optional) dictionary of job options to pass to the backend
2458
2458
(under top-level property "job_options")
2459
-
:param on_response_headers: (optional) callback to handle/show the response headers
2459
+
:param on_response_headers: (optional) callback to handle (e.g. :py:func:`print`) the response headers.
2460
2460
2461
2461
:return: if ``outputfile`` was not specified:
2462
2462
a :py:class:`bytes` object containing the raw data.
0 commit comments