- Never allocate a useless sum array for a non-regular flist item.
[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
7 * The RSYNC_PROXY environment variable can now contain a
8 "USER:PASS@" prefix before the "HOST:PORT" information.
9 (Bardur Arantsson)
10
11 BUG FIXES:
12
13 * The --link-dest code now works properly for a non-root user
14 when the UIDs of the source and destination differ and -u was
15 specified, and when the group of the source can't be used on
16 the destination and -g was specified. (Wayne Davison)
17
a18381ac
WD
18 * Fixed a bug in the handling of -H (hard-links) that might
19 cause the expanded PATH/NAME value of the current item to
20 get overwritten (due to an expanded-name caching bug).
21 (Wayne Davison)
823edc68
WD
22
23 * Keep per-file track of the sending of literal data with
24 --partial so that an interrupted transfer doesn't keep a
25 shorter temp file when no new data has been transfered over
26 the wire.
27
e7bef922
WD
28 * Fixed a byte-order problem in --batch-mode on big-endian
29 machines. (Jay Fenlason)
30
823edc68
WD
31 INTERNAL:
32
86c4601e 33 * Most of the I/O is now buffered, which results in a pretty
a18381ac 34 large speedup when running under MS Windows. (Craig Barratt)
823edc68
WD
35
36 * Optimizations to the name-handling/comparing code have made
37 some significant reductions in user CPU time for large file
38 sets. (Wayne Davison)
39
31e7451a
WD
40 * Some variable-type cleanup that makes the code more consistent.
41 (Wayne Davison)
42
279b1c1e
S
43 * Reduced memory requirements of hard link preservation.
44 (J.W. Schultz)
45
aa953c32
WD
46 * Got rid of support for protocol versions 17 and 8 (which are
47 both over 6 years old).
48
823edc68 49\f
276877cf 50NEWS for rsync 2.6.0 (1 Jan 2004)
195bd906 51Protocol: 27 (changed)
276877cf 52Changes since 2.5.7:
89855e78
WD
53
54 ENHANCEMENTS:
55
e636af6b
WD
56 * "ssh" is now the default remote shell for rsync. If you want to
57 change this, configure like this: "./configure --with-rsh=rsh".
58
58665d23 59 * Added --files-from, --no-relative, --no-implied-dirs, and --from0.
89855e78 60 Note that --from0 affects the line-ending character for all the
d00daf1f 61 files read by the --*-from options. (Wayne Davison)
89855e78 62
9e83fa99 63 * Length of csum2 is now per-file starting with protocol version
58665d23 64 27. (J.W. Schultz)
195bd906 65
9e83fa99
WD
66 * Per-file dynamic block size is now sqrt(file length). The
67 per-file checksum size is determined according to an algorithm
68 provided by Donovan Baarda which reduces the probability of rsync
69 algorithm corrupting data and falling back using the whole md4
58665d23 70 checksums. (J.W. Schultz, Donovan Baarda)
195bd906 71
727fa368
WD
72 * The --stats option no longer includes the (debug) malloc summary
73 unless the verbose option was specified at least twice.
74
d00daf1f
WD
75 * Added a new error/warning code for when files vanish from the
76 sending side. Made vanished source files not interfere with the
77 file-deletion pass when --delete-after was specified.
78
9e83fa99
WD
79 * Various trailing-info sections are now preceded by a newline.
80
89855e78
WD
81 BUG FIXES:
82
f2fe4903
WD
83 * Fixed several exclude/include matching bugs when using wild-cards.
84 This has a several user-visible effects, all of which make the
85 matching more consistent and intuitive. This should hopefully not
86 cause anyone problems since it makes the matching work more like
87 what people are expecting. (Wayne Davison)
88
592f4696
WD
89 - A pattern with a "**" no longer causes a "*" to match slashes.
90 For example, with "/*/foo/**", "foo" must be 2 levels deep.
faf11086
WD
91 [If your string has BOTH "*" and "**" wildcards, changing the
92 "*" wildcards to "**" will provide the old behavior in all
93 versions.]
592f4696 94
52fa4d78
WD
95 - "**/foo" now matches at the base of the transfer (like /foo
96 does). [Use "/**/foo" to get the old behavior in all versions.]
f2fe4903 97
52fa4d78 98 - A non-anchored wildcard term floats to match beyond the base of
f2fe4903 99 the transfer. E.g. "CVS/R*" matches at the end of the path,
52fa4d78
WD
100 just like the non-wildcard term "CVS/Root" does. [Use "/CVS/R*"
101 to get the old behavior in all versions.]
f2fe4903
WD
102
103 - Including a "**" in the match term causes it to be matched
104 against the entire path, not just the name portion, even if
105 there aren't any interior slashes in the term. E.g. "foo**bar"
106 would exclude "/path/foo-bar" (just like before) as well as
52fa4d78
WD
107 "/foo-path/baz-bar" (unlike before). [Use "foo*bar" to get the
108 old behavior in all versions.]
f2fe4903 109
52e628a8
WD
110 * The exclude list specified in the daemon's config file is now
111 properly applied to the pulled items no matter how deep the
d00daf1f 112 user's file-args are in the source tree. (Wayne Davison)
52e628a8 113
da2bcdd1 114 * For protocol version >= 27, mdfour_tail() is called when the
58665d23
WD
115 block size (including checksum_seed) is a multiple of 64.
116 Previously it was not called, giving the wrong MD4 checksum.
117 (Craig Barratt)
256a9e37 118
da2bcdd1 119 * For protocol version >= 27, a 64 bit bit counter is used in
58665d23
WD
120 mdfour.c as required by the RFC. Previously only a 32 bit bit
121 counter was used, causing incorrect MD4 file checksums for
122 file sizes >= 512MB - 4. (Craig Barratt)
195bd906 123
da2bcdd1 124 * Fixed a crash bug when interacting with older rsync versions and
89855e78
WD
125 multiple files of the same name are destined for the same dir.
126 (Wayne Davison)
127
58665d23 128 * Keep tmp names from overflowing MAXPATHLEN.
89855e78 129
da2bcdd1 130 * Make --link-dest honor the absence of -p, -o, and -g.
fab1f889 131
8113a033
WD
132 * Made rsync treat a trailing slash in the destination in a more
133 consistent manner.
134
9b746433 135 * Fixed file I/O error detection. (John Van Essen)
fab1f889 136
256a9e37
WD
137 * Fixed bogus "malformed address {hostname}" message in rsyncd log
138 when checking IP address against hostnames from "hosts allow"
139 and "hosts deny" parameters in config file.
140
141 * Print heap statistics when verbose >= 2 instead of when >= 1.
142
90045413
WD
143 * Fixed a compression (-z) bug when syncing a mostly-matching file
144 that contains already-compressed data. (Yasuoka Masahiko and
145 Wayne Davison)
146
d594399c
WD
147 * Fixed a bug in the --backup code that could cause deleted files
148 to not get backed up.
149
860bdd45
WD
150 * When the backup code makes new directories, create them with mode
151 0700 instead of 0755 (since the directory permissions in the
152 backup tree are not yet copied from the main tree).
153
2c873122
WD
154 * Call setgroups() in a more portable manner.
155
aa6dc37c
WD
156 * Improved file-related error messages to better indicate exactly
157 what pathname failed. (Wayne Davison)
2c873122
WD
158
159 * Fixed some bugs in the handling of --delete and --exclude when
160 using the --relative (-R) option. (Wayne Davison)
4a7ee79d 161
d89a3a31
S
162 * Fixed bug that prevented regular files from replacing
163 special files and caused a directory in --link-dest or
164 --compare-dest to block the creation of a file with the
165 same path. A directory still cannot be replaced by a
166 regular file unless --delete specified. (J.W. Schultz)
167
6a7cc46c 168 * Detect and report when open or opendir succeed but read and
52fa4d78 169 readdir fail caused by network filesystem issues and truncated
6a7cc46c
S
170 files. (David Norwood, Michael Brown, J.W. Schultz)
171
65653a65
WD
172 * Added a fix that should give ssh time to restore the tty settings
173 if the user presses Ctrl-C at an ssh password prompt.
174
89855e78
WD
175 INTERNAL:
176
58665d23 177 * Eliminated vestigial support for old versions that we stopped
89855e78
WD
178 supporting. (J.W. Schultz)
179
58665d23 180 * Simplified some of the option-parsing code. (Wayne Davison)
89855e78 181
52e628a8
WD
182 * Some cleanup made to the exclude code, as well as some new
183 defines added to enhance readability. (Wayne Davison)
184
aa6dc37c
WD
185 * Changed the protocol-version code so that it can interact at a
186 lower protocol level than the maximum supported by both sides.
187 Added an undocumented option, --protocol=N, to force the value
188 we advertise to the other side (primarily for testing purposes).
189 (Wayne Davison)