23941 Commits

Author SHA1 Message Date
jhendersonHDF
1b7baf0e5f
Include 400/500 HTTP status codes in ROS3 VFD error stacks (#5441)
Adds check for buffer overflow in curl write callback
2025-04-11 16:55:21 -05:00
Matt L
2b982cf2fe
Fix bad connector ID management during file open fallback (#5429) 2025-04-11 15:08:16 -05:00
Luke Robison
09bc016321
Fortran configury: Ensure F08 real_kinds are actually valid kinds (#5401)
Issue: https://github.com/HDFGroup/hdf5/issues/5090
2025-04-11 14:24:09 -05:00
Matt L
9a8bfc453c
Add FUSE report to RFC documentation (#5433)
* Use aliases for FUSE report URL

* Move Fuse RFC to RFCURL
2025-04-11 14:20:17 -05:00
Allen Byrne
97efe2ecc8
Add missing if check on developer workflow (#5437) 2025-04-11 14:18:31 -05:00
Allen Byrne
972af7fc33
Add free to strdup of filename (#5427) 2025-04-09 10:34:12 -05:00
bmribler
3580546e6f
Fixed a typo (#5425) 2025-04-09 10:24:10 -05:00
Allen Byrne
2494459101
Add Developer build mode workflow (#5396)
* Add Linux only Developer workflow
* Add Windows job
* -Og already set in GNUFlags file for Debug/Developer mode
* Skip fheap test that times out
* Add mac and clang jobs
* Control version of CMake when building with plugins
2025-04-08 11:26:00 -05:00
Dana Robinson
ab3be98601
Fix clang enum-enum-conversion warnings (#5421)
clang complains that H5FD_MEM_NTYPES, which is a member of H5FD_mem_t,
is being used with a variable of type H5F_mem_page_t. This is fine
since H5F_mem_t is a subset of H5F(D)_mem_page_t and we're restricting
ourselves to the subset in this case.
2025-04-08 11:10:54 -05:00
Dana Robinson
c4fb6b6b1e
Remove release_docs/INSTALL_Warnings (#5420) 2025-04-07 07:46:28 -05:00
jhendersonHDF
b30a50a935
Suppress unhelpful error messages from tentative file opens in h5tools_fopen() (#5415)
* Remove H5Epop calls after switching to error stack pausing mechanism
2025-04-07 07:44:56 -05:00
jhendersonHDF
407caf1259
Suppress GCC warnings about invalid float16 literal suffix before C23 (#5387)
* Revert to old form of warning flag
2025-04-02 11:54:12 -05:00
dependabot[bot]
e5db200a8a
Bump the github-actions group with 2 updates (#5412)
Updates `actions/download-artifact` from 4.1.9 to 4.2.1
Updates `github/codeql-action` from 3.28.10 to 3.28.13
2025-04-02 11:27:26 -05:00
Allen Byrne
047b6e04ef
Improve the default plugin path #5399 (#5407) 2025-03-28 10:51:41 -05:00
Allen Byrne
57f179ca57
Do not install H5fortran_types.F90 in include diretory #4985 (#5408) 2025-03-28 07:44:51 -05:00
Matt L
ff047dea0e
Fix incorrect link size for VOL connectors in h5ls/h5diff (#5406) 2025-03-28 06:42:42 -05:00
H. Joe Lee
558e8955f3
Ignore gnu.org for #5377 (#5391)
* Update .github/workflows/linkchecker.yml
2025-03-27 13:26:13 -05:00
jhendersonHDF
be63ed0cb0
Enable building of test generator programs against shared libraries (#5404)
Build test generator programs against shared libraries, if available,
by default. Otherwise, build them against static libraries. If
HDF5_BUILD_STATIC_TOOLS is set to ON, the tools test generator
programs will be built against static libraries even if shared
libraries are available.
2025-03-26 14:26:19 -05:00
Allen Byrne
53f415ddfa
Remove bypassed autotools files, references and CI commands (#5395) 2025-03-21 09:20:56 -05:00
H. Joe Lee
841807a056
Update Intel oneAPI version to 2025.0 for CI (#5378) 2025-03-19 05:29:33 -05:00
jhendersonHDF
31bad0692b
Remove Autotools from VFD daily build workflow (#5392) 2025-03-18 16:04:55 -05:00
Allen Byrne
af34892134
Update java test jars (#5385) 2025-03-18 11:09:10 -05:00
jhendersonHDF
fc3b3e7bbb
Fix segfault in H5S__get_select_hyper_blocklist() (#5353) 2025-03-18 11:06:36 -05:00
Allen Byrne
1602e1fbfe
Remove autotools files and docs (#5358) 2025-03-14 13:28:44 -05:00
Atri Bhattacharya
41a7ef8e1e
Fixes for compiler wrappers and cmake config file dirs. (#5361)
* h5cc: Fix location of settings and pkgconfig files

In h5cc and other compiler wrappers, drop hardcoded 'lib' as the dir for
libhdf5.settings and pkgconfig scripts and use cmake computed values for
HDF5_INSTALL_LIB_DIR. This fixes issues on systems where the libdir is
'lib64' for instance, as on 64-bit Linux OSes, and 'lib' in the
wrappers point to incorrect locations of the settings and pkgconfig
files.

* h5cc: Drop -show from output when calling command.

When calling `h5cc -show FOO`, the output should not repeat the '-show'
argument itself. This commit fixes the '-show' command invoked from a
cmake built h5cc to be consistent with an (previously) autotools built
one.
final_autotools_develop
2025-03-12 13:17:41 -05:00
Matt L
4b609617f6
Close attribute after shared attr dtype test (#5360) 2025-03-12 13:17:02 -05:00
jhendersonHDF
5e32f15352
Fix two assertion failures in hyperslab code (#5355) 2025-03-07 16:54:53 -06:00
Markus Mützel
b09008ea03
Define __STDC_WANT_IEC_60559_TYPES_EXT__ before including other headers (#5356)
Some standard headers might implicitly include `float.h`. If that happens
before `__STDC_WANT_IEC_60559_TYPES_EXT__` is defined, the macros that
are needed for the `_Float16` data type (like `FLT16_MAX`) might not be
defined.

That is happening with mingw-w64 headers since the following change: b40b6a021d

Define `__STDC_WANT_IEC_60559_TYPES_EXT__` before including other headers
in `H5private.h` to make that scenario less likely.
2025-03-07 12:48:46 -06:00
Allen Byrne
3448276452
Fix last linkcheck issues and linkchecker must pass (#5350)
* Ignore warnings so only errors fail
2025-03-04 09:35:40 -06:00
Allen Byrne
0b55bcd98d
Change md file links to correct locations (#5349) 2025-03-03 15:00:44 -06:00
jhendersonHDF
d366d72830
Update API tests README.md with current information (#5348) 2025-03-03 15:00:25 -06:00
Scot Breitenfeld
352501a5bd
fix for cray compiler failing test (#5347) 2025-03-03 14:11:00 -06:00
Allen Byrne
5b97d18915
Correct references to groups in RM (#5340) 2025-03-03 14:06:08 -06:00
Dana Robinson
43805ff475
Fix an oversize allocation in t_bigio on 32-bit systems (#5344)
* Fix an oversize allocation in t_bigio on 32-bit systems

A test in t_bigio.c attempts to allocate more than 4 GiB of memory,
which will overflow (and wrap) the size_t type on 32-bit systems,
creating a very small allocation instead of a very large allocation.
The test then segfaults when it accesses memory outside of  the small
buffer.

The test has been fixed by limiting the buffer to 2 GiB on 32-bit
systems.
2025-03-03 11:17:08 -06:00
dependabot[bot]
27fece61c8
Bump the github-actions group with 4 updates (#5343) 2025-03-03 07:36:10 -06:00
Scot Breitenfeld
0e3f1010f1
Update AOCC and OpenMPI versions (#5341) 2025-03-01 07:05:47 -06:00
Scot Breitenfeld
70a90fad2d
* updated nvhpc version (#5339)
* Removed skipping dtransform
2025-02-28 07:54:23 -06:00
Matt L
07030271ee
Fix objects not being closed on objcopy helper failure (#5331) 2025-02-27 10:19:57 -06:00
Allen Byrne
d81ae5586a
Add presets cookbook and use cases (#5323)
* RPM has issue with packaging RPM of a parallel library
2025-02-27 09:58:03 -06:00
Allen Byrne
9ae41641ff
Add a readme file to workflows (#5334) 2025-02-26 10:56:09 -06:00
Lori Cooper
6742c56642
Adding Autotools Drop announcement to Readme (#5335)
Also added some fun formatting for the 2.0.0 announcement since it was just hanging out there.
2025-02-26 08:17:12 -06:00
Allen Byrne
b26089af1b
Fix the HL H5TB fill-info #5332 (#5333) 2025-02-25 14:38:19 -06:00
Mark C. Miller
50d6458e1d
Fix H5S_MAX_RANK doc (#5328)
The H5S_MAX_RANK is the maximum number of dimensions in a dataset or an array datatype.
2025-02-21 09:23:14 -06:00
bmribler
d35d1ecce8
Add release information to enum constants - Part 4 (#5309)
Added \since to enum constants added in 1.14.x versions

* Changed for back-ported releases
2025-02-18 11:23:22 -06:00
Allen Byrne
409f738e9d
Translate release-specific changes docs to doxygen (#5314) 2025-02-18 11:21:27 -06:00
Allen Byrne
45e042c0bc
Fix tag typo (#5321)
* Check if snapshot is tag name and adjust tag to add v to a number tag
2025-02-18 10:42:22 -06:00
Matt L
e07da0c772
Fix bad objcopy test cleanup on failure (#5320) 2025-02-17 11:46:26 -06:00
Allen Byrne
255371c8e4
Fix the release workflow by copying before rename (#5319)
* Only copy files if not snapshot

* Move sequence to copy before rename
2025-02-17 11:45:06 -06:00
Allen Byrne
d4200dc689
Fix the rpath with option - plugins fail without (#5298)
* Only need loader_path
2025-02-14 16:07:04 -06:00
Allen Byrne
2f4f6902cd
Use only one find_package call for zlib. (#5280) 2025-02-14 11:22:23 -06:00