Twiddled some whitespace and multi-line comments.
[rsync/rsync.git] / NEWS
1 NEWS for rsync version 2.5.8
2 Protocol: 27 (changed)
3 Changes since version 2.5.7:
4
5   ENHANCEMENTS:
6
7     * Added --files-from, --no-relative, --no-implied-dirs, and --from0.
8       Note that --from0 affects the line-ending character for all the
9       --*-from options. (Wayne Davison)
10
11     * Length of csum2 is now per-file starting with protocol verison
12       27. (J.W. Schultz)
13
14     * Per-file dynamic block size is now sqrt(file length).
15       The per-file checksum size is determined according
16       to an algorythm provided by Donovan Baarda which
17       reduces the probability of rsync algorithm
18       corrupting data and falling back using the whole md4
19       checksums. (J.W. Schultz, Donovan Baarda)
20
21     * The --stats option no longer includes the (debug) malloc summary
22       unless the verbose option was specified at least twice.
23
24   BUG FIXES:
25
26     * Fixed several exclude/include matching bugs when using wild-cards.
27       This has a several user-visible effects, all of which make the
28       matching more consistent and intuitive.  This should hopefully not
29       cause anyone problems since it makes the matching work more like
30       what people are expecting. (Wayne Davison)
31
32       - A pattern with a "**" no longer causes a "*" to match slashes.
33         For example, with "/*/foo/**", "foo" must be 2 levels deep.
34
35       - "**/foo" now matches at the base of the transfer (i.e. /foo).
36
37       - An non-anchored wildcard term floats to match beyond the base of
38         the transfer.  E.g. "CVS/R*" matches at the end of the path,
39         just like the non-wildcard term "CVS/Root" does.
40
41       - Including a "**" in the match term causes it to be matched
42         against the entire path, not just the name portion, even if
43         there aren't any interior slashes in the term.  E.g. "foo**bar"
44         would exclude "/path/foo-bar" (just like before) as well as
45         "/foo-path/baz-bar" (for instance).
46
47     * The exclude list specified in the daemon's config file is now
48       properly applied to the pulled items no matter how deep the
49       user's file args are in the source tree.  (Wayne Davison)
50
51     * For protocol version >= 27, mdfour_tail() is called when the
52       block size (including checksum_seed) is a multiple of 64.
53       Previously it was not called, giving the wrong MD4 checksum.
54       (Craig Barratt)
55   
56     * For protocol version >= 27, a 64 bit bit counter is used in
57       mdfour.c as required by the RFC.  Previously only a 32 bit bit
58       counter was used, causing incorrect MD4 file checksums for
59       file sizes >= 512MB - 4.  (Craig Barratt)
60
61     * Fixed a crash bug when interacting with older rsync versions and
62       multiple files of the same name are destined for the same dir.
63       (Wayne Davison)
64
65     * Keep tmp names from overflowing MAXPATHLEN.
66
67     * Make --link-dest honor the absence of -p, -o, and -g.
68
69     * Made rsync treat a trailing slash in the destination in a more
70       consistent manner.
71
72     * Fixed file I/O error detection.  (John Van Essen)
73
74     * Fixed a compression (-z) bug when syncing a mostly-matching file
75       that contains already-compressed data.  (Yasuoka Masahiko and
76       Wayne Davison)
77
78     * Fixed a bug in the --backup code that could cause deleted files
79       to not get backed up.
80
81     * Call setgroups() in a more portable manner.
82
83     * Improved file-related error messages to better indicate exactly
84       what pathname failed. (Wayne Davison)
85
86     * Fixed some bugs in the handling of --delete and --exclude when
87       using the --relative (-R) option. (Wayne Davison)
88
89     * Fixed bug that prevented regular files from replacing
90       special files and caused a directory in --link-dest or
91       --compare-dest to block the creation of a file with the
92       same path.  A directory still cannot be replaced by a
93       regular file unless --delete specified.  (J.W. Schultz)
94
95     * Detect and report when open or opendir succeed but read and
96       readdir fail caused by network filesystems issues and truncated
97       files.  (David Norwood, Michael Brown, J.W. Schultz)
98
99   INTERNAL:
100
101     * Eliminated vestigial support for old versions that we stopped
102       supporting. (J.W. Schultz)
103
104     * Simplified some of the option-parsing code. (Wayne Davison)
105
106     * Some cleanup made to the exclude code, as well as some new
107       defines added to enhance readability. (Wayne Davison)
108
109     * Changed the protocol-version code so that it can interact at a
110       lower protocol level than the maximum supported by both sides.
111       Added an undocumented option, --protocol=N, to force the value
112       we advertise to the other side (primarily for testing purposes).
113       (Wayne Davison)
114
115
116 NEWS for rsync version 2.5.7:
117 Protocol: 26 (unchanged)
118 Changes since version 2.5.6:
119
120   SECURITY:
121
122     * Fix buffer handling bugs.  (Andrew Tridgell, Martin Pool, Paul
123       Russell, Andrea Barisani)
124
125
126 NEWS for rsync version 2.5.6, aka the dwd-between-jobs release
127 Protocol: 26 (unchanged)
128 Changes since version 2.5.5:
129
130   ENHANCEMENTS:
131
132     * The --delete-after option now implies --delete.  (Wayne Davison)
133
134     * The --suffix option can now be used with --backup-dir.  (Michael
135       Zimmerman)
136
137     * Combining "::" syntax with the -rsh/-e option now uses the
138       specified remote-shell as a transport to talk to a (newly-spawned)
139       server-daemon.  This allows someone to use daemon features, such
140       as modules, over a secure protocol, such as ssh.  (JD Paul)
141
142     * The rsync:// syntax for daemon connections is now accepted in the
143       destination field.
144
145     * If the file name given to --include-from or --exclude-from is "-",
146       rsync will read from standard input.  (J.W. Schultz)
147
148     * New option --link-dest which is like --compare-dest except that
149       unchanged files are hard-linked in to the destination directory.
150       (J.W. Schultz)
151
152     * Don't report an error if an excluded file disappears during an
153       rsync run.  (Eugene Chupriyanov and Bo Kersey)
154
155     * Added .svn to --cvs-exclude list to support subversion.  (Jon
156       Middleton)
157
158     * Properly support IPv6 addresses in the rsyncd.conf "hosts allow"
159       and "hosts deny" fields.  (Hideaki Yoshifuji)
160
161     * Changed exclude file handling to permit DOS or MAC style line
162       terminations.  (J.W. Schultz)
163
164     * Ignore errors from chmod when -p/-a/--preserve-perms is not set.
165       (Dave Dykstra)
166
167   BUG FIXES:
168
169     * Fix "forward name lookup failed" errors on AIX 4.3.3.  (John
170       L. Allen, Martin Pool)
171
172     * Generate each file's rolling-checksum data as we send it, not
173       in a separate (memory-eating) pass before hand.  This prevents
174       timeout errors on really large files. (Stefan Nehlsen)
175
176     * Fix compilation on Tru64.  (Albert Chin, Zoong Pham)
177
178     * Better handling of some client-server errors.  (Martin Pool)
179
180     * Fixed a crash that would occur when sending a list of files that
181       contains a duplicate name (if it sorts to the end of the file
182       list) and using --delete.  (Wayne Davison)
183
184     * Fixed the file-name duplicate-removal code when dealing with multiple
185       dups in a row. (Wayne Davison)
186
187     * Fixed a bug that caused rsync to lose the exit status of its child
188       processes and sometimes return an exit code of 0 instead of showing
189       an error.  (David R. Staples, Dave Dykstra)
190
191     * Fixed bug in --copy-unsafe-links that caused it to be completely
192       broken.  (Dave Dykstra)
193
194     * Prevent infinite recursion in cleanup code under certain circumstances.
195       (Sviatoslav Sviridov and Marc Espie)
196
197     * Fixed a bug that prevented rsync from creating intervening directories
198       when --relative-paths/-R is set.  (Craig Barratt)
199
200     * Prevent "Connection reset by peer" messages from Cygwin. (Randy O'Meara)
201
202   INTERNAL:
203
204     * Many code cleanups and improved internal documentation.  (Martin
205       Pool, Nelson Beebe)
206
207     * Portability fixes. (Dave Dykstra and Wayne Davison)
208
209     * More test cases.  (Martin Pool)
210
211     * Some test-case fixes.  (Brian Poole, Wayne Davison)
212
213     * Updated included popt to the latest vendor drop, version 1.6.4.
214       (Jos Backus)
215
216     * Updated config.guess and config.sub to latest versions; this
217       means rsync should build on more platforms.  (Paul Green)