blob: f407a59fbaeb37e3a11f9aec18831ff04864dab6 [file] [log] [blame]
openvcdiff@gmail.com732fff22010-08-04 18:00:00 +00001Tue, 3 Aug 2010 10:44:32 -0800 Google Inc. <opensource@google.com>
2 Release version 0.8 with the following changes:
3 * Issue #12: Truncate decoded_target_ after decoding each window, rather than
4 after each call to DecodeChunk(). This helps limit memory usage when
5 processing multiple windows.
6 * Issue #22: To work around a bug in the gold linker
7 (http://sourceware.org/bugzilla/show_bug.cgi?id=10238), list all direct
8 library dependencies in Makefile.am.
9 * Issue #23: Add an option for the encoder to produce simple JSON output
10 instead of VCDIFF (RFC 3284) format.
11 * Issue #25: Enable VCDIFF_USE_BLOCK_COMPARE_WORDS for the PowerPC
12 architecture as well as for x86. The test
13 BlockContentsMatchIsAsFastAsBlockCompareWords failed on a PowerPC machine
14 running AIX 5.3.8.
15 * Issue #28: Only call string::reserve() when the required capacity is greater
16 than the string's current capacity.
17 * Get rid of ExitFatal(). It is no longer used for anything since the custom
18 test framework was replaced with gtest.
19 * Get rid of the match count feature.
20 * Rename the log macros: for example, LOG(ERROR) is now VCD_ERROR.
21 Rename COMPILE_ASSERT to VCD_COMPILE_ASSERT.
22 * Simplify RollingHash by performing its sanity checks at compile time.
23 * The googletest package is now referenced as an svn:externals property.
24 Remove the branched googletest sources from src/gtest and instead reference
25 the source files in the top-level gtest directory.
26 * Likewise, the google-gflags package is now referenced as an svn:externals
27 property. Remove the branched gflags sources from src/gflags and instead
28 reference the source files in the top-level gflags directory.
29 * Use version 1.11 of Automake.
30 * Explicitly include the m4 directory in configuration scripts.
31 * Call LT_INIT from configure.ac as suggested by libtool.
32 * Don't distribute gflags and gtest documents whose names conflict with the
33 same documents in the open-vcdiff package.
34 * Only define _XOPEN_SOURCE if not already defined.
35 * Fix warnings that appeared when compiling on RedHat 9 with gcc 3.2.2:
36 src/encodetable_test.cc:111: warning: cannot pass objects of non-POD
37 type `struct std::string' through `...'; call will abort at runtime
38 * Fix Visual Studio compiler warning about mismatch between size_t and int
39 in blockhash_test.cc.
40 * Add contributors' names to THANKS file.
41
openvcdiff@gmail.comf1dd9332009-10-09 22:40:32 +000042Fri, 09 Oct 2009 10:32:10 -0700 Google Inc. <opensource@google.com>
43
44 Release version 0.7 with the following changes:
45 * Fix a case in which VarintBE::Parse would read off the end of available
46 input if the variable-length integer began with leading zero bytes
47 with their continuation bits set (0x80 bytes.)
48 * Define std::string as string only within namespaces and class definitions
49 in case there is a string class defined at the outermost scope. If that
50 is the case, the HAS_GLOBAL_STRING label should be defined manually.
51 * Update with changes to gflags package as of 2009/07/23.
52
openvcdiffbaf44ea2009-04-09 19:20:49 +000053Thu, 09 Apr 2009 09:16:58 -0700 Google Inc. <opensource@google.com>
54
55 Release version 0.6 with the following changes:
56 * Issue #9: Add option to optimize VCDIFF decoder when VCD_TARGET will not be
57 used as source segment.
58 Add new interface SetAllowVcdTarget to control whether the VCD_TARGET flag
59 may be used. If this option is set to false and the decoder finds a
60 VCD_TARGET flag, it will issue an error and refuse to continue decoding.
61 * Issue #19: ERROR: Length of target window (100001916) exceeds limit of
62 67108864 bytes
63 Remove the limit of INT32_MAX on the value of --max_target_file_size, since
64 the new SetAllowVcdTarget feature means that the entire target file will not
65 need to be kept in memory. Separate vcdecoder_test into five test targets,
66 one of which is devoted to the new SetAllowVcdTarget feature. Get rid of
67 kMaxBufferSize and kDefaultBufferSize, which were used ambiguously. A new
68 constant kDefaultMaxTargetSize provides the default values for the
69 --max_target_file_size and --max_target_window_size options. The
70 --buffersize option, if specified, should control the buffer size used,
71 without limits on its value.
72 * Issue #21: Fail to test on MinGW 5.1.4
73 The wrapper executables produced by libtool failed on MinGW with the error
74 "File /bin/sh not found". Add the option AC_DISABLE_FAST_INSTALL to avoid
75 creating wrapper executables. The option implies an extra link step during
76 "make install", but the package is small enough that this does not take
77 long.
78 * Remove the annotated-output feature from the decoder.
79 * Automatically detect and work around a Solaris 10 bug which causes the error
80 "libstdc++.la is not a valid libtool archive".
81 http://whocares.de/2006/05/solaris-10-fixup-for-libstdcla-is-not-a-valid-libtool-archive/
82 * Update with latest changes to gflags package.
83 * Fix type-conversion warning in vcdiff_main.cc in 32-bit Visual Studio build.
84
openvcdiffd1845782009-03-20 21:56:15 +000085Wed, 18 Mar 2009 14:28:23 -0700 Google Inc. <opensource@google.com>
86
87 * Issue #14: HashedDictionary may free memory twice if implicitly copied.
88 * Add private copy constructor and assignment operator for HashedDictionary.
89 * Issue #18: Building RPM package fails on Fedora 9: Installed (but
90 unpackaged) file vcdiff.1.gz.
91 * Some OS, including Fedora 9, automatically compress man pages that are
92 installed using /usr/bin/install. This confuses the RPM packager, which
93 expects a file named "vcdiff.1" and finds one named "vcdiff.1.gz" instead.
94 Use a wild-card character to accept either of these two alternatives.
95 * Change the VCDIFF block size to 16, but have the encoder discard all matches
96 smaller than 32 bytes. This doubles the CPU and memory needed by the
97 encoder, but finds better string matches, producing a more efficient
98 encoding. Loosen the timing test limit in blockhash_test.cc for the debug
99 build only.
100 * Make the code table writer a virtual interface.
101 * Add an interface SetTargetMatching() to the simple encoder class
102 VCDEncoder.
103 * Remove all references to LOG and logging.h from the unit tests and
104 command-line client.
105 * Remove all special cases for kBlockSize < 4. kBlockSize must be a multiple
106 of the machine word size (see blockhash.cc), so it will never be smaller
107 than 4.
108 * Use version 1.10 of Automake.
109 * Incorporate recent changes to gflags package
110 (http://code.google.com/p/google-gflags/)
111 * Fix Visual Studio type-mismatch warning in vcdecoder4_test.cc.
112 * Use address cache helper functions IsSameMode(), IsHereMode(), etc. to
113 simplify test code.
114 * Add contributor's name to THANKS file.
115
openvcdiff83bbde02008-10-23 23:43:46 +0000116Thu, 23 Oct 2008 09:03:56 -0700 Google Inc. <opensource@google.com>
117
118 * Issue #6: vcdiff crashes with zero-size dictionary
119 * Add special cases for empty dictionary file in vcdiff_main.cc.
120 * Issue #7: vcdiff incorrect binary I/O on Windows
121 * Change stdin/stdout file type to binary in vcdiff_main.cc.
122 * Issue #13: Add unit test for vcdiff command-line executable
123 * Unit test vcdiff_test.bat added for Visual Studio testing of vcdiff.exe.
124 Includes regression tests for issues #6 and #7.
125 * Issue #15: open-vcdiff fails to compile on Fedora 9
126 * Apply patch sent by Daniel Kegel
127 * Add header <string.h> to src/vcdiffengine.cc, which uses memcpy.
128 * Remove const qualifier from integral return types to fix gcc 4.3.1
129 warning.
130 * Add contributors' names to THANKS file.
131
openvcdiff28db8072008-10-10 23:29:11 +0000132Fri, 10 Oct 2008 11:16:23 -0700 Google Inc. <opensource@google.com>
133
134 * Issue #15: open-vcdiff fails to compile on Fedora 9
135 * Add header <string.h> to source files that use memcmp, memset, memcpy,
136 and/or strlen.
137 * Change C++-style includes like <cstdlib> to C-style includes like
138 <stdlib.h> so that function names are guaranteed to be defined
139 in the global namespace.
140 * Issue #8: Decoder should not crash if it runs out of memory
141 * Add a new interface that places a limit on the maximum bytes allowed in
142 a single target window or a target file.
143 * Issue #13: Add unit test for vcdiff command-line executable
144 * Unit test vcdiff_test.sh added for Linux and Mac builds.
145 * Still need to add a Windows version of this test.
146
openvcdiffd4832872008-09-02 18:21:13 +0000147Tue, 02 Sep 2008 09:27:54 -0700 Google Inc. <opensource@google.com>
148
149 * Fix problems found on OpenBSD platform.
150 * Issue #1: vcdiff command-line executable crashes on startup.
151 This was a problem with the stub intended to replace pthread_once if the
152 package was not linked with the pthreads library. Simplify gflags.cc to
153 assume single-threaded execution.
154 * Issue #2: Unit test blockhash_test fails.
155 Define VCDIFF_USE_BLOCK_COMPARE_WORDS for BSD platforms to ensure that
156 the most efficient version of memcmp is used in the encoder's inner loop.
157 * Fix compilation warnings in gtest-filepath.cc: "warning: missing
158 initializer for member 'stat::...'"
159
openvcdiff311c7142008-08-26 19:29:25 +0000160Mon, 16 Jun 2008 15:15:51 -0700 Google Inc. <opensource@google.com>
161
162 * open-vcdiff: initial release:
163 The open-vcdiff package provides an encoder and decoder for the VCDIFF format
164 described in RFC 3284 (http://www.ietf.org/rfc/rfc3284.txt).