mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-18 15:55:12 +08:00
Rewrite 4.1.3 release notes from Jira and add back in to this file
This commit is contained in:
parent
9894f6f1ce
commit
c7416245bb
126
RELEASE_NOTES
126
RELEASE_NOTES
@ -8,23 +8,23 @@ VERSION COMMENTS
|
||||
Cleaned up the definition and use of nulldup.
|
||||
[NCF-92][NCF-93][NCF-94]
|
||||
|
||||
Fixed various '#include' bugs.
|
||||
[NCF-91][NCF-96][NCF-127]
|
||||
Fixed various '#include' bugs.
|
||||
[NCF-91][NCF-96][NCF-127]
|
||||
|
||||
v2 API functions modified to properly call the external API
|
||||
instead of directly calling the netcdf-3 functions.
|
||||
[NCF-100]
|
||||
instead of directly calling the netcdf-3 functions.
|
||||
[NCF-100]
|
||||
|
||||
Fixed problem with 64-bit offset format where writing more
|
||||
than 2**31 records resulted in erroneous NC_EINVALCOORDS error.
|
||||
than 2**31 records resulted in erroneous NC_EINVALCOORDS error.
|
||||
[NCF-101]
|
||||
|
||||
Fixed problem when a url is provided that contains only a
|
||||
host name.
|
||||
host name.
|
||||
[NCF-103]
|
||||
|
||||
Restored original functionality of ncgen so that a call with
|
||||
no flags, only does the syntax check.
|
||||
no flags, only does the syntax check.
|
||||
[NCF-104]
|
||||
|
||||
Properly convert vara start/count parameters to DAP
|
||||
@ -41,20 +41,20 @@ VERSION COMMENTS
|
||||
[NCF-116]
|
||||
|
||||
Completely rebuilt the dap constraint handling.
|
||||
This primarily affects users who specify a DAP constraint
|
||||
as part of their url.
|
||||
This primarily affects users who specify a DAP constraint
|
||||
as part of their url.
|
||||
[NCF-120]
|
||||
|
||||
In ncdump, add -g option to support selection of groups
|
||||
for which data is displayed.
|
||||
for which data is displayed.
|
||||
[NCF-11]
|
||||
|
||||
ncdump -t now properly parses ISO "T" separator in
|
||||
date-time strings.
|
||||
date-time strings.
|
||||
[NCF-16]
|
||||
|
||||
Separate the Fortran and C++ libraries and release
|
||||
the C library and ncdump/ncgen/nccopy without Fortran or C++.
|
||||
the C library and ncdump/ncgen/nccopy without Fortran or C++.
|
||||
[NCF-24]
|
||||
|
||||
Documentation migrated to doxygen
|
||||
@ -64,15 +64,15 @@ VERSION COMMENTS
|
||||
[NCF-52]
|
||||
|
||||
ncdump -t functionality now available for attributes
|
||||
and bounds variables
|
||||
and bounds variables
|
||||
[NCF-70]
|
||||
|
||||
ncdump now properly displays values of attributes
|
||||
of type NC_USHORT as signed shorts
|
||||
of type NC_USHORT as signed shorts
|
||||
[NCF-82]
|
||||
|
||||
Improve use of chunk cache in nccopy utility, making it
|
||||
practical for rechunking large files.
|
||||
practical for rechunking large files.
|
||||
[NCF-85]
|
||||
|
||||
Rename some code files so that there are no duplicate filenames.
|
||||
@ -82,19 +82,103 @@ VERSION COMMENTS
|
||||
[NCF-113]
|
||||
|
||||
Dimension size in classic model netCDF-4 files now allows
|
||||
larger sizes than allowed for 64-bit offset classic files.
|
||||
larger sizes than allowed for 64-bit offset classic files.
|
||||
[NCF-117]
|
||||
|
||||
ncdump now reports correct error message when "-x" option
|
||||
specifying NcML output is used on netCDF-4 enhanced model input.
|
||||
specifying NcML output is used on netCDF-4 enhanced model input.
|
||||
[NCF-129]
|
||||
|
||||
Fix bug causing infinite loop in ncdump -c of
|
||||
netCDF-4 file with subgroup with variables using
|
||||
inherited dimensions
|
||||
netCDF-4 file with subgroup with variables using
|
||||
inherited dimensions
|
||||
[NCF-136]
|
||||
|
||||
4.1.3-rc1 2011-05-06
|
||||
4.1.3 2011-06-17
|
||||
|
||||
Replace use of --with-hdf5= and other such configure
|
||||
options that violate conventions and causes build
|
||||
problems. Set environment variables CPPFLAGS,
|
||||
LDFLAGS, and LD_LIBRARY_PATH instead, before running
|
||||
configure script.
|
||||
[NCF-20]
|
||||
|
||||
Detect from configure script when szlib is needed
|
||||
[NCF-21]
|
||||
|
||||
Fix bug that can silently zero out portions of a file
|
||||
when writing data in nofill mode beyond the end of a
|
||||
file, crossing disk-block boundaries with region to be
|
||||
written while in-memory buffer is in a specific
|
||||
state. This bug was observed disabling fill mode
|
||||
using Lustre (or other large blksize file system) and
|
||||
writing data slices in reverse order on disk.
|
||||
[NCF-22]
|
||||
|
||||
Fix bug that prevents netCDF-4/HDF5 files created with
|
||||
netCDF-4.1.2 from being read by earlier versions of
|
||||
netCDF or HDF5 versions before 1.8.7.
|
||||
[NCF-23]
|
||||
|
||||
Fix bug in configure that did not make the search for
|
||||
the xdr library depend on --enable-dap.
|
||||
[NCF-41]
|
||||
|
||||
Fix ncgen bug that did not use the value of a _Format
|
||||
attribute in the input CDL file to dtermine the kind
|
||||
of output file created, when not specified by the -k
|
||||
command-line flag.
|
||||
[NCF-42]
|
||||
|
||||
Fix ncgen bug, not properly handling unsigned longlong parsing.
|
||||
[NCF-43]
|
||||
|
||||
Fix DAP client code to suppress variables with names
|
||||
such as "x.y", which DAP protocol interprets as
|
||||
variable "y" inside container "x". Such variables
|
||||
will be invisible when accessed through DAP client.
|
||||
[NCF-47]
|
||||
|
||||
Define uint type for unsigned integer, if not
|
||||
otherwise available. Symptom was compile error
|
||||
involving uint in putget.c.
|
||||
[NCF-49]
|
||||
|
||||
Fix username+password handling in the DAP client code.
|
||||
[NCF-50]
|
||||
|
||||
Add test for handling parallel I/O problem from f77
|
||||
when user forgets to turn on one of the two MPI flags.
|
||||
[NCF-60]
|
||||
|
||||
Resolved "make check" problems when ifort compiler.
|
||||
Some "make install" problems remain when using MPI and
|
||||
shared libraries.
|
||||
[NCF-61]
|
||||
|
||||
Fix problem with f90_def_var not always handle deflate
|
||||
setting when compiler was ifort.
|
||||
[NCF-67]
|
||||
|
||||
Check that either MPIIO or MPIPOSIX flag is set when
|
||||
parallel create or open is called. Also fix examples
|
||||
that didn't set at least one of these flags.
|
||||
[NCF-68]
|
||||
|
||||
Improve documentation on handling client-side certificates
|
||||
[NCF-48]
|
||||
|
||||
Document that array arguments, except in varm
|
||||
functions, must point to contiguous blocks of memory.
|
||||
[NCF-69]
|
||||
|
||||
Get netCDF-4 tests working for DLLs generated with mingw.
|
||||
[NCF-6]
|
||||
|
||||
Make changes necessary for upgrading to HDF5 1.8.7
|
||||
[NCF-66]
|
||||
|
||||
4.1.3-rc1 2011-05-06
|
||||
Stop looking for xdr if --disable-dap is used.
|
||||
|
||||
Don't try to run (some) fortran configure tests on
|
||||
@ -106,7 +190,7 @@ VERSION COMMENTS
|
||||
Initial implementation of CDMREMOTE is complete; needs
|
||||
comprehensive testing.
|
||||
|
||||
4.1.3-beta1 2011-04-29
|
||||
4.1.3-beta1 2011-04-29
|
||||
|
||||
Fixed szlib not linking bug.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user