Modified the sentence about doc improvements.
[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
WD
70 - Fixed some glitches in the double-verbose output when using --copy-dest,
71 --link-dest, or --compare-dest.
72
515afe7c
WD
73 - Fixed the matching of the dont-compress items (e.g. *.gz) against files
74 that have a path component containing a slash.
75
d37bc73a
WD
76 - If code reading a filter/exclude file an EINTR error, rsync now clears
77 the error flag on the file handle so it can keep on reading.
78
87001ac6
WD
79 - If --relative is active, the sending side cleans up trailing "/" or "/."
80 suffixes to avoid triggering a bug in older rsync versions. Also, we now
81 reject a ".." dir if it would be sent as a relative dir.
d37bc73a 82
2a59d2cc 83 - If a non-directory is in the way of a directory and rsync is run with
5481e42c
WD
84 --dry-run and --delete, rsync no longer complains about not being able
85 to opendir() the not-yet present directory.
2a59d2cc 86
63344ad4
WD
87 - Got rid of the need for --force to be used in some circumstances with
88 --delete-after (making it consistent with --delete-before/-during).
89
71a84cba
WD
90 - Rsync now ignores the SIGXFSZ signal, just in case your OS sends this
91 when a file is too large (rsync handles the write error).
92
ac1541f4
WD
93 ENHANCEMENTS:
94
5481e42c
WD
95 - Added the --append option that makes rsync append data onto files that
96 are longer on the source than the destination (this includes new files).
870dddc5 97
bad01106
WD
98 - Added the --min-size=SIZE option to exclude small files from the
99 transfer.
100
101 - Added the --compress-level option to allow you to set how aggressive
da2d13e3 102 rsync's compression should be (this option implies --compress).
d697314b 103
5481e42c
WD
104 - Enhanced the parsing of the SIZE value for --min-size and --max-size to
105 allow easy entry of multiples of 1000 (instead of just multiples of 1024)
106 and off-by-one values too (e.g. --max-size=8mb-1).
889439c2 107
a6a27602
WD
108 - Added the --8-bit-output (-8) option, which tells rsync to avoid escaping
109 high-bit characters that it thinks are unreadable in the current locale.
45b79c89 110
f65e6a12
WD
111 - The new option --human-readable (-h) changes the output of --progress,
112 --stats, and the end-of-run summary to be easier to read. If repeated,
1e2b96bb
WD
113 the units become powers of 1024 instead of powers of 1000. (The old
114 meaning of -h, as a shorthand for --help, still works as long as you
115 just use it on its own, as in "rsync -h".)
d697314b 116
f90f7149
WD
117 - If lutimes() and/or lchmod() are around, use them to allow the
118 preservation of attributes on symlinks.
7d7a34ae 119
5481e42c 120 - The --link-dest option now affects symlinks and devices (when possible).
8a1f3153
WD
121
122 - Improved the output of hard-linked and copied files when using
123 --link-dest, --copy-dest, or --compare-dest.
124
5481e42c
WD
125 - Added two config items to the rsyncd.conf parsing: "pre-xfer exec" and
126 "post-xfer exec". These allow a command to be specified on a per-module
127 basis that will be run before and/or after a daemon-mode transfer. (See
128 the manpage for a list of the environment variables that are set with
129 information about the transfer.)
5b9cc695 130
56961bec
WD
131 - When using the --relative option, you can now insert a dot dir in
132 the source path to indicate where the replication of the source dirs
133 should start. For example, if you specify a source path of
da2d13e3 134 rsync://host/module/foo/bar/./baz/dir with -R, rsync will now only
56961bec
WD
135 replicate the "baz/dir" part of the source path (note: a trailing
136 dot dir is unaffected unless it also has a trailing slash).
137
5481e42c
WD
138 - Added some new --no-FOO options that make it easier to override unwanted
139 implied or default options. For example, "-a --no-o" (aka "--archive
140 --no-owner") can be used to turn off the preservation of file ownership
141 that is implied by -a.
a912a980 142
5481e42c
WD
143 - Added the --chmod=MODE option that allows the destination permissions to
144 be changed from the source permissions. E.g. --chmod=g+w,o-rwx
ef3bb69a 145
50fd4832
WD
146 - Added the "incoming chmod" and "outgoing chmod" daemon options that allow
147 a module to specify what permissions changes should be applied to all
148 files copied to and from the daemon.
63344ad4 149
5481e42c
WD
150 - Allow the --temp-dir option to be specified when starting a daemon, which
151 sets the default temporary directory for incoming files.
ec69bdbd 152
5481e42c
WD
153 - If --delete is combined with --dirs without --recursive, rsync will now
154 delete in any directory whose content is being synchronized.
ce0da32a 155
5481e42c
WD
156 - If --backup is combined with --delete without --backup-dir (and without
157 --delete-excluded), we add a "protect" filter-rule to ensure that files
158 with the backup suffix are not deleted.
2067ec73 159
3b153409
WD
160 - The file-count stats that are output by --progress were improved to
161 better indicate what the numbers mean. For instance, the output:
0ee32c62
WD
162 "(xfer#5, to-check=8383/9999)" indicates that this was the fifth file
163 to be transferred, and we still need to check 8383 more files out of
164 a total of 9999.
3b153409 165
5481e42c
WD
166 - The include/exclude code now allows a dir/*** directive (with 3 trailing
167 stars) to match both the dir itself as well as all the content below the
168 dir (dir/** would not match the dir).
d37bc73a 169
5481e42c
WD
170 - Added the --prune-empty-dirs (-m) option that makes the receiving rsync
171 discard empty chains of directories from the file-list. This makes it
172 easier to selectively copy files from a source hierarchy and end up with
173 just the directories needed to hold the resulting files.
a324d49b 174
458aeea4 175 - If the --itemize-changes (-i) option is repeated, rsync now includes
5481e42c
WD
176 unchanged files in the itemized output (similar to -vv, but without all
177 the other verbose messages that can get in the way). Of course, the
178 client must be version 2.6.7 for this to work, but the remote rsync only
179 needs to be 2.6.7 if you're pushing files.
458aeea4 180
1e2b96bb
WD
181 - Added the --specials option to tell rsync to copy non-device special
182 files (which rsync now attempts even as a normal user). The --devices
183 option now requests the copying of just devices (character and block).
184 The -D option still requests both (e.g. --devices and --specials), -a
185 still implies -D, and non-root users still get a silent downgrade that
186 omits device copying.
187
188 - Added the --super option to make the receiver always attempt super-user
5481e42c
WD
189 activities. This is useful for systems that allow things such as devices
190 to be created or ownership to be set without being UID 0, and is also
191 useful for someone who wants to ensure that errors will be output if the
192 receiving rsync isn't being run as root.
f5b14759 193
5481e42c
WD
194 - Added the --sockopts option for those few who want to customize the TCP
195 options used to contact a daemon rsync.
f7916cbf 196
63344ad4
WD
197 - Added a way for the --temp-dir option to be combined with a partial-dir
198 setting that lets rsync avoid non-atomic updates (for those times when
199 --temp-dir is not being used because space is tight).
200
2959fe74
WD
201 - A new support script, files-to-excludes, will transform a list of files
202 into a set of include/exclude directives that will copy those files.
203
204 - A new option, --executability (-E) can be used to preserve just the
205 execute bit on files, for those times when using the --perms option is
206 not desired.
207
49f4d850
WD
208 - The daemon now logs each module-list request it receives.
209
210 - New log-format options: %M (modtime), %U (uid), %G (gid), and %B
211 (permission bits, e.g. "rwxr-xrwt").
212
20a02697
WD
213 - The --dry-run option no longer forces the enabling of --verbose.
214
59a56871
WD
215 - Various documentation improvements, including the documenting of what
216 the various items in the --stats output mean.
e3f83953 217
0417c34e
WD
218 - Updated some diffs in the patches dir.
219
5b9cc695
WD
220 INTERNAL:
221
5cf48960
WD
222 - We now use sigaction() and sigprocmask() if possible, and fall back on
223 signal() if not. Using sigprocmask() ensures that rsync enables all the
224 signals that it needs, just in case it was started in a masked state.
225
5b9cc695
WD
226 - Some buffer sizes were expanded a bit, particularly on systems where
227 MAXPATHLEN is overly small (e.g. cygwin).
228
229 - If io_printf() tries to format more data than fits in the buffer, exit
230 with an error instead of transmitting a truncated buffer.
ce0da32a 231
d409c6ac
WD
232 - If a va_copy macro is defined, lib/snprintf.c will use it when defining
233 the VA_COPY macro.
234
b1b04fcd
WD
235 - Reduced the amount of stack memory needed for each level of directory
236 recursion by nearly MAXPATHLEN bytes.
237
5481e42c
WD
238 - The wildmatch function was extended to allow an array of strings to be
239 supplied as the string to match. This allows the exclude code to do less
240 string copying.
d37bc73a
WD
241
242 - Got rid of the safe_fname() function (and all the myriad calls) and
5481e42c
WD
243 replaced it with a new function in the log.c code that filters all the
244 output going to the terminal.
d37bc73a
WD
245
246 - Unified the f_name() and the f_name_to() functions.
247
ce0da32a
WD
248 DEVELOPER RELATED:
249
4e194bf1
WD
250 - The diffs in the patches dir now require "patch -p1 <DIFF" instead of
251 the previous -p0. Also, the version included in the release tar now
252 affect generated files (e.g. configure, rsync.1, proto.h, etc.), so
253 it is no longer necessary to run autoconf and/or yodl unless you're
254 applying a patch that was checked out from CVS.
255
ce0da32a
WD
256 - Several diffs in the patches dir now use the proper --enable-FOO
257 configure option instead of --with-FOO to turn on the inclusion of
258 the newly patched feature.
259
4e194bf1
WD
260 - There is a new script, "prepare-source" than can be used to update the
261 various generated files (proto.h, configure, etc.) even before configure
262 has created the Makefile (this is mainly useful when patching the source
263 with a patch that doesn't affect generated files).
264
265 - The testsuite now sets HOME so that it won't be affected by a file such
266 as ~/.popt.