The close_all() function was missing its "void" prototype.
[rsync/rsync.git] / NEWS
... / ...
CommitLineData
1NEWS for rsync version 2.5.6, aka the dwd-between-jobs release
2Changes since version 2.5.5:
3
4 ENHANCEMENTS:
5
6 * The --delete-after option now implies --delete. (Wayne Davison)
7
8 * The --suffix option can now be used with --backup-dir. (Michael
9 Zimmerman)
10
11 * Combining "::" syntax with the -rsh/-e option now uses the
12 specified remote-shell as a transport to talk to a (newly-spawned)
13 server-daemon. This allows someone to use daemon features, such
14 as modules, over a secure protocol, such as ssh. (JD Paul)
15
16 * The rsync:// syntax for daemon connections is now accepted in the
17 destination field.
18
19 * If the file name given to --include-from or --exclude-from is "-",
20 rsync will read from standard input. (J.W. Schultz)
21
22 * New option --link-dest which is like --compare-dest except that
23 unchanged files are hard-linked in to the destination directory.
24 (J.W. Schultz)
25
26 * Don't report an error if an excluded file disappears during an
27 rsync run. (Eugene Chupriyanov and Bo Kersey)
28
29 * Added .svn to --cvs-exclude list to support subversion. (Jon
30 Middleton)
31
32 * Properly support IPv6 addresses in the rsyncd.conf "hosts allow"
33 and "hosts deny" fields. (Hideaki Yoshifuji)
34
35 * Changed exclude file handling to permit DOS or MAC style line
36 terminations. (J.W. Schultz)
37
38 * Ignore errors from chmod when -p/-a/--preserve-perms is not set.
39 (Dave Dykstra)
40
41 BUG FIXES:
42
43 * Fix "forward name lookup failed" errors on AIX 4.3.3. (John
44 L. Allen, Martin Pool)
45
46 * Generate each file's rolling-checksum data as we send it, not
47 in a separate (memory-eating) pass before hand. This prevents
48 timeout errors on really large files. (Stefan Nehlsen)
49
50 * Fix compilation on Tru64. (Albert Chin, Zoong Pham)
51
52 * Better handling of some client-server errors. (Martin Pool)
53
54 * Fixed a crash that would occur when sending a list of files that
55 contains a duplicate name (if it sorts to the end of the file
56 list) and using --delete. (Wayne Davison)
57
58 * Fixed the file-name duplicate-removal code when dealing with multiple
59 dups in a row. (Wayne Davison)
60
61 * Fixed a bug that caused rsync to lose the exit status of its child
62 processes and sometimes return an exit code of 0 instead of showing
63 an error. (David R. Staples, Dave Dykstra)
64
65 * Fixed bug in --copy-unsafe-links that caused it to be completely
66 broken. (Dave Dykstra)
67
68 * Prevent infinite recursion in cleanup code under certain circumstances.
69 (Sviatoslav Sviridov and Marc Espie)
70
71 * Fixed a bug that prevented rsync from creating intervening directories
72 when --relative-paths/-R is set. (Craig Barratt)
73
74 * Prevent "Connection reset by peer" messages from Cygwin. (Randy O'Meara)
75
76 INTERNAL:
77
78 * Many code cleanups and improved internal documentation. (Martin
79 Pool, Nelson Beebe)
80
81 * Portability fixes. (Dave Dykstra and Wayne Davison)
82
83 * More test cases. (Martin Pool)
84
85 * Some test-case fixes. (Brian Poole, Wayne Davison)
86
87 * Updated included popt to the latest vendor drop, version 1.6.4.
88 (Jos Backus)
89
90 * Updated config.guess and config.sub to latest versions; this
91 means rsync should build on more platforms. (Paul Green)