Optimized the -x option by removing the skip_filesystem() call and using the
[rsync/rsync.git] / NEWS
... / ...
CommitLineData
1NEWS for rsync 2.6.1 (UNRELEASED)
2Protocol: 27 (unchanged)
3Changes since 2.6.0:
4
5 ENHANCEMENTS:
6
7 * Lower memory use and more optimal transfer of data over
8 the socket (see the INTERNAL section for details).
9
10 * The RSYNC_PROXY environment variable can now contain a
11 "USER:PASS@" prefix before the "HOST:PORT" information.
12 (Bardur Arantsson)
13
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
18 BUG FIXES:
19
20 * The --link-dest code now works properly for a non-root user
21 when the UIDs of the source and destination differ and -o was
22 specified, and when the group of the source can't be used on
23 the destination and -g was specified. (Wayne Davison)
24
25 * Fixed a bug in the handling of -H (hard-links) that might
26 cause the expanded PATH/NAME value of the current item to
27 get overwritten (due to an expanded-name caching bug).
28 (Wayne Davison)
29
30 * Keep per-file track of the sending of literal data with
31 --partial so that an interrupted transfer doesn't keep a
32 shorter temp file when no new data has been transfered over
33 the wire. (Wayne Davison)
34
35 * Fixed a byte-order problem in --batch-mode on big-endian
36 machines. (Jay Fenlason)
37
38 * Fixed configure bug when running "./configure --disable-ipv6".
39 (Wayne Davison)
40
41 * Fixed "make test" bug when build dir is not the source dir.
42
43 * When using --cvs-exclude, the exclude items we get from a
44 directory's .cvsignore file once again only affect that one
45 directory (and not all following directories too).
46
47 * When transferring a file that has group 0 with -g specified
48 (typically via -a) and not enough privs to retain the group,
49 rsync no longer complains about chown failing.
50
51 * When specifying the USER@HOST: prefix for a file, the USER
52 part can now contain an '@', if needed (i.e. the last '@'
53 is used to find the HOST, not the first).
54
55 INTERNAL:
56
57 * Most of the I/O is now buffered, which results in a pretty
58 large speedup when running under MS Windows. (Craig Barratt)
59
60 * Optimizations to the name-handling/comparing code have made
61 some significant reductions in user-CPU time for large file
62 sets. (Wayne Davison)
63
64 * Some variable-type cleanup that makes the code more consistent.
65 (Wayne Davison)
66
67 * Reduced memory requirements of hard link preservation.
68 (J.W. Schultz)
69
70 * Implemented a new algorithm for hard-link handling that speeds
71 up the code significantly. (J.W. Schultz and Wayne Davison)
72
73 * The --hard-link option now uses the first existing file in the
74 group of linked files as the basis for the transfer. This
75 prevents the sub-optimal transfer of a file's data when a new
76 hardlink is added on the sending side and it sorts alphabetically
77 earlier in the list than the files that are already present on the
78 receiving side.
79
80 * Got rid of support for protocol versions 17 and 18 (which are
81 both over 6 years old). (Wayne Davison)
82
83 * More optimal data transmission for --hard-links (protocol 28).
84
85 * More optimal data transmission for --checksum (protocol 28).
86
87 * Less memory is used when --checksum is specified.
88
89 * Less memory is used in the file list (a per-file savings).
90
91 * The 2 pipes used between the receiver and generator processes
92 (which are forked on the same machine) were reduced to 1 pipe
93 and the protocol improved so that (1) it is now impossible to
94 have the "redo" pipe fill up and hang rsync, and (2) trailing
95 messages from the receiver don't get lost on their way through
96 the generator over to the sender (the latter mainly affected
97 hard-link messages). (Wayne Davison)
98
99 * The reading & writing of the file list in batch-mode is now
100 handled by the same code that sends & receives the list over
101 the wire. This makes it much easier to maintain.
102
103\f
104NEWS for rsync 2.6.0 (1 Jan 2004)
105Protocol: 27 (changed)
106Changes since 2.5.7:
107
108 ENHANCEMENTS:
109
110 * "ssh" is now the default remote shell for rsync. If you want to
111 change this, configure like this: "./configure --with-rsh=rsh".
112
113 * Added --files-from, --no-relative, --no-implied-dirs, and --from0.
114 Note that --from0 affects the line-ending character for all the
115 files read by the --*-from options. (Wayne Davison)
116
117 * Length of csum2 is now per-file starting with protocol version
118 27. (J.W. Schultz)
119
120 * Per-file dynamic block size is now sqrt(file length). The
121 per-file checksum size is determined according to an algorithm
122 provided by Donovan Baarda which reduces the probability of rsync
123 algorithm corrupting data and falling back using the whole md4
124 checksums. (J.W. Schultz, Donovan Baarda)
125
126 * The --stats option no longer includes the (debug) malloc summary
127 unless the verbose option was specified at least twice.
128
129 * Added a new error/warning code for when files vanish from the
130 sending side. Made vanished source files not interfere with the
131 file-deletion pass when --delete-after was specified.
132
133 * Various trailing-info sections are now preceded by a newline.
134
135 BUG FIXES:
136
137 * Fixed several exclude/include matching bugs when using wild-cards.
138 This has a several user-visible effects, all of which make the
139 matching more consistent and intuitive. This should hopefully not
140 cause anyone problems since it makes the matching work more like
141 what people are expecting. (Wayne Davison)
142
143 - A pattern with a "**" no longer causes a "*" to match slashes.
144 For example, with "/*/foo/**", "foo" must be 2 levels deep.
145 [If your string has BOTH "*" and "**" wildcards, changing the
146 "*" wildcards to "**" will provide the old behavior in all
147 versions.]
148
149 - "**/foo" now matches at the base of the transfer (like /foo
150 does). [Use "/**/foo" to get the old behavior in all versions.]
151
152 - A non-anchored wildcard term floats to match beyond the base of
153 the transfer. E.g. "CVS/R*" matches at the end of the path,
154 just like the non-wildcard term "CVS/Root" does. [Use "/CVS/R*"
155 to get the old behavior in all versions.]
156
157 - Including a "**" in the match term causes it to be matched
158 against the entire path, not just the name portion, even if
159 there aren't any interior slashes in the term. E.g. "foo**bar"
160 would exclude "/path/foo-bar" (just like before) as well as
161 "/foo-path/baz-bar" (unlike before). [Use "foo*bar" to get the
162 old behavior in all versions.]
163
164 * The exclude list specified in the daemon's config file is now
165 properly applied to the pulled items no matter how deep the
166 user's file-args are in the source tree. (Wayne Davison)
167
168 * For protocol version >= 27, mdfour_tail() is called when the
169 block size (including checksum_seed) is a multiple of 64.
170 Previously it was not called, giving the wrong MD4 checksum.
171 (Craig Barratt)
172
173 * For protocol version >= 27, a 64 bit bit counter is used in
174 mdfour.c as required by the RFC. Previously only a 32 bit bit
175 counter was used, causing incorrect MD4 file checksums for
176 file sizes >= 512MB - 4. (Craig Barratt)
177
178 * Fixed a crash bug when interacting with older rsync versions and
179 multiple files of the same name are destined for the same dir.
180 (Wayne Davison)
181
182 * Keep tmp names from overflowing MAXPATHLEN.
183
184 * Make --link-dest honor the absence of -p, -o, and -g.
185
186 * Made rsync treat a trailing slash in the destination in a more
187 consistent manner.
188
189 * Fixed file I/O error detection. (John Van Essen)
190
191 * Fixed bogus "malformed address {hostname}" message in rsyncd log
192 when checking IP address against hostnames from "hosts allow"
193 and "hosts deny" parameters in config file.
194
195 * Print heap statistics when verbose >= 2 instead of when >= 1.
196
197 * Fixed a compression (-z) bug when syncing a mostly-matching file
198 that contains already-compressed data. (Yasuoka Masahiko and
199 Wayne Davison)
200
201 * Fixed a bug in the --backup code that could cause deleted files
202 to not get backed up.
203
204 * When the backup code makes new directories, create them with mode
205 0700 instead of 0755 (since the directory permissions in the
206 backup tree are not yet copied from the main tree).
207
208 * Call setgroups() in a more portable manner.
209
210 * Improved file-related error messages to better indicate exactly
211 what pathname failed. (Wayne Davison)
212
213 * Fixed some bugs in the handling of --delete and --exclude when
214 using the --relative (-R) option. (Wayne Davison)
215
216 * Fixed bug that prevented regular files from replacing
217 special files and caused a directory in --link-dest or
218 --compare-dest to block the creation of a file with the
219 same path. A directory still cannot be replaced by a
220 regular file unless --delete specified. (J.W. Schultz)
221
222 * Detect and report when open or opendir succeed but read and
223 readdir fail caused by network filesystem issues and truncated
224 files. (David Norwood, Michael Brown, J.W. Schultz)
225
226 * Added a fix that should give ssh time to restore the tty settings
227 if the user presses Ctrl-C at an ssh password prompt.
228
229 INTERNAL:
230
231 * Eliminated vestigial support for old versions that we stopped
232 supporting. (J.W. Schultz)
233
234 * Simplified some of the option-parsing code. (Wayne Davison)
235
236 * Some cleanup made to the exclude code, as well as some new
237 defines added to enhance readability. (Wayne Davison)
238
239 * Changed the protocol-version code so that it can interact at a
240 lower protocol level than the maximum supported by both sides.
241 Added an undocumented option, --protocol=N, to force the value
242 we advertise to the other side (primarily for testing purposes).
243 (Wayne Davison)