Got rid of the pool-destroy call since this is not around anymore.
[rsync/rsync.git] / NEWS
1 NEWS for rsync 3.0.0 (UNRELEASED)
2 Protocol: 30 (changed)
3 Changes 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   ENHANCEMENTS:
22
23     - Added the --delete-delay option, which is a more efficient way to
24       delete files at the end of the transfer without needing a separate
25       delete pass.
26
27     - You may specify --max-delete=0 to a 3.0.0 client as long as the
28       receiving side is at least version 3.0.0.  This means that you
29       can pull from an older rsync with this option, but pushing to an
30       older rsync will generate an error.  *Be sure to never specify a 0
31       value to an older rsync client, or it will be silently ignored.*
32
33   INTERNAL:
34
35     - Added some isType() functions that make dealing with signed characters
36       easier without forcing variables via casts.
37
38     - Upgraded the included popt version to 1.10.2 and improved its use of
39       string-handling functions.
40
41     - Added missing prototypes for compatibility functions from the lib dir.
42
43     - Configure determines if iconv() has a const arg, allowing us to avoid a
44       compiler warning.
45
46     - Made the sending of some numbers more efficient for protocol 30.
47
48     - Improved the use of "const" on pointers.
49
50   DEVELOPER RELATED:
51
52     - ...