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