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