Dennis Heimbigner
41654733b0
push
2023-12-04 13:14:01 -07:00
Dennis Heimbigner
25ef0fdeb1
unpush
2023-12-04 11:01:34 -07:00
Dennis Heimbigner
6a4a17fc3f
cleanup
2023-12-04 11:01:17 -07:00
Dennis Heimbigner
249fba036a
Merge branch 'awsdfalt.dmh' into awsdfalt.tmp
2023-12-04 10:58:05 -07:00
Dennis Heimbigner
2205abd973
Merge branch 'awsdfalt.tmp' of https://github.com/DennisHeimbigner/netcdf-c into awsdfalt.tmp
2023-12-04 10:57:22 -07:00
Dennis Heimbigner
beec08970d
missing git file
2023-12-03 14:29:05 -07:00
Dennis Heimbigner
27f615bebc
Properly handle missing regions in URLS
...
NOTE: it is important that this fix gets into 4.9.3
re: Issue https://github.com/Unidata/netcdf-c/issues/2798
## Modifications
* This PR includes PR https://github.com/Unidata/netcdf-c/pull/2813
* Support the following AWS environment variables in the internal S3 library
(they are already supported by aws-sdk-cpp).
- AWS_REGION
- AWS_DEFAULT_REGION
- AWS_ACCESS_KEY_ID
- AWS_CONFIG_FILE
- AWS_PROFILE
- AWS_SECRET_ACCESS_KEY
- (source https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-envvars.html ).
* Support an empty region when specifying s3.amazonaws.com as the host.
* Move some S3/AWS related functions to ds3util.c
* Add a test case to test empty region and AWS_[DEFAULT]_REGION.
2023-12-02 21:03:59 -07:00
Dennis Heimbigner
d81d95a5cc
unthrow
2023-12-02 21:03:25 -07:00
Dennis Heimbigner
ccf35e41c1
final
2023-12-02 21:01:43 -07:00
Dennis Heimbigner
d6fae8165c
test10
2023-12-02 19:50:34 -07:00
Dennis Heimbigner
47db31d7ab
Merge branch 'awsdfalt.tmp' of https://github.com/DennisHeimbigner/netcdf-c into awsdfalt.tmp
2023-12-02 15:17:58 -07:00
Dennis Heimbigner
3b8ed2623b
test1
2023-12-02 15:17:48 -07:00
Dennis Heimbigner
69ad619161
ckp
2023-12-02 12:33:08 -07:00
Dennis Heimbigner
ea7feab0d7
switch
2023-12-01 14:13:45 -07:00
Dennis Heimbigner
93bbda6acb
test5
2023-11-30 21:05:40 -07:00
Dennis Heimbigner
40269f81d7
Merge branch 'awsdfalt.tmp' of https://github.com/DennisHeimbigner/netcdf-c into awsdfalt.tmp
2023-11-30 21:05:06 -07:00
Dennis Heimbigner
a525345f00
byte
2023-11-30 21:04:56 -07:00
Dennis Heimbigner
c9e9517692
Merge branch 'fixes.tmp' into awsdfalt.tmp
2023-11-30 20:51:50 -07:00
Dennis Heimbigner
ec3a7a74c3
ckp
2023-11-30 20:50:19 -07:00
Dennis Heimbigner
1341c5f0c5
test1
2023-11-30 20:08:26 -07:00
Dennis Heimbigner
00888103ab
ckp
2023-11-27 18:43:54 -07:00
Dennis Heimbigner
c671b97980
test1
2023-11-27 16:00:21 -07:00
Ward Fisher
0c6fd78251
Merge pull request #2802 from seanm/UBSan-null
...
Fixed various UBSan warnings about working with NULL pointers
2023-11-20 16:43:36 -07:00
Ward Fisher
3a1b125f4d
Merge pull request #2788 from WardF/check-pr.wif
...
Tweaking PR to work with Visual Studio
2023-11-17 15:18:39 -07:00
Ward Fisher
9566a18100
Merge pull request #2800 from seanm/UBSan-misaligned
...
Fixed misaligned memory access flagged by UBSan
2023-11-17 15:15:01 -07:00
Ward Fisher
0d09cf8b97
Merge pull request #2765 from DennisHeimbigner/dap4ce.dmh
...
Improve fetch performance of DAP4
2023-11-16 12:22:20 -07:00
Ward Fisher
9fe1a346ba
Merge branch 'main' into dap4ce.dmh
2023-11-16 12:22:11 -07:00
Ward Fisher
d4e906fec0
Merge pull request #2803 from seanm/UBSan-utf8
...
Fixed various UBSan warnings about working with NULL pointers
2023-11-16 12:21:08 -07:00
Ward Fisher
d7b6ad0b65
Merge pull request #2789 from DennisHeimbigner/execinfo.dmh
...
Remove the execinfo capability
2023-11-15 15:54:44 -07:00
Ward Fisher
807c6ef3f9
Merge branch 'main' into execinfo.dmh
2023-11-15 15:54:35 -07:00
Ward Fisher
17cf532eb4
Merge pull request #2771 from DennisHeimbigner/tinyxmlupdate.dmh
...
Update internal tinyxml2 code to the latest version
2023-11-15 15:34:04 -07:00
Ward Fisher
33c77f3c59
Merge branch 'main' into tinyxmlupdate.dmh
2023-11-15 15:33:47 -07:00
Sean McBride
23aa46fcf5
Fixed various UBSan warnings about working with NULL pointers
...
Any pointer arithmetic with NULL pointers is technically UB, even if you don't end up dereferencing the pointer.
2023-11-15 15:11:56 -05:00
Ward Fisher
2767c4843b
Merge pull request #2795 from tbussmann/patch-1
...
disable test that depends on ncpathcvt in cmake build w/o utilities
2023-11-15 12:46:39 -07:00
Sean McBride
dc1b8b9c4b
Fixed various UBSan warnings about working with NULL pointers
...
Any pointer arithmetic with NULL pointers is technically UB, even if you don't end up dereferencing the pointer.
2023-11-15 14:28:24 -05:00
Sean McBride
374d654644
Fixed misaligned memory access flagged by UBSan
...
Use memcpy to copy correctly even for unaligned memory. This was already done for some functions here, but not all.
Also took the oppurtunity to remove a bunch of seemingly obsolete/commented code.
2023-11-14 19:14:33 -05:00
Ward Fisher
99f22954c5
Merge pull request #2787 from seanm/UBSan-shift
...
Fixed various UBSan warnings about invalid bit shifting
2023-11-14 16:55:24 -07:00
Ward Fisher
16841a990d
Merge pull request #2782 from ZedThree/fix-float-conversions
...
Fix most float conversion warnings
2023-11-14 10:42:29 -07:00
Tobias Bussmann
99d0760c0d
disable test that depend on ncpathcvt in cmake build w/o utilities
...
fixes #2794
2023-11-09 00:39:16 +01:00
Ward Fisher
dd0aedcaa5
Merge pull request #2793 from WardF/fix_nczarr_libzip_dep.wif
...
Make ncZarr-specific deps and options dependent on ncZarr being enabled.
2023-11-07 14:47:51 -07:00
Ward Fisher
f1ada42b5d
Added fenceposts so that dependencies and options specific to nczarr are skipped if nczarr is not enabled.
2023-11-07 12:18:13 -07:00
Ward Fisher
f0e0e68ff1
Merge branch 'main' into check-pr.wif
2023-11-06 16:55:04 -07:00
Ward Fisher
9593dbfac9
Merge pull request #2790 from seanm/mmap-bsd
...
Renamed mmap variable, which conflicts with mmap() function on FreeBSD
2023-11-06 14:48:06 -07:00
Sean McBride
fb62738f72
Renamed mmap variable, which conflicts with mmap() function on FreeBSD
...
This fixes compiler errors on FreeBSD 14.
2023-11-06 16:05:24 -05:00
Dennis Heimbigner
6c99d07731
Update RELEASENOTES
2023-11-04 21:34:50 -06:00
Dennis Heimbigner
adea80f376
Remove the execinfo capability
...
re: Issue https://github.com/Unidata/netcdf-c/issues/2766
This attempt to programmatically dump stack never worked,
so it is time to kill it off.
2023-11-04 21:32:33 -06:00
Dennis Heimbigner
f878acf99e
fix memory leak
2023-11-04 20:23:55 -06:00
Dennis Heimbigner
f8cb89e679
ckp
2023-11-04 16:42:36 -06:00
Dennis Heimbigner
64111c7f5e
remove conflicts
2023-11-04 16:17:09 -06:00
Dennis Heimbigner
87497d79cf
update
2023-11-04 16:08:59 -06:00