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: docs/source/about/whats_new.rst
+58Lines changed: 58 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,64 @@ What's New
8
8
Next Release
9
9
============
10
10
11
+
1.9.13 (14 January 2026)
12
+
=========================
13
+
14
+
This release adds support for custom fuse functions in driver based loads.
15
+
16
+
Custom fuse functions can now be set as importable strings (fully qualified Python names).
17
+
This is required for driver based loads and will be enforced for legacy loads in a future
18
+
release.
19
+
20
+
E.g.::
21
+
dc.load(..., fuse_func="my_module.my_fuser")
22
+
23
+
is required for driver-based loads and is now preferred for legacy loads over::
24
+
from my_module import my_fuser
25
+
dc.load(..., fuse_func=my_fuser)
26
+
27
+
Please start to update your code and notebooks accordingly.
28
+
29
+
Notable Changes
30
+
---------------
31
+
32
+
* Support for custom fuse functions in driver based loads.
33
+
* Compatibility with recent releases of GDAL and rasterio.
34
+
35
+
What's Changed
36
+
--------------
37
+
38
+
* Reduce asset raster ext warnings volume by @Ariana-B in https://github.com/opendatacube/datacube-core/pull/2306
39
+
* Add scikit-image dependency by @pjonsson in https://github.com/opendatacube/datacube-core/pull/2307
40
+
* drivers/postgres: use right select by @pjonsson in https://github.com/opendatacube/datacube-core/pull/2308
41
+
* Validate JSON schema columns by @pjonsson in https://github.com/opendatacube/datacube-core/pull/2310
42
+
* Add ty to dev dependencies by @pjonsson in https://github.com/opendatacube/datacube-core/pull/2309
43
+
* Ensure truly safe loading of netcdf drivers. by @SpacemanPaul in https://github.com/opendatacube/datacube-core/pull/2305
44
+
* Bypass rasterio/gdal compatibility issue by @SpacemanPaul in https://github.com/opendatacube/datacube-core/pull/2316
45
+
* Clean up from resolved rasterio/gdal compatibility issues. by @SpacemanPaul in https://github.com/opendatacube/datacube-core/pull/2317
46
+
* uv.lock: update to urllib3 2.6.3 by @pjonsson in https://github.com/opendatacube/datacube-core/pull/2318
47
+
* Custom fusers for driver based loads by @SpacemanPaul in https://github.com/opendatacube/datacube-core/pull/2321
48
+
* Bump fallback version number and update whats_new.rst for 1.9.13 release in https://github.com/opendatacube/datacube-core/pull/2323
49
+
50
+
Automated updates
51
+
-----------------
52
+
53
+
* build(deps): bump the actions-deps group with 2 updates by @dependabot[bot] in https://github.com/opendatacube/datacube-core/pull/2304
54
+
* [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in https://github.com/opendatacube/datacube-core/pull/2303
55
+
* build(deps): bump the actions-deps group with 3 updates by @dependabot[bot] in https://github.com/opendatacube/datacube-core/pull/2311
56
+
* build(deps): bump astral-sh/uv from 0.9.18 to 0.9.20 in /docker by @dependabot[bot] in https://github.com/opendatacube/datacube-core/pull/2312
57
+
* build(deps): bump astral-sh/uv from 0.9.20 to 0.9.21 in /docker by @dependabot[bot] in https://github.com/opendatacube/datacube-core/pull/2313
58
+
* [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in https://github.com/opendatacube/datacube-core/pull/2314
59
+
* build(deps): bump astral-sh/uv from 0.9.21 to 0.9.22 in /docker by @dependabot[bot] in https://github.com/opendatacube/datacube-core/pull/2315
60
+
* build(deps): bump osgeo/gdal from ubuntu-full-3.10.3 to ubuntu-full-3.12.1 in /docker by @dependabot[bot] in https://github.com/opendatacube/datacube-core/pull/2301
61
+
* build(deps): bump astral-sh/uv from 0.9.22 to 0.9.24 in /docker by @dependabot[bot] in https://github.com/opendatacube/datacube-core/pull/2319
62
+
* [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in https://github.com/opendatacube/datacube-core/pull/2320
63
+
* build(deps): bump astral-sh/uv from 0.9.24 to 0.9.25 in /docker in https://github.com/opendatacube/datacube-core/pull/2322
0 commit comments