Tweaked the mention of --human-readable.
[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
7 - The itemized output now uses 'S' for a special file instead of
8 clumping them together with the 'D' for devices. The number of
9 characters is also different (to remove an unused field).
10
36f59b58
WD
11 - The way rsync escapes unreadable characters has changed. First, rsync
12 now has support for recognizing valid multibyte character sequences in
13 your current locale, allowing it to escape fewer characters than before
14 for a locale such as UTF-8. Second, it now uses an escape idiom of
15 "\#123", which is the literal string "\#" followed by exactly 3 octal
16 digits. Rsync no longer doubles a backslash character in a filename
17 (e.g. it used to output "foo\\bar" when copying "foo\bar") -- now it only
18 escapes a backslash that is followed by a hash-sign and 3 digits (0-9)
45b79c89 19 (e.g. it will output "foo\#134#789" when copying "foo\#789"). See also
a6a27602 20 the --8-bit-output (-8) option, mentioned below.
36f59b58
WD
21
22 Script writers: the local rsync is the one that outputs escaped names,
23 so if you need to support unescaping of filenames for older rsyncs, I'd
24 suggest that you parse the output of "rsync --version" and only use the
25 old unescaping rules for 2.6.5 and 2.6.6.
26
ac1541f4
WD
27 BUG FIXES:
28
23740239 29 - Fixed a really old bug that caused --checksum (-c) to checksum all the
da2d13e3 30 files encountered during the delete scan (ouch).
23740239 31
2fb450bd
WD
32 - Fixed a potential hang in a remote generator: when the receiver gets a
33 read-error on the socket, it now signals the generator about this so that
34 the generator does not try to send any of the terminating error messages
35 to the client (avoiding a potential hang in some setups).
36
56961bec
WD
37 - Made hard-links work with symlinks and devices again.
38
5481e42c
WD
39 - If the sender gets an early EOF reading a source file, we propagate this
40 error to the receiver so that it can discard the file and try requesting
41 it again (which is the existing behavior for other kinds of read errors).
42
fbe57fdc
WD
43 - If a device-file/special-file changes permissions, rsync now updates the
44 permissions without recreating the file.
4fdb03a6 45
9425918d
WD
46 - If the user specifies a remote-host for both the source and destination,
47 we now output a syntax error rather than trying to open the destination
48 hostspec as a filename.
49
7ea7bebf
WD
50 - When --inplace creates a new destination file, rsync now creates it with
51 permissions 0600 instead of 0000 -- this makes restarting possible when
52 the transfer gets interrupted in the middle of sending a new file.
53
ec69bdbd
WD
54 - Reject the combination of --inplace and --sparse since the sparse-output
55 algorithm doesn't work when overwriting existing data.
56
fbe57fdc
WD
57 - Fixed the directory name in the error that is output when pop_dir()
58 fails.
59
02efda9f
WD
60 - Really fixed the parsing of a "!" entry in .cvsignore files this time.
61
ce0da32a
WD
62 - If the generator gets a stat() error on a file, output it (this used to
63 require at least -vv for the error to be seen).
64
65 - If waitpid() fails or the child rsync didn't exit cleanly, we now handle
66 the exit status properly and generate a better error.
0417c34e 67
8a1f3153
WD
68 - Fixed some glitches in the double-verbose output when using --copy-dest,
69 --link-dest, or --compare-dest.
70
515afe7c
WD
71 - Fixed the matching of the dont-compress items (e.g. *.gz) against files
72 that have a path component containing a slash.
73
d37bc73a
WD
74 - If code reading a filter/exclude file an EINTR error, rsync now clears
75 the error flag on the file handle so it can keep on reading.
76
87001ac6
WD
77 - If --relative is active, the sending side cleans up trailing "/" or "/."
78 suffixes to avoid triggering a bug in older rsync versions. Also, we now
79 reject a ".." dir if it would be sent as a relative dir.
d37bc73a 80
2a59d2cc 81 - If a non-directory is in the way of a directory and rsync is run with
5481e42c
WD
82 --dry-run and --delete, rsync no longer complains about not being able
83 to opendir() the not-yet present directory.
2a59d2cc 84
63344ad4
WD
85 - Got rid of the need for --force to be used in some circumstances with
86 --delete-after (making it consistent with --delete-before/-during).
87
ac1541f4
WD
88 ENHANCEMENTS:
89
87781749
WD
90 - Added the --specials option to tell rsync to copy special files (and does
91 not require root). The --devices option now affects just character and
92 block devices (which now matches the documentation). The -D option still
f7916cbf 93 requests both --devices and --specials, and -a still implies -D.
87781749 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,
113 the units become powers of 1024 instead of powers of 1000.
d697314b 114
f90f7149
WD
115 - If lutimes() and/or lchmod() are around, use them to allow the
116 preservation of attributes on symlinks.
7d7a34ae 117
5481e42c 118 - The --link-dest option now affects symlinks and devices (when possible).
8a1f3153
WD
119
120 - Improved the output of hard-linked and copied files when using
121 --link-dest, --copy-dest, or --compare-dest.
122
5481e42c
WD
123 - Added two config items to the rsyncd.conf parsing: "pre-xfer exec" and
124 "post-xfer exec". These allow a command to be specified on a per-module
125 basis that will be run before and/or after a daemon-mode transfer. (See
126 the manpage for a list of the environment variables that are set with
127 information about the transfer.)
5b9cc695 128
56961bec
WD
129 - When using the --relative option, you can now insert a dot dir in
130 the source path to indicate where the replication of the source dirs
131 should start. For example, if you specify a source path of
da2d13e3 132 rsync://host/module/foo/bar/./baz/dir with -R, rsync will now only
56961bec
WD
133 replicate the "baz/dir" part of the source path (note: a trailing
134 dot dir is unaffected unless it also has a trailing slash).
135
5481e42c
WD
136 - Added some new --no-FOO options that make it easier to override unwanted
137 implied or default options. For example, "-a --no-o" (aka "--archive
138 --no-owner") can be used to turn off the preservation of file ownership
139 that is implied by -a.
a912a980 140
5481e42c
WD
141 - Added the --chmod=MODE option that allows the destination permissions to
142 be changed from the source permissions. E.g. --chmod=g+w,o-rwx
ef3bb69a 143
50fd4832
WD
144 - Added the "incoming chmod" and "outgoing chmod" daemon options that allow
145 a module to specify what permissions changes should be applied to all
146 files copied to and from the daemon.
63344ad4 147
5481e42c
WD
148 - Allow the --temp-dir option to be specified when starting a daemon, which
149 sets the default temporary directory for incoming files.
ec69bdbd 150
5481e42c
WD
151 - If --delete is combined with --dirs without --recursive, rsync will now
152 delete in any directory whose content is being synchronized.
ce0da32a 153
5481e42c
WD
154 - If --backup is combined with --delete without --backup-dir (and without
155 --delete-excluded), we add a "protect" filter-rule to ensure that files
156 with the backup suffix are not deleted.
2067ec73 157
3b153409
WD
158 - The file-count stats that are output by --progress were improved to
159 better indicate what the numbers mean. For instance, the output:
0ee32c62
WD
160 "(xfer#5, to-check=8383/9999)" indicates that this was the fifth file
161 to be transferred, and we still need to check 8383 more files out of
162 a total of 9999.
3b153409 163
5481e42c
WD
164 - The include/exclude code now allows a dir/*** directive (with 3 trailing
165 stars) to match both the dir itself as well as all the content below the
166 dir (dir/** would not match the dir).
d37bc73a 167
5481e42c
WD
168 - Added the --prune-empty-dirs (-m) option that makes the receiving rsync
169 discard empty chains of directories from the file-list. This makes it
170 easier to selectively copy files from a source hierarchy and end up with
171 just the directories needed to hold the resulting files.
a324d49b 172
458aeea4 173 - If the --itemize-changes (-i) option is repeated, rsync now includes
5481e42c
WD
174 unchanged files in the itemized output (similar to -vv, but without all
175 the other verbose messages that can get in the way). Of course, the
176 client must be version 2.6.7 for this to work, but the remote rsync only
177 needs to be 2.6.7 if you're pushing files.
458aeea4 178
5481e42c
WD
179 - Added the --super option to make the receiver always attempt super- user
180 activities. This is useful for systems that allow things such as devices
181 to be created or ownership to be set without being UID 0, and is also
182 useful for someone who wants to ensure that errors will be output if the
183 receiving rsync isn't being run as root.
f5b14759 184
5481e42c
WD
185 - Added the --sockopts option for those few who want to customize the TCP
186 options used to contact a daemon rsync.
f7916cbf 187
63344ad4
WD
188 - Added a way for the --temp-dir option to be combined with a partial-dir
189 setting that lets rsync avoid non-atomic updates (for those times when
190 --temp-dir is not being used because space is tight).
191
2959fe74
WD
192 - A new support script, files-to-excludes, will transform a list of files
193 into a set of include/exclude directives that will copy those files.
194
195 - A new option, --executability (-E) can be used to preserve just the
196 execute bit on files, for those times when using the --perms option is
197 not desired.
198
49f4d850
WD
199 - The daemon now logs each module-list request it receives.
200
201 - New log-format options: %M (modtime), %U (uid), %G (gid), and %B
202 (permission bits, e.g. "rwxr-xrwt").
203
20a02697
WD
204 - The --dry-run option no longer forces the enabling of --verbose.
205
e3f83953
WD
206 - Some minor documentation improvements.
207
0417c34e
WD
208 - Updated some diffs in the patches dir.
209
5b9cc695
WD
210 INTERNAL:
211
5cf48960
WD
212 - We now use sigaction() and sigprocmask() if possible, and fall back on
213 signal() if not. Using sigprocmask() ensures that rsync enables all the
214 signals that it needs, just in case it was started in a masked state.
215
5b9cc695
WD
216 - Some buffer sizes were expanded a bit, particularly on systems where
217 MAXPATHLEN is overly small (e.g. cygwin).
218
219 - If io_printf() tries to format more data than fits in the buffer, exit
220 with an error instead of transmitting a truncated buffer.
ce0da32a 221
d409c6ac
WD
222 - If a va_copy macro is defined, lib/snprintf.c will use it when defining
223 the VA_COPY macro.
224
b1b04fcd
WD
225 - Reduced the amount of stack memory needed for each level of directory
226 recursion by nearly MAXPATHLEN bytes.
227
5481e42c
WD
228 - The wildmatch function was extended to allow an array of strings to be
229 supplied as the string to match. This allows the exclude code to do less
230 string copying.
d37bc73a
WD
231
232 - Got rid of the safe_fname() function (and all the myriad calls) and
5481e42c
WD
233 replaced it with a new function in the log.c code that filters all the
234 output going to the terminal.
d37bc73a
WD
235
236 - Unified the f_name() and the f_name_to() functions.
237
ce0da32a
WD
238 DEVELOPER RELATED:
239
4e194bf1
WD
240 - The diffs in the patches dir now require "patch -p1 <DIFF" instead of
241 the previous -p0. Also, the version included in the release tar now
242 affect generated files (e.g. configure, rsync.1, proto.h, etc.), so
243 it is no longer necessary to run autoconf and/or yodl unless you're
244 applying a patch that was checked out from CVS.
245
ce0da32a
WD
246 - Several diffs in the patches dir now use the proper --enable-FOO
247 configure option instead of --with-FOO to turn on the inclusion of
248 the newly patched feature.
249
4e194bf1
WD
250 - There is a new script, "prepare-source" than can be used to update the
251 various generated files (proto.h, configure, etc.) even before configure
252 has created the Makefile (this is mainly useful when patching the source
253 with a patch that doesn't affect generated files).
254
255 - The testsuite now sets HOME so that it won't be affected by a file such
256 as ~/.popt.