Make the --password-file option's summary even better.
[rsync/rsync.git] / NEWS
... / ...
CommitLineData
1NEWS for rsync 3.0.0 (UNRELEASED)
2Protocol: 30 (changed)
3Changes since 2.6.9:
4
5 BUG FIXES:
6
7 - Fixed the output of -ii when combined with one of the --*-dest options:
8 it now itemizes all the items, not just the changed ones.
9
10 - Made the output of all file types consistent when using a --*-dest
11 option. Prior versions used to output too many creation events for
12 matching items.
13
14 - The code that waits for a child pid now handles being interrupted by
15 a signal. This fixes a problem with the pre-xfer exec function not
16 being able to get the exit status from the script.
17
18 - A negated filter rule now sends the negation option when sending the
19 filter rules.
20
21 - Fixed a problem with the --out-format (aka --log-format) option: it
22 would output superfluous directory information for a non-daemon rsync.
23
24 - Fixed a problem with -vv (double --verbose) and --stats when "pushing"
25 files (which includes local copies). Version 2.6.9 would complete the
26 copy, but exit with an error when the receiver output its memory stats.
27
28 ENHANCEMENTS:
29
30 - Added the --delete-delay option, which is a more efficient way to
31 delete files at the end of the transfer without needing a separate
32 delete pass.
33
34 - You may specify --max-delete=0 to a 3.0.0 client as long as the
35 receiving side is at least version 3.0.0. This means that you
36 can pull from an older rsync with this option, but pushing to an
37 older rsync will generate an error. *Be sure to never specify a 0
38 value to an older rsync client, or it will be silently ignored.*
39
40 - The --hard-link option now uses less memory on both the sending and
41 receiving side for all protocol versions. For protocol 30, the use
42 of a hashtable on the sending side allows us to more efficiently
43 convey to the receiver what files are linked together. This reduces
44 the amount of data sent over the socket by a considerable margin, and
45 moves the in-memory storage of the device+inode information from the
46 receiving side (for protocols < 30) to the sending side (note that
47 older rsync versions kept the device+inode information on both
48 sides).
49
50 INTERNAL:
51
52 - Added some isType() functions that make dealing with signed characters
53 easier without forcing variables via casts.
54
55 - Upgraded the included popt version to 1.10.2 and improved its use of
56 string-handling functions.
57
58 - Added missing prototypes for compatibility functions from the lib dir.
59
60 - Configure determines if iconv() has a const arg, allowing us to avoid a
61 compiler warning.
62
63 - Made the sending of some numbers more efficient for protocol 30.
64
65 - Improved the use of "const" on pointers.
66
67 DEVELOPER RELATED:
68
69 - ...