summaryrefslogtreecommitdiffstats
path: root/release_docs/RELEASE.txt
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r22114] Purpose:Jonathan Kim2012-03-211-0/+5
| | | | | | | | | | | | | | | Fix for HDFFV-7837 - h5diff: incorrect behavior with exclude-path option when unique object exist only in one file Description: If unique objects exists only in one file and try to exclude the unique objects with --exclude-path option, h5diff missed excluding some objects. Fixed to exclude objects correctly in such case. Test cases were added and tagged with jira#. Tested: jam (linux32-LE), koala (linux64-LE), ostrich (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), Windows (32-LE cmake), Cmake (jam)
* [svn-r22097] Snapshot version 1.9 release 111HDF Tester2012-03-201-1/+1
|
* [svn-r22084] I updated the item for Issue 7756.Raymond Lu2012-03-161-2/+3
| | | | No test is needed.
* [svn-r22079] Added H5LTpath_valid(_f) description.Scot Breitenfeld2012-03-161-0/+4
|
* [svn-r22076] #Issue 7922 - H5Pset_data_transform had seg fault with some ↵Raymond Lu2012-03-151-1/+3
| | | | | | | | | operations like x*-100. The parser mistaked "-" as substraction. I fixed it and also fixed another problem with some special cases like 100-x and 2/x. Tested on jam, koala, and ostrich.
* [svn-r22072] Purpose: Fix rare corruption bug (HDFFV-7879)Neil Fortner2012-03-151-0/+2
| | | | | | | | | | | | | | Description: When using the new object header format, it was possible for corruption to occur if the first object header chunk changed size such that the lenght of the "chunk 0 size" field changed. This only occurred if there were messages that had not been decoded. The original algorithm that changed the object header chunk size marked all messages as dirty, causing those that had not been decoded to have both the raw and native form invalidated. Changed the algorithm to avoid marking messages dirty and added assertions to catch the case where messages are dirtied without being decoded (or recently created) first. Tested: jam, koala, ostrich (h5committest), durandal
* [svn-r22052] - h5dump: Added capability for "-a" option to show ↵Peter Cao2012-03-121-0/+5
| | | | | | | | attributes containing "/" by using an escape character. For example, for a dataset "/dset" containing attribute "speed(m/h)", use "h5dump -a "/dset/speed(\/h)" to show the content of the attribute. See details at HDFFV-7523
* [svn-r22047] Add h5dump issues fixedAllen Byrne2012-03-121-2/+10
|
* [svn-r22040] Snapshot version 1.9 release 110HDF Tester2012-03-111-1/+1
|
* [svn-r22038] Purpose:Jonathan Kim2012-03-091-5/+10
| | | | | | | | | | | | | | Fix for HDFFV-7835 h5diff: incorrect result for comparing the two same type symlinks as dangling links. Description: When two symbolic dangling links are compared with --follow-symlinks option, the result should be same. It works for comparing two files, but didn't work for comparing two objects. Test cases were added and tagged with jira#. Tested: jam (linux32-LE), koala (linux64-LE), ostrich (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), Windows (32-LE cmake), Cmake (jam)
* [svn-r22022] Snapshot version 1.9 release 109HDF Tester2012-03-041-1/+1
|
* [svn-r22012] Purpose:Jonathan Kim2012-03-011-0/+6
| | | | | | | | | | | | | | | | Task for HDFFV-7862 - Select data by chunk direction to improve performance in h5repack Description: h5repack sometimes became very slow when handling big chunked datasets in certain cases. (when chunk boundary doesn't match with a hyperslab boundary.) The main issue was from figuring out a hypeslab without considering chunk boundary to read from and write to such datasets. The update was made to figure out a better hyperslab unit with considering chunk boundary to improve performance for such cases prior to the update. Tested: jam (linux32-LE), koala (linux64-LE), ostrich (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), Windows
* [svn-r21999] Updated for the changes made to IBM configure.Albert Cheng2012-02-281-0/+6
| | | | Also update the IBM tested platform information.
* [svn-r21995] Updated changes to h5dump fixAllen Byrne2012-02-271-1/+2
|
* [svn-r21954] HDFFV-7560: refactoring note.Allen Byrne2012-02-171-0/+4
|
* [svn-r21931] HDFFV-7689 - could not not use a "[" character in a dataset name.Allen Byrne2012-02-131-0/+6
| | | | | | A second problem also discovered was an if statement that should have comapered lengths of a string actually was comapring addreeses. Once thatt was fixed, The "[" character could be used but broke other functionality. Consultation with tools team resulted in the creation of a "--no-subset" option to disable interpretation of "[" character as a subsetting compact-form. This also eliminated and cleaned up the code containing the plomatic if statement. Tested: local linux and added test, CMake updated autotools test to be added next.
* [svn-r21913] Issue 7829 - data conversion from "long double" to integers ↵Raymond Lu2012-02-071-0/+12
| | | | | | | | failed on Ubuntu with optimization. I documented it as a known solution and provided users a way to lower down the optimization. No test.
* [svn-r21910] Snapshot version 1.9 release 108HDF Tester2012-02-051-1/+1
|
* [svn-r21898] Snapshot version 1.9 release 107HDF Tester2012-01-291-1/+1
|
* [svn-r21891] Issue 7756 - Creating a dataset in a read-only file caused seg ↵Raymond Lu2012-01-251-0/+3
| | | | | | fault when the file is closed. I fixed the problem by putting a condition check early in H5O_create of H5O.c. The old code checked it too late, not until a file space is created. I added a test case in tfile.c to check the creation of group, dataset, attribute, and datatype. Tested on koala, jam, and linew.
* [svn-r21890] Purpose:Jonathan Kim2012-01-241-0/+3
| | | | | | | | | | | | | | | | | Fix for HDFFV-7836 h5diff: displays error stack message for comparing the two dangling symlink with follow-symlinks option Description: While ago, to improve performance, skipping same object checking (h5tools_is_obj_same()) was added. However the checking function doesn't understand about the dangling link and caused the issue. Since handling dangling link code section already implemented, move the checking function after handling dangling-links to address the problem. Test was added and tagged with jira#. Tested: jam (linux32-LE), koala (linux64-LE), ostrich (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), Windows (32-LE cmake), Cmake (jam)
* [svn-r21884] Snapshot version 1.9 release 106HDF Tester2012-01-221-1/+1
|
* [svn-r21869] Purpose:Jonathan Kim2012-01-091-1/+3
| | | | | | | | | | | | | | Fix for HDFFV-7840 h5repack: memory leak over one of the h5diff test file Description: Turned out that there were two causes of memory leaks. 1. for handling variable length string in attribute. 2. for handling compound type with non-reference members. The first issue is fixed in copy_attr() which is updated to use h5tools_detect_vlen to take care of vlen string as well as vlen data. The second is fixed in copy_refs_attr() of compound handling code. Tested: jam (linux32-LE), koala (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), Windows (32-LE), Cmake (jam)
* [svn-r21867] Snapshot version 1.9 release 105HDF Tester2012-01-081-1/+1
|
* [svn-r21865] Purpose:Jonathan Kim2012-01-051-0/+2
| | | | | | | | | | | | | Fix for HDFFV-7838 h5ls: segfault for handling region reference in attribute with -v option Description: Segfault occurred when h5ls access region reference data in an attribute. This didn't occurred when -v option was used. The cause was "h5tool_format_t info;" struct variable members were accessed without proper values were assigned (was NULL), so printf failed later in the code. Tested: jam (linux32-LE), koala (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), cmake-Windows (32-LE)
* [svn-r21857] Snapshot version 1.9 release 104HDF Tester2012-01-011-1/+1
|
* [svn-r21850] Snapshot version 1.9 release 103HDF Tester2011-12-251-1/+1
|
* [svn-r21831] Snapshot version 1.9 release 102HDF Tester2011-12-181-1/+1
|
* [svn-r21824] Snapshot version 1.9 release 101HDF Tester2011-12-111-1/+1
|
* [svn-r21793] Add RELEASE.txt note for r21789Neil Fortner2011-12-011-0/+2
|
* [svn-r21775] Snapshot version 1.9 release 100HDF Tester2011-11-271-1/+1
|
* [svn-r21770] Snapshot version 1.9 release 99HDF Tester2011-11-201-1/+1
|
* [svn-r21748] Snapshot version 1.9 release 98HDF Tester2011-11-131-1/+1
|
* [svn-r21734] Issue 7582 - The library allowed the conversion of strings ↵Raymond Lu2011-11-081-0/+3
| | | | | | between ASCII and UTF8. I corrected it by adding a condition check in H5T_conv_s_s and H5T_conv_vlen to report an error under this situation. Tested on jam, koala, linew.
* [svn-r21721] Snapshot version 1.9 release 97HDF Tester2011-11-061-1/+1
|
* [svn-r21692] Snapshot version 1.9 release 96HDF Tester2011-10-301-1/+1
|
* [svn-r21674] Issue 7618 - the library had seg fault when it tried to shrink ↵Raymond Lu2011-10-261-0/+3
| | | | | | | | the size of compound data type through H5Tset_size immedia tely after the type was created. I fixed it in this commit. Tested on jam, linew, and koala.
* [svn-r21673] I updated it for Issue 7701.Raymond Lu2011-10-251-0/+3
| | | | No test needed.
* [svn-r21658] Purpose:Jonathan Kim2011-10-241-14/+17
| | | | | | | | | | | HDFFV-7770 - h5diff segmentation fault on JPSS files Description: Fixed segfault over non-comparable attribute with different dimention or rank, along with '-c' option to display details. Tested: jam (linux32-LE), koala (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), Windows, Cmake
* [svn-r21630] Re-add note to RELEASE_DOCS.txt that was mistakenly removed in ↵Neil Fortner2011-10-201-0/+3
| | | | r21629.
* [svn-r21629] Purpose: Update fix committed in r21556Neil Fortner2011-10-201-3/+0
| | | | | | | | Description: An old patch was mistakenly committed in r21556. Replaced this fix with the latest. Tested: jam, koala, heiwa (h5committest)
* [svn-r21587] Snapshot version 1.9 release 95HDF Tester2011-10-161-1/+1
|
* [svn-r21577] Maintenance: Added F2003 infoElena Pourmal2011-10-141-11/+48
|
* [svn-r21556] Purpose: Fix bug in H5OcopyNeil Fortner2011-10-131-0/+3
| | | | | | | | | | | | | Description: H5Ocopy could get confused when copying a named datatype containing an attribute which used that named datatype as its datatype. This happened because H5Ocopy would recurse into the attribute's datatype before the object the attribute was in was fully copied (i.e. before the "post-copy" pass). Modified H5Ocopy to avoid recursing before the post-copy step in this case. Required many changes, including to how non-committed shared messages are copied. Tested: jam, koala, heiwa (h5committest); durandal
* [svn-r21553] Maintenance: Added an entry for the Fortran DS wrappers.Elena Pourmal2011-10-131-1/+11
|
* [svn-r21552] Maintenance: Addressed HDFFV-915 - investigate if H5open and ↵Elena Pourmal2011-10-131-1/+6
| | | | | | | | | | | | | H5close are needed in the corresponding Fortran wrappers. Solutions: The calls were not needed and were removed from the C stubs h5open_c and h5close_c for the correspnding Fortran subroutines h5open_f and h5close_f. Platforms tested: jam with gcc and gfortran, PGI and Intel koala with PGI and Intel linew with the standard Sun compilers
* [svn-r21508] Revoked svn check-ins 20913 and 20921 (fix for HDFFV-7579) ↵Dana Robinson2011-10-101-4/+0
| | | | pending a careful evaluation of enum conversion behavior.
* [svn-r21499] Snapshot version 1.9 release 94HDF Tester2011-10-091-1/+1
|
* [svn-r21477] Removed the known problem of insufficient memory error in AIX. ↵Albert Cheng2011-10-051-7/+0
| | | | | | It was patched in the config/ibm-aix file.
* [svn-r21469] updated with the change of Windows platform switched back to ↵Albert Cheng2011-10-041-0/+4
| | | | | | use SEC2 as the default VFD.