Mention fix for Proxy-Authorization header.
[rsync/rsync.git] / NEWS
CommitLineData
f90f7149 1NEWS for rsync 2.6.7 (UNRELEASED)
3ae6c187 2Protocol: 29 (unchanged)
f90f7149 3Changes since 2.6.6:
9db17434 4
d671ccfc
WD
5 OUTPUT CHANGES:
6
1e2b96bb
WD
7 - The letter 'D' in the itemized output was being used for both devices
8 (character or block) as well as other special files (such as fifos and
9 named sockets). This has changed to separate non-device special files
10 under the 'S' designation (e.g. "cS+++++++ path/fifo"). See also the
11 "--specials" option, below.
d671ccfc 12
36f59b58
WD
13 - The way rsync escapes unreadable characters has changed. First, rsync
14 now has support for recognizing valid multibyte character sequences in
15 your current locale, allowing it to escape fewer characters than before
16 for a locale such as UTF-8. Second, it now uses an escape idiom of
17 "\#123", which is the literal string "\#" followed by exactly 3 octal
18 digits. Rsync no longer doubles a backslash character in a filename
19 (e.g. it used to output "foo\\bar" when copying "foo\bar") -- now it only
20 escapes a backslash that is followed by a hash-sign and 3 digits (0-9)
45b79c89 21 (e.g. it will output "foo\#134#789" when copying "foo\#789"). See also
a6a27602 22 the --8-bit-output (-8) option, mentioned below.
36f59b58
WD
23
24 Script writers: the local rsync is the one that outputs escaped names,
25 so if you need to support unescaping of filenames for older rsyncs, I'd
26 suggest that you parse the output of "rsync --version" and only use the
27 old unescaping rules for 2.6.5 and 2.6.6.
28
ac1541f4
WD
29 BUG FIXES:
30
23740239 31 - Fixed a really old bug that caused --checksum (-c) to checksum all the
da2d13e3 32 files encountered during the delete scan (ouch).
23740239 33
2fb450bd
WD
34 - Fixed a potential hang in a remote generator: when the receiver gets a
35 read-error on the socket, it now signals the generator about this so that
36 the generator does not try to send any of the terminating error messages
37 to the client (avoiding a potential hang in some setups).
38
56961bec
WD
39 - Made hard-links work with symlinks and devices again.
40
5481e42c
WD
41 - If the sender gets an early EOF reading a source file, we propagate this
42 error to the receiver so that it can discard the file and try requesting
43 it again (which is the existing behavior for other kinds of read errors).
44
fbe57fdc
WD
45 - If a device-file/special-file changes permissions, rsync now updates the
46 permissions without recreating the file.
4fdb03a6 47
9425918d
WD
48 - If the user specifies a remote-host for both the source and destination,
49 we now output a syntax error rather than trying to open the destination
50 hostspec as a filename.
51
7ea7bebf
WD
52 - When --inplace creates a new destination file, rsync now creates it with
53 permissions 0600 instead of 0000 -- this makes restarting possible when
54 the transfer gets interrupted in the middle of sending a new file.
55
ec69bdbd
WD
56 - Reject the combination of --inplace and --sparse since the sparse-output
57 algorithm doesn't work when overwriting existing data.
58
fbe57fdc
WD
59 - Fixed the directory name in the error that is output when pop_dir()
60 fails.
61
02efda9f
WD
62 - Really fixed the parsing of a "!" entry in .cvsignore files this time.
63
ce0da32a
WD
64 - If the generator gets a stat() error on a file, output it (this used to
65 require at least -vv for the error to be seen).
66
67 - If waitpid() fails or the child rsync didn't exit cleanly, we now handle
68 the exit status properly and generate a better error.
0417c34e 69
8a1f3153 70 - Fixed some glitches in the double-verbose output when using --copy-dest,
567f1566
WD
71 --link-dest, or --compare-dest. Also improved how the verbose output
72 handles hard-links (within the transfer) that had an up-to-date alternate
73 "dest" file, and copied files (via --copy-dest).
8a1f3153 74
515afe7c
WD
75 - Fixed the matching of the dont-compress items (e.g. *.gz) against files
76 that have a path component containing a slash.
77
d37bc73a
WD
78 - If code reading a filter/exclude file an EINTR error, rsync now clears
79 the error flag on the file handle so it can keep on reading.
80
87001ac6
WD
81 - If --relative is active, the sending side cleans up trailing "/" or "/."
82 suffixes to avoid triggering a bug in older rsync versions. Also, we now
83 reject a ".." dir if it would be sent as a relative dir.
d37bc73a 84
2a59d2cc 85 - If a non-directory is in the way of a directory and rsync is run with
5481e42c
WD
86 --dry-run and --delete, rsync no longer complains about not being able
87 to opendir() the not-yet present directory.
2a59d2cc 88
1e44aeb9
WD
89 - When --list-only is used and a non-existent local destination dir was
90 also specified as a destination, rsync no longer generates a warning
91 about being unable to create the missing directory.
92
06982ac4
WD
93 - Fixed some problems with --relative --no-implied-dirs when the
94 destination directory did not yet exist: we can now create a symlink or
95 device when it is the first thing in the missing dir, and --fuzzy no
96 longer complains about being unable to open the missing dir.
97
07affc3d 98 - Fixed a bug where the --copy-links option would not affect implied
16d3b31b 99 directories without --copy-unsafe-links (see --relative).
07affc3d 100
63344ad4
WD
101 - Got rid of the need for --force to be used in some circumstances with
102 --delete-after (making it consistent with --delete-before/-during).
103
71a84cba
WD
104 - Rsync now ignores the SIGXFSZ signal, just in case your OS sends this
105 when a file is too large (rsync handles the write error).
106
1c598b1d
WD
107 - Fixed a bug in the Proxy-Authorization header's base64-encoded value: it
108 was not properly padded with trailing '=' chars. This only affects a
109 user that need to use a password-authenticated proxy for an outgoing
110 daemon-rsync connection.
111
89a8180c
WD
112 - Fixed a bug in the debug output (-vvvvv) that could mention the wrong
113 checksum for the current file offset.
114
b5cf121d
WD
115 - Rsync no longer allows a single directory to be copied over a non-
116 directory destination arg.
117
ac1541f4
WD
118 ENHANCEMENTS:
119
5481e42c
WD
120 - Added the --append option that makes rsync append data onto files that
121 are longer on the source than the destination (this includes new files).
870dddc5 122
bad01106
WD
123 - Added the --min-size=SIZE option to exclude small files from the
124 transfer.
125
126 - Added the --compress-level option to allow you to set how aggressive
da2d13e3 127 rsync's compression should be (this option implies --compress).
d697314b 128
5481e42c
WD
129 - Enhanced the parsing of the SIZE value for --min-size and --max-size to
130 allow easy entry of multiples of 1000 (instead of just multiples of 1024)
131 and off-by-one values too (e.g. --max-size=8mb-1).
889439c2 132
a6a27602
WD
133 - Added the --8-bit-output (-8) option, which tells rsync to avoid escaping
134 high-bit characters that it thinks are unreadable in the current locale.
45b79c89 135
f65e6a12
WD
136 - The new option --human-readable (-h) changes the output of --progress,
137 --stats, and the end-of-run summary to be easier to read. If repeated,
1e2b96bb
WD
138 the units become powers of 1024 instead of powers of 1000. (The old
139 meaning of -h, as a shorthand for --help, still works as long as you
140 just use it on its own, as in "rsync -h".)
d697314b 141
f90f7149
WD
142 - If lutimes() and/or lchmod() are around, use them to allow the
143 preservation of attributes on symlinks.
7d7a34ae 144
5481e42c 145 - The --link-dest option now affects symlinks and devices (when possible).
8a1f3153 146
5481e42c
WD
147 - Added two config items to the rsyncd.conf parsing: "pre-xfer exec" and
148 "post-xfer exec". These allow a command to be specified on a per-module
149 basis that will be run before and/or after a daemon-mode transfer. (See
567f1566 150 the man page for a list of the environment variables that are set with
5481e42c 151 information about the transfer.)
5b9cc695 152
56961bec
WD
153 - When using the --relative option, you can now insert a dot dir in
154 the source path to indicate where the replication of the source dirs
155 should start. For example, if you specify a source path of
da2d13e3 156 rsync://host/module/foo/bar/./baz/dir with -R, rsync will now only
56961bec
WD
157 replicate the "baz/dir" part of the source path (note: a trailing
158 dot dir is unaffected unless it also has a trailing slash).
159
5481e42c
WD
160 - Added some new --no-FOO options that make it easier to override unwanted
161 implied or default options. For example, "-a --no-o" (aka "--archive
162 --no-owner") can be used to turn off the preservation of file ownership
163 that is implied by -a.
a912a980 164
5481e42c
WD
165 - Added the --chmod=MODE option that allows the destination permissions to
166 be changed from the source permissions. E.g. --chmod=g+w,o-rwx
ef3bb69a 167
50fd4832
WD
168 - Added the "incoming chmod" and "outgoing chmod" daemon options that allow
169 a module to specify what permissions changes should be applied to all
170 files copied to and from the daemon.
63344ad4 171
5481e42c
WD
172 - Allow the --temp-dir option to be specified when starting a daemon, which
173 sets the default temporary directory for incoming files.
ec69bdbd 174
5481e42c
WD
175 - If --delete is combined with --dirs without --recursive, rsync will now
176 delete in any directory whose content is being synchronized.
ce0da32a 177
5481e42c
WD
178 - If --backup is combined with --delete without --backup-dir (and without
179 --delete-excluded), we add a "protect" filter-rule to ensure that files
180 with the backup suffix are not deleted.
2067ec73 181
3b153409
WD
182 - The file-count stats that are output by --progress were improved to
183 better indicate what the numbers mean. For instance, the output:
0ee32c62
WD
184 "(xfer#5, to-check=8383/9999)" indicates that this was the fifth file
185 to be transferred, and we still need to check 8383 more files out of
186 a total of 9999.
3b153409 187
5481e42c
WD
188 - The include/exclude code now allows a dir/*** directive (with 3 trailing
189 stars) to match both the dir itself as well as all the content below the
190 dir (dir/** would not match the dir).
d37bc73a 191
5481e42c
WD
192 - Added the --prune-empty-dirs (-m) option that makes the receiving rsync
193 discard empty chains of directories from the file-list. This makes it
194 easier to selectively copy files from a source hierarchy and end up with
195 just the directories needed to hold the resulting files.
a324d49b 196
458aeea4 197 - If the --itemize-changes (-i) option is repeated, rsync now includes
5481e42c
WD
198 unchanged files in the itemized output (similar to -vv, but without all
199 the other verbose messages that can get in the way). Of course, the
200 client must be version 2.6.7 for this to work, but the remote rsync only
201 needs to be 2.6.7 if you're pushing files.
458aeea4 202
1e2b96bb
WD
203 - Added the --specials option to tell rsync to copy non-device special
204 files (which rsync now attempts even as a normal user). The --devices
205 option now requests the copying of just devices (character and block).
206 The -D option still requests both (e.g. --devices and --specials), -a
207 still implies -D, and non-root users still get a silent downgrade that
208 omits device copying.
209
210 - Added the --super option to make the receiver always attempt super-user
5481e42c
WD
211 activities. This is useful for systems that allow things such as devices
212 to be created or ownership to be set without being UID 0, and is also
213 useful for someone who wants to ensure that errors will be output if the
214 receiving rsync isn't being run as root.
f5b14759 215
5481e42c
WD
216 - Added the --sockopts option for those few who want to customize the TCP
217 options used to contact a daemon rsync.
f7916cbf 218
63344ad4
WD
219 - Added a way for the --temp-dir option to be combined with a partial-dir
220 setting that lets rsync avoid non-atomic updates (for those times when
221 --temp-dir is not being used because space is tight).
222
2959fe74
WD
223 - A new support script, files-to-excludes, will transform a list of files
224 into a set of include/exclude directives that will copy those files.
225
226 - A new option, --executability (-E) can be used to preserve just the
227 execute bit on files, for those times when using the --perms option is
228 not desired.
229
65535b54
WD
230 - The daemon now logs each connection and also each module-list request
231 that it receives.
49f4d850
WD
232
233 - New log-format options: %M (modtime), %U (uid), %G (gid), and %B
234 (permission bits, e.g. "rwxr-xrwt").
235
20a02697
WD
236 - The --dry-run option no longer forces the enabling of --verbose.
237
42003f6a
WD
238 - The --remove-sent-files option now does a better job of incrementally
239 removing the sent files on the sending side (older versions tended to
240 clump up all the removals at the end).
241
81f654e3 242 - A daemon now supersedes its minimal SIGCHLD handler with the standard
16d3b31b
WD
243 PID-remembering version after forking. This ensures that the generator
244 can get the child-exit status from the receiver.
81f654e3
WD
245
246 - Use of the --bwlimit option no longer interferes with the remote rsync
247 sending error messages about invalid/refused options.
248
1e44aeb9
WD
249 - Rsync no longer returns a usage error when used with one local source arg
250 and no destination: this now implies the --list-only option, just like
251 the comparable situation with a remote source arg.
252
07affc3d
WD
253 - Added the --copy-dirlinks option, a more limited version of --copy-links.
254
567f1566
WD
255 - Various documentation improvements, including: a better synopsis, some
256 improved examples, a better discussion of the presence and absence of
257 --perms (including how it interacts with the new --executability and
258 --chmod options), an extended discussion of --temp-dir, an improved
259 discussion of --partial-dir, a better description of rsync's pattern
07affc3d
WD
260 matching characters, an improved --no-implied-dirs section, and the
261 documenting of what the --stats option outputs.
e3f83953 262
567f1566
WD
263 - Various new and updated diffs in the patches dir, including: acls.diff,
264 xattrs.diff, atimes.diff, detect-renamed.diff, and slp.diff.
0417c34e 265
5b9cc695
WD
266 INTERNAL:
267
5cf48960
WD
268 - We now use sigaction() and sigprocmask() if possible, and fall back on
269 signal() if not. Using sigprocmask() ensures that rsync enables all the
270 signals that it needs, just in case it was started in a masked state.
271
5b9cc695
WD
272 - Some buffer sizes were expanded a bit, particularly on systems where
273 MAXPATHLEN is overly small (e.g. cygwin).
274
275 - If io_printf() tries to format more data than fits in the buffer, exit
276 with an error instead of transmitting a truncated buffer.
ce0da32a 277
d409c6ac
WD
278 - If a va_copy macro is defined, lib/snprintf.c will use it when defining
279 the VA_COPY macro.
280
b1b04fcd
WD
281 - Reduced the amount of stack memory needed for each level of directory
282 recursion by nearly MAXPATHLEN bytes.
283
5481e42c
WD
284 - The wildmatch function was extended to allow an array of strings to be
285 supplied as the string to match. This allows the exclude code to do less
286 string copying.
d37bc73a
WD
287
288 - Got rid of the safe_fname() function (and all the myriad calls) and
5481e42c
WD
289 replaced it with a new function in the log.c code that filters all the
290 output going to the terminal.
d37bc73a
WD
291
292 - Unified the f_name() and the f_name_to() functions.
293
2384f9e1
WD
294 - Improved the hash-table code the sender uses to handle checksums to make
295 it use slightly less memory and run just a little faster.
296
ce0da32a
WD
297 DEVELOPER RELATED:
298
4e194bf1
WD
299 - The diffs in the patches dir now require "patch -p1 <DIFF" instead of
300 the previous -p0. Also, the version included in the release tar now
301 affect generated files (e.g. configure, rsync.1, proto.h, etc.), so
302 it is no longer necessary to run autoconf and/or yodl unless you're
303 applying a patch that was checked out from CVS.
304
ce0da32a
WD
305 - Several diffs in the patches dir now use the proper --enable-FOO
306 configure option instead of --with-FOO to turn on the inclusion of
307 the newly patched feature.
308
4e194bf1
WD
309 - There is a new script, "prepare-source" than can be used to update the
310 various generated files (proto.h, configure, etc.) even before configure
311 has created the Makefile (this is mainly useful when patching the source
312 with a patch that doesn't affect generated files).
313
314 - The testsuite now sets HOME so that it won't be affected by a file such
315 as ~/.popt.