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