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