![]() |
HDF5 Last Updated on 2026-01-03
The HDF5 Field Guide
|
Navigate back: Main / Release Specific Information
| Version | HDF5 1.14.6 |
| Release Date | 02/05/25 |
| Additional Release Information | RELEASE.txt |
| Migrating from HDF5 1.12 to HDF5 1.14 | |
| Software Changes from Release to Release in HDF5 1.14 | |
| New Features in HDF5 Release 1.14 | |
| Newsletter Announcement | |
| ABI/API compatibility reports between 1.14.6 and 1.14.5 tar file or individual html files | |
| Doxygen generated Reference Manual |
Source code and binaries are available at: https://support.hdfgroup.org/releases/hdf5/v1_14/v1_14_6
Please refer to Build instructions for building with either CMake or Autotools.
gzip <distribution>.tar.gz | tar xzf - gzip -cd <distribution>.tar.gz | tar xvf - wget https://github.com/HDFGroup/hdf5/releases/download/${PACKAGEVERSION}/<distribution>.tar.gzgzip -cd <distribution>.tar.gz | tar xvf - <distribution> is hdf5-${PACKAGEVERSION}, where PACKAGEVERSION is 1.14.6 for this releaseThe new HDF5 documentation based on Doxygen is available here.
This documentation is WORK-IN-PROGRESS. Since this portion of the HDF5 documentation is now part of the source code, it gets the same treatment as code. In other words, issues, inaccuracies, corrections should be reported as issues in GitHub, and pull requests will be reviewed and accepted as any other code changes.
There are new API calls that require API Compatibility Macros in HDF5 1.14.0. There are, however, two API calls which have had their signature change.
The signature of H5Iregister_type did not change, but the H5I_free_t callback it accepts did have its signature change to add an asynchronous request parameter. There is no API compatibility macro to paper over this change. The request parameter can be ignored in the callback if you are not concerned with asynchronous operations and future IDs. A description of how the request parameter should be used will be found in the (soon to be released) HDF5 Asynchronous Programming Guide.
typedef herr_t (*H5I_free_t)(void *obj); typedef herr_t (*H5I_free_t)(void *obj, void **request);The way optional operations are handled in the virtual object layer (VOL) changed significantly in HDF5 1.14.0. To better support this, the H5VLquery_optional API call now takes an output flags parameter instead of a Boolean. Since the entire 1.12 VOL API has been deprecated, no API compatibility macro exists for this API call.
herr_t H5VLquery_optional(hid_t obj_id, H5VL_subclass_t subcls, int opt_type, hbool_t *supported); herr_t H5VLquery_optional(hid_t obj_id, H5VL_subclass_t subcls, int opt_type, uint64_t *flags);The virtual file layer has changed in HDF5 1.14.0. Existing virtual file drivers (VFDs) will have to be updated to work with this version of the library.
The virtual object layer has changed significantly in HDF5 1.14.0 and the 1.12 VOL API is now considered deprecated and unsupported. Existing virtual object layer connectors should be updated to work with this version of the library.
The new features in the HDF5 1.14 series include:
Note that the HDF5 Release 1.14.0 is the final released version of all the features that were released in 1.13.0-1.13.3.
Software Changes from Release to Release in HDF5 1.14
Navigate back: Main / Release Specific Information