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