- Per-file dynamic block size is now sqrt(file length).
[rsync/rsync.git] / NEWS
CommitLineData
89855e78 1NEWS for rsync version 2.5.7
195bd906 2Protocol: 27 (changed)
89855e78
WD
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
195bd906
S
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
89855e78
WD
22 BUG FIXES:
23
195bd906
S
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
89855e78
WD
36 multiple files of the same name are destined for the same dir.
37 (Wayne Davison)
38
b5ca91ae 39 - Keep tmp names from overflowing MAXPATHLEN.
89855e78
WD
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
8395d246 49NEWS for rsync version 2.5.6, aka the dwd-between-jobs release
3742bf3a 50Protocol: 26 (unchanged)
8395d246 51Changes since version 2.5.5:
6c92af20 52
759ac870
DD
53 ENHANCEMENTS:
54
bc2b4963 55 * The --delete-after option now implies --delete. (Wayne Davison)
759ac870 56
bc2b4963 57 * The --suffix option can now be used with --backup-dir. (Michael
759ac870
DD
58 Zimmerman)
59
d2d9fe18
WD
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
bc2b4963 63 as modules, over a secure protocol, such as ssh. (JD Paul)
d2d9fe18 64
93eff16a
WD
65 * The rsync:// syntax for daemon connections is now accepted in the
66 destination field.
67
f8a94f0d 68 * If the file name given to --include-from or --exclude-from is "-",
bc2b4963 69 rsync will read from standard input. (J.W. Schultz)
f8a94f0d 70
59c95e42
DD
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
1b85e3f1 75 * Don't report an error if an excluded file disappears during an
bc2b4963 76 rsync run. (Eugene Chupriyanov and Bo Kersey)
1b85e3f1 77
ee7118a8
DD
78 * Added .svn to --cvs-exclude list to support subversion. (Jon
79 Middleton)
80
bc2b4963
DD
81 * Properly support IPv6 addresses in the rsyncd.conf "hosts allow"
82 and "hosts deny" fields. (Hideaki Yoshifuji)
83
7f653755
DD
84 * Changed exclude file handling to permit DOS or MAC style line
85 terminations. (J.W. Schultz)
536b8468 86
f0b4fdaf
DD
87 * Ignore errors from chmod when -p/-a/--preserve-perms is not set.
88 (Dave Dykstra)
89
6c92af20 90 BUG FIXES:
89855e78 91
6c92af20
MP
92 * Fix "forward name lookup failed" errors on AIX 4.3.3. (John
93 L. Allen, Martin Pool)
1433e6da 94
d2d9fe18
WD
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
dd0628f8
MP
99 * Fix compilation on Tru64. (Albert Chin, Zoong Pham)
100
991f90f2
MP
101 * Better handling of some client-server errors. (Martin Pool)
102
93eff16a
WD
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
ac6ce983
WD
107 * Fixed the file-name duplicate-removal code when dealing with multiple
108 dups in a row. (Wayne Davison)
109
ee7118a8
DD
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
1f1fbe18
DD
114 * Fixed bug in --copy-unsafe-links that caused it to be completely
115 broken. (Dave Dykstra)
116
b765ec32 117 * Prevent infinite recursion in cleanup code under certain circumstances.
aa2c47d8 118 (Sviatoslav Sviridov and Marc Espie)
b765ec32 119
1b3cadaa
DD
120 * Fixed a bug that prevented rsync from creating intervening directories
121 when --relative-paths/-R is set. (Craig Barratt)
122
9f639210
DD
123 * Prevent "Connection reset by peer" messages from Cygwin. (Randy O'Meara)
124
dd0628f8
MP
125 INTERNAL:
126
89855e78 127 * Many code cleanups and improved internal documentation. (Martin
bdae761e 128 Pool, Nelson Beebe)
dd0628f8 129
ac6ce983
WD
130 * Portability fixes. (Dave Dykstra and Wayne Davison)
131
dd0628f8
MP
132 * More test cases. (Martin Pool)
133
521e6fdc
WD
134 * Some test-case fixes. (Brian Poole, Wayne Davison)
135
b1a2f37a
WD
136 * Updated included popt to the latest vendor drop, version 1.6.4.
137 (Jos Backus)
1985aa96
PG
138
139 * Updated config.guess and config.sub to latest versions; this
755bcd37 140 means rsync should build on more platforms. (Paul Green)