Improved the progress reporting/E.T.A. using a (slightly modifed)
[rsync/rsync.git] / NEWS
CommitLineData
823edc68
WD
1NEWS for rsync 2.6.1 (UNRELEASED)
2Protocol: 27 (unchanged)
3Changes since 2.6.0:
4
5 ENHANCEMENTS:
6
0a007489
WD
7 * Lower memory use and more optimal transfer of data over
8 the socket (see the INTERNAL section for details).
9
823edc68
WD
10 * The RSYNC_PROXY environment variable can now contain a
11 "USER:PASS@" prefix before the "HOST:PORT" information.
12 (Bardur Arantsson)
13
b0a93231
WD
14 * The --progress output now mentions how far along in the
15 transfer we are, including both a count of files transferred
16 and a percentage of the total file-count that we're processed.
17
530adb76
WD
18 * The configure script now accepts --with-rsyncd-conf=PATH
19 to override the default value of the /etc/rsyncd.conf file.
20
823edc68
WD
21 BUG FIXES:
22
6609a9f1
WD
23 * When -x (--one-file-system) is combined with -L (--copy-links)
24 or --copy-unsafe-links, no symlinked files are skipped, even
25 if the referant file is on a different filesystem.
26
823edc68 27 * The --link-dest code now works properly for a non-root user
5d196694 28 when the UIDs of the source and destination differ and -o was
823edc68
WD
29 specified, and when the group of the source can't be used on
30 the destination and -g was specified. (Wayne Davison)
31
a18381ac
WD
32 * Fixed a bug in the handling of -H (hard-links) that might
33 cause the expanded PATH/NAME value of the current item to
34 get overwritten (due to an expanded-name caching bug).
35 (Wayne Davison)
823edc68 36
73a4bdfd
WD
37 * We now reset the "new data has been sent" flag at the start
38 of each file we send. This makes sure that an interrupted
39 transfer with the --partial option set doesn't keep a shorter
40 temp file than the current basis file when no new data has been
41 transfered over the wire for that file. (Wayne Davison)
823edc68 42
e7bef922
WD
43 * Fixed a byte-order problem in --batch-mode on big-endian
44 machines. (Jay Fenlason)
45
0a007489
WD
46 * Fixed configure bug when running "./configure --disable-ipv6".
47 (Wayne Davison)
48
49 * Fixed "make test" bug when build dir is not the source dir.
50
66964002
WD
51 * When using --cvs-exclude, the exclude items we get from a
52 directory's .cvsignore file once again only affect that one
53 directory (and not all following directories too).
54
b0a93231
WD
55 * When transferring a file that has group 0 with -g specified
56 (typically via -a) and not enough privs to retain the group,
6609a9f1 57 rsync no longer complains about "chown" failing.
b0a93231 58
0c819b76
WD
59 * When specifying the USER@HOST: prefix for a file, the USER
60 part can now contain an '@', if needed (i.e. the last '@'
61 is used to find the HOST, not the first).
62
6609a9f1
WD
63 * Fixed some bugs in the handling of group IDs for non-root
64 users: (1) It properly handles a group that the sender didn't
65 have a name for (it would previously skip changing the group
66 on any files in that group). (2) If --numeric-ids is used,
67 rsync no longer attempts to set groups that the user doesn't
68 have the permission to set.
69
3b98b08c
WD
70 * Fixed the "refuse options" setting in the rsyncd.conf file.
71
89afe532
WD
72 * Rsync no longer discards a double-slash at the start of a filename
73 when trying to open the file. It also no longer constructs names
74 that start with a double slash (unless the user supplied both).
75
48d704af
WD
76 * Fixed compilation problem on Tru64 Unix (having to do with
77 sockaddr.sa_len and sockaddr.sin_len).
78
823edc68
WD
79 INTERNAL:
80
86c4601e 81 * Most of the I/O is now buffered, which results in a pretty
a18381ac 82 large speedup when running under MS Windows. (Craig Barratt)
823edc68
WD
83
84 * Optimizations to the name-handling/comparing code have made
0a007489 85 some significant reductions in user-CPU time for large file
823edc68
WD
86 sets. (Wayne Davison)
87
31e7451a
WD
88 * Some variable-type cleanup that makes the code more consistent.
89 (Wayne Davison)
90
279b1c1e 91 * Reduced memory requirements of hard link preservation.
0a007489 92 (J.W. Schultz)
279b1c1e 93
f8ebdf92
WD
94 * Implemented a new algorithm for hard-link handling that speeds
95 up the code significantly. (J.W. Schultz and Wayne Davison)
96
64f21c31
WD
97 * The --hard-link option now uses the first existing file in the
98 group of linked files as the basis for the transfer. This
99 prevents the sub-optimal transfer of a file's data when a new
100 hardlink is added on the sending side and it sorts alphabetically
101 earlier in the list than the files that are already present on the
102 receiving side.
103
3e491682
S
104 * Dropped support for protocol versions less than 20
105 (2.3.0 released 15 Mar 1999) and activated warnings for
106 protocols less than 25 (2.5.0 released 23 Aug 2001)
107 (Wayne Davison and J.W. Schultz, severally)
aa953c32 108
1a62c49d
WD
109 * More optimal data transmission for --hard-links (protocol 28).
110
111 * More optimal data transmission for --checksum (protocol 28).
112
64f21c31 113 * Less memory is used when --checksum is specified.
1a62c49d 114
64f21c31 115 * Less memory is used in the file list (a per-file savings).
0a007489 116
9935066b
S
117 * Changed hardlink info and file_struct + strings to use
118 allocation pools. This reduces memory use for large
119 filesets and permits freeing memory to the OS. (J.W. Schultz)
120
442743b8 121 * The 2 pipes used between the receiver and generator processes
b0a93231
WD
122 (which are forked on the same machine) were reduced to 1 pipe
123 and the protocol improved so that (1) it is now impossible to
124 have the "redo" pipe fill up and hang rsync, and (2) trailing
125 messages from the receiver don't get lost on their way through
126 the generator over to the sender (the latter mainly affected
127 hard-link messages). (Wayne Davison)
128
129 * The reading & writing of the file list in batch-mode is now
130 handled by the same code that sends & receives the list over
131 the wire. This makes it much easier to maintain.
442743b8 132
73a4bdfd
WD
133 * Optimized the -x (--one-file-system) flag's handling of any
134 mount-point directories we encounter (it no longer scans the
135 contents of the mount-point dirs, just to throw away the data).
136
6609a9f1
WD
137 * Improved the internal uid/gid code to be more portable and
138 a little more optimized.
139
823edc68 140\f
276877cf 141NEWS for rsync 2.6.0 (1 Jan 2004)
195bd906 142Protocol: 27 (changed)
276877cf 143Changes since 2.5.7:
89855e78
WD
144
145 ENHANCEMENTS:
146
e636af6b
WD
147 * "ssh" is now the default remote shell for rsync. If you want to
148 change this, configure like this: "./configure --with-rsh=rsh".
149
58665d23 150 * Added --files-from, --no-relative, --no-implied-dirs, and --from0.
89855e78 151 Note that --from0 affects the line-ending character for all the
d00daf1f 152 files read by the --*-from options. (Wayne Davison)
89855e78 153
9e83fa99 154 * Length of csum2 is now per-file starting with protocol version
58665d23 155 27. (J.W. Schultz)
195bd906 156
9e83fa99
WD
157 * Per-file dynamic block size is now sqrt(file length). The
158 per-file checksum size is determined according to an algorithm
159 provided by Donovan Baarda which reduces the probability of rsync
160 algorithm corrupting data and falling back using the whole md4
58665d23 161 checksums. (J.W. Schultz, Donovan Baarda)
195bd906 162
727fa368
WD
163 * The --stats option no longer includes the (debug) malloc summary
164 unless the verbose option was specified at least twice.
165
d00daf1f
WD
166 * Added a new error/warning code for when files vanish from the
167 sending side. Made vanished source files not interfere with the
168 file-deletion pass when --delete-after was specified.
169
9e83fa99
WD
170 * Various trailing-info sections are now preceded by a newline.
171
89855e78
WD
172 BUG FIXES:
173
f2fe4903
WD
174 * Fixed several exclude/include matching bugs when using wild-cards.
175 This has a several user-visible effects, all of which make the
176 matching more consistent and intuitive. This should hopefully not
177 cause anyone problems since it makes the matching work more like
178 what people are expecting. (Wayne Davison)
179
592f4696
WD
180 - A pattern with a "**" no longer causes a "*" to match slashes.
181 For example, with "/*/foo/**", "foo" must be 2 levels deep.
faf11086
WD
182 [If your string has BOTH "*" and "**" wildcards, changing the
183 "*" wildcards to "**" will provide the old behavior in all
184 versions.]
592f4696 185
52fa4d78
WD
186 - "**/foo" now matches at the base of the transfer (like /foo
187 does). [Use "/**/foo" to get the old behavior in all versions.]
f2fe4903 188
52fa4d78 189 - A non-anchored wildcard term floats to match beyond the base of
f2fe4903 190 the transfer. E.g. "CVS/R*" matches at the end of the path,
52fa4d78
WD
191 just like the non-wildcard term "CVS/Root" does. [Use "/CVS/R*"
192 to get the old behavior in all versions.]
f2fe4903
WD
193
194 - Including a "**" in the match term causes it to be matched
195 against the entire path, not just the name portion, even if
196 there aren't any interior slashes in the term. E.g. "foo**bar"
197 would exclude "/path/foo-bar" (just like before) as well as
52fa4d78
WD
198 "/foo-path/baz-bar" (unlike before). [Use "foo*bar" to get the
199 old behavior in all versions.]
f2fe4903 200
52e628a8
WD
201 * The exclude list specified in the daemon's config file is now
202 properly applied to the pulled items no matter how deep the
d00daf1f 203 user's file-args are in the source tree. (Wayne Davison)
52e628a8 204
da2bcdd1 205 * For protocol version >= 27, mdfour_tail() is called when the
58665d23
WD
206 block size (including checksum_seed) is a multiple of 64.
207 Previously it was not called, giving the wrong MD4 checksum.
208 (Craig Barratt)
256a9e37 209
da2bcdd1 210 * For protocol version >= 27, a 64 bit bit counter is used in
58665d23
WD
211 mdfour.c as required by the RFC. Previously only a 32 bit bit
212 counter was used, causing incorrect MD4 file checksums for
213 file sizes >= 512MB - 4. (Craig Barratt)
195bd906 214
da2bcdd1 215 * Fixed a crash bug when interacting with older rsync versions and
89855e78
WD
216 multiple files of the same name are destined for the same dir.
217 (Wayne Davison)
218
58665d23 219 * Keep tmp names from overflowing MAXPATHLEN.
89855e78 220
da2bcdd1 221 * Make --link-dest honor the absence of -p, -o, and -g.
fab1f889 222
8113a033
WD
223 * Made rsync treat a trailing slash in the destination in a more
224 consistent manner.
225
9b746433 226 * Fixed file I/O error detection. (John Van Essen)
fab1f889 227
256a9e37
WD
228 * Fixed bogus "malformed address {hostname}" message in rsyncd log
229 when checking IP address against hostnames from "hosts allow"
230 and "hosts deny" parameters in config file.
231
232 * Print heap statistics when verbose >= 2 instead of when >= 1.
233
90045413
WD
234 * Fixed a compression (-z) bug when syncing a mostly-matching file
235 that contains already-compressed data. (Yasuoka Masahiko and
236 Wayne Davison)
237
d594399c
WD
238 * Fixed a bug in the --backup code that could cause deleted files
239 to not get backed up.
240
860bdd45
WD
241 * When the backup code makes new directories, create them with mode
242 0700 instead of 0755 (since the directory permissions in the
243 backup tree are not yet copied from the main tree).
244
2c873122
WD
245 * Call setgroups() in a more portable manner.
246
aa6dc37c
WD
247 * Improved file-related error messages to better indicate exactly
248 what pathname failed. (Wayne Davison)
2c873122
WD
249
250 * Fixed some bugs in the handling of --delete and --exclude when
251 using the --relative (-R) option. (Wayne Davison)
4a7ee79d 252
d89a3a31
S
253 * Fixed bug that prevented regular files from replacing
254 special files and caused a directory in --link-dest or
255 --compare-dest to block the creation of a file with the
256 same path. A directory still cannot be replaced by a
257 regular file unless --delete specified. (J.W. Schultz)
258
6a7cc46c 259 * Detect and report when open or opendir succeed but read and
52fa4d78 260 readdir fail caused by network filesystem issues and truncated
6a7cc46c
S
261 files. (David Norwood, Michael Brown, J.W. Schultz)
262
65653a65
WD
263 * Added a fix that should give ssh time to restore the tty settings
264 if the user presses Ctrl-C at an ssh password prompt.
265
89855e78
WD
266 INTERNAL:
267
58665d23 268 * Eliminated vestigial support for old versions that we stopped
89855e78
WD
269 supporting. (J.W. Schultz)
270
58665d23 271 * Simplified some of the option-parsing code. (Wayne Davison)
89855e78 272
52e628a8
WD
273 * Some cleanup made to the exclude code, as well as some new
274 defines added to enhance readability. (Wayne Davison)
275
aa6dc37c
WD
276 * Changed the protocol-version code so that it can interact at a
277 lower protocol level than the maximum supported by both sides.
278 Added an undocumented option, --protocol=N, to force the value
279 we advertise to the other side (primarily for testing purposes).
280 (Wayne Davison)