Skip to content

Commit e93f498

Browse files
authored
Merge pull request #2323 from opendatacube/for_1.9.13
Bump fallback version number and update whats_new.rst for 1.9.13 release
2 parents dec8f39 + 8e0fcf8 commit e93f498

File tree

3 files changed

+330
-266
lines changed

3 files changed

+330
-266
lines changed

docs/source/about/whats_new.rst

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,64 @@ What's New
88
Next Release
99
============
1010

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
64+
65+
**Full Changelog**: https://github.com/opendatacube/datacube-core/compare/1.9.12...1.9.13
66+
67+
The Open Data Cube Steering Council thanks and acknowledges the ongoing support of Geoscience Australia, CSIRO, and RISE.
68+
1169
1.9.12 (22 December 2025)
1270
=========================
1371

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ include = ['datacube*']
242242

243243
[tool.setuptools_scm]
244244
write_to = 'datacube/_version.py'
245-
fallback_version = "1.9.12"
245+
fallback_version = "1.9.13"
246246

247247
[tool.ty.src]
248248
include = ["datacube", "examples", "integration_tests", "tests"]

0 commit comments

Comments
 (0)