]> sjero.net Git - wget/blob - NEWS
[svn] Advertise NTLM support. Explain why SSL over proxy now works in
[wget] / NEWS
1 GNU Wget NEWS -- history of user-visible changes.
2
3 Copyright (C) 2005 Free Software Foundation, Inc.
4 See the end for copying conditions.
5
6 Please send GNU Wget bug reports to <bug-wget@gnu.org>.
7 \f
8 * Changes in Wget 1.10.
9
10 ** Downloading files greater than 2GB, also known as "large files",
11 now works on systems that support them.  This includes most modern
12 Unix variants, as well as Windows.
13
14 ** IPv6 is now supported by Wget.  Unlike the experimental code in
15 1.9, this version has no problems with dual-family systems.  The new
16 flags `--inet4' and `--inet6' (or `-4' and `-6' for short) force the
17 use of IPv4 and IPv6 respectively.  Unfortunately the IPv6 support
18 still does not work on Windows.
19
20 ** Talking to SSL servers over proxies now actually works.  Previous
21 versions of Wget erroneously sent GET requests for SSL URLs.  Wget
22 1.10 utilizes the CONNECT method designed for this purpose.
23
24 ** Microsoft's proprietary "NTLM" method of HTTP authentication is now
25 supported.  This authentication method is undocumented and only used
26 by IIS.  Note that *proxy* authentication is not supported in this
27 release; you can only authenticate to the target web site.
28
29 ** Wget no longer truncates partially downloaded files when download
30 has to start over because the server doesn't support Range.  Instead,
31 with such servers Wget now simply ignores the data up to the byte
32 where the last attempt left off, and only then continues appending to
33 the file.  That way the downloaded file never shrinks, and download
34 retries from servers without support for partial downloads work even
35 when downloading to stdout.
36
37 ** Passive FTP is now the default FTP transfer mode.  Use
38 `--no-passive-ftp' or specify `passive_ftp = off' in your init file to
39 revert to the old behavior.
40
41 ** The `--header' option can now be used to override generated
42 headers.  For example, `wget --header="Host: foo.bar"
43 http://127.0.0.1' tells Wget to connect to localhost, but to specify
44 "foo.bar" in the `Host' header.  In previous versions such use of
45 `--header' lead to duplicate headers in HTTP requests.
46
47 ** The responses without headers, aka "HTTP 0.9" responses, are
48 detected and handled.  Although HTTP 0.9 has long been obsolete, it is
49 still occasionally used, sometimes by accident.
50
51 ** The progress bar is now updated regularly even when the data does
52 not arrive from the network.
53
54 ** Wget no longer preserves permissions of files retrieved by FTP by
55 default.  Anonymous FTP servers frequently use permissions like "664",
56 which might not be what the user wants.  The new option
57 `--preserve-permissions' and the corresponding `.wgetrc' variable can
58 be used to revert to the old behavior.
59
60 ** The new option `--protocol-directories' instructs Wget to also use
61 the protocol name as a directory component of local file names.
62
63 ** Many options that previously unconditionally set or unset various
64 flags are now boolean options that can be invoked as either `--OPTION'
65 or `--no-OPTION'.  Options that required an argument "on" or "off"
66 have also been changed this way, but they still accept the old syntax
67 for backward compatibility.  For example, instead of `--glob=off' you
68 can write `--no-glob'.
69
70 Allowing `--no-OPTION' for every `--OPTION' and the other way around
71 is useful because it allows the user to override non-default behavior
72 specified via `.wgetrc'.
73
74 ** The new option `--keep-session-cookies' causes `--save-cookies' to
75 save session cookies along with the permanent ones.  This is useful on
76 sites that require you to log in before you can access some pages.
77 With this option, multiple Wget runs will be treated as a single
78 browser session.
79
80 * `wget -b' now works correctly under Windows.
81 \f
82 * Wget 1.9.1 is a bugfix release with no user-visible changes.
83 \f
84 * Changes in Wget 1.9.
85
86 ** It is now possible to specify that POST method be used for HTTP
87 requests.  For example, `wget --post-data="id=foo&data=bar" URL' will
88 send a POST request with the specified contents.
89
90 ** IPv6 support is available, although it's still experimental.
91
92 ** The `--timeout' option now also affects DNS lookup and establishing
93 the TCP connection.  Previously it only affected reading and writing
94 data.  Those three timeouts can be set separately using
95 `--dns-timeout', `--connection-timeout', and `--read-timeout',
96 respectively.
97
98 ** Download speed shown by the progress bar is based on the data
99 recently read, rather than the average speed of the entire download.
100 The ETA projection is still based on the overall average.
101
102 ** It is now possible to connect to FTP servers through FWTK
103 firewalls.  Set ftp_proxy to an FTP URL, and Wget will automatically
104 log on to the proxy as "username@host".
105
106 ** The new option `--retry-connrefused' makes Wget retry downloads
107 even in the face of refused connections, which are otherwise
108 considered a fatal error.
109
110 ** The new option `--dns-cache=off' may be used to prevent Wget from
111 caching DNS lookups.
112
113 ** Wget no longer escapes characters in local file names based on
114 whether they're appropriate in URLs.  Escaping can still occur for
115 nonprintable characters or for '/', but no longer for frequent
116 characters such as space.  You can use the new option
117 --restrict-file-names to relax or strengthen these rules, which can be
118 useful if you dislike the default or if you're downloading to
119 non-native partitions.
120
121 ** Handling of HTML comments has been dumbed down to conform to what
122 users expect and other browsers do: instead of being treated as SGML
123 declaration, a comment is terminated at the first occurrence of "-->".
124 Use `--strict-comments' to revert to the old behavior.
125
126 ** Wget now correctly handles relative URIs that begin with "//", such
127 as "//img.foo.com/foo.jpg".
128
129 ** Boolean options in `.wgetrc' and on the command line now accept
130 values "yes" and "no" along with the traditional "on" and "off".
131
132 ** It is now possible to specify decimal values for timeouts, waiting
133 periods, and download rate.  For instance, `--wait=0.5' now works as
134 expected, as does `--dns-timeout=0.5' and even `--limit-rate=2.5k'.
135 \f
136 * Wget 1.8.2 is a bugfix release with no user-visible changes.
137 \f
138 * Wget 1.8.1 is a bugfix release with no user-visible changes.
139 \f
140 * Changes in Wget 1.8.
141
142 ** A new progress indicator is now available and used by default.
143 You can choose the progress bar type with `--progress=TYPE'.  Two
144 types are available, "bar" (the new default), and "dot" (the old
145 dotted indicator).  You can permanently revert to the old progress
146 indicator by putting `progress = dot' in your `.wgetrc'.
147
148 ** You can limit the download rate of the retrieval using the
149 `--limit-rate' option.  For example, `wget --limit-rate=15k URL' will
150 tell Wget not to download the body of the URL faster than 15 kilobytes
151 per second.
152
153 ** Recursive retrieval and link conversion have been revamped:
154
155 *** Wget now traverses links breadth-first.  This makes the
156 calculation of depth much more reliable than before.  Also, recursive
157 downloads are faster and consume *significantly* less memory than
158 before.
159
160 *** Links are converted only when the entire retrieval is complete.
161 This is the only safe thing to do, as only then is it known what URLs
162 have been downloaded.
163
164 *** BASE tags are handled correctly when converting links.  Since Wget
165 already resolves <base href="..."> when resolving handling URLs, link
166 conversion now makes the BASE tags point to an empty string.
167
168 *** HTML anchors are now handled correctly.  Links to an anchor in the
169 same document (<a href="#anchorname">), which used to confuse Wget,
170 are now converted correctly.
171
172 *** When in page-requisites (-p) mode, no-parent (-np) is ignored when
173 retrieving for inline images, stylesheets, and other documents needed
174 to display the page.
175
176 *** Page-requisites (-p) mode now works with frames.  In other words,
177 `wget -p URL-THAT-USES-FRAMES' will now download the frame HTML files,
178 and all the files that they need to be displayed properly.
179
180 ** `--base' now works conjunction with `--input-file', providing a
181 base for each URL and thereby allowing the URLs in the file to be
182 relative.
183
184 ** If a host has more than one IP address, Wget uses the other
185 addresses when accessing the first one fails.
186
187 ** Host directories now contain port information if the URL is at a
188 non-standard port.
189
190 ** Wget now supports the robots.txt directives specified in
191 <http://www.robotstxt.org/wc/norobots-rfc.txt>.
192
193 ** URL parser has been fixed, especially the infamous overzealous
194 quoting.  Wget no longer dequotes reserved characters, e.g. `%3F' is
195 no longer translated to `?', nor `%2B' to `+'.  Unsafe characters
196 which are not reserved are still escaped, of course.
197
198 ** No more than 20 successive redirections are allowed.
199 \f
200 * Wget 1.7.1 is a bugfix release with no user-visible changes.
201 \f
202 * Changes in Wget 1.7.
203
204 ** SSL (`https') pages now work if you compile Wget with SSL support;
205 use the `--with-ssl' configure flag.  You need to have OpenSSL
206 installed.
207
208 ** Cookies are now supported.  Wget will accept cookies sent by the
209 server and return them in later requests.  Additionally, it can load
210 and save cookies to disk, in the same format that Netscape uses.
211
212 ** "Keep-alive" (persistent) HTTP connections are now supported.
213 Using keep-alive allows Wget to share one TCP/IP connection for
214 many retrievals, making multiple-file downloads faster and less
215 stressing for the server and the network.
216
217 ** Wget now recognizes FTP directory listings generated by NT and VMS
218 servers.
219
220 ** It is now possible to recurse through FTP sites where logging in
221 puts you in some directory other than '/'.
222
223 ** You may now use `~' to mean home directory in `.wgetrc'.  For
224 example, `load_cookies = ~/.netscape/cookies.txt' works as you would
225 expect.
226
227 ** The HTML parser has been rewritten.  The new one works more
228 reliably, allows finer-grained control over which tags and attributes
229 are detected, and has better support for some features like correctly
230 skipping comments and declarations, decoding entities, etc.  It is
231 also more general.
232
233 ** <meta name="robots"> tags are now respected.
234
235 ** Wget's internal tables now use hash tables instead of linked lists
236 where appropriate.  This results in huge speedups when retrieving
237 large sites (thousands of documents).
238
239 ** Wget now has a man page, automatically generated from the Texinfo
240 documentation.  (The last version that shipped with a man page was
241 1.4.5).  To get this, you need to have pod2man from the Perl
242 distribution installed on your system.
243 \f
244 * Changes in Wget 1.6
245
246 ** Administrative changes.
247
248 *** Maintainership.  Due to Hrvoje being plagued with a "real job",
249 Dan Harkless is the most active maintainer (not that he doesn't have a
250 real job as well).  Hrvoje still participates occasionally, and both
251 are being helped by many other people.
252
253 *** Web page.  Thanks to Jan Prikryl, Wget has an "official" web page.
254 Take a look at:
255
256     http://sunsite.dk/wget/
257
258 *** Anonymous CVS.  Thanks to ever-helpful Karsten Thygesen, Wget
259 sources are now available at an anonymous CVS server.  Take a look at
260 the web page for downloading instructions.
261
262 ** New -K / --backup-converted / backup_converted = on option causes files
263 modified due to -k to be saved with a .orig prefix before being changed.  When
264 using -N as well, it is these .orig files that are compared against the server.
265
266 ** New --follow-tags / follow_tags = ... option allows you to restrict
267 Wget to following only certain HTML tags when doing a recursive
268 retrieval.  -G / --ignore-tags / ignore_tags = ... is just the
269 opposite -- all tags but the ones you specify will be followed.
270
271 ** New --waitretry / waitretry = SECONDS option allows waiting between retries
272 of failed downloads.  Wget will use "linear" backoff, waiting 1 second after the
273 first failure, 2 after the second, up to SECONDS.  waitretry is set to 10 by
274 default in the system wgetrc.
275
276 ** New -p / --page-requisites / page_requisites = on option causes
277 Wget to download all ancillary files necessary to display a given HTML
278 page properly (e.g. inlined images).
279
280 ** New -E / --html-extension / html_extension = on option causes Wget
281 to append ".html" to text/html filenames not ending in regexp
282 "\.[Hh][Tt][Mm][Ll]?".
283
284 ** New type of .wgetrc command -- "lockable Boolean".  Can be set to on, off,
285 always, or never.  This allows the .wgetrc to override the commandline.  So far,
286 passive_ftp is the only .wgetrc command which takes a lockable Boolean.
287
288 ** A number of new translation files have been added.
289
290 ** New --bind-address / bind_address = <address> option for people on hosts 
291 bound to multiple IP addresses.
292
293 ** wget now accepts (illegal per HTTP spec) relative URLs in HTTP redirects.
294 \f
295 * Wget 1.5.3 is a bugfix release with no user-visible changes.
296 \f
297 * Wget 1.5.2 is a bugfix release with no user-visible changes.
298 \f
299 * Wget 1.5.1 is a bugfix release with no user-visible changes.
300 \f
301 * Changes in Wget 1.5.0
302
303 ** Wget speaks many languages!
304
305 On systems with gettext(), Wget will output messages in the language
306 set by the current locale, if available.  At this time we support
307 Czech, German, Croatian, Italian, Norwegian and Portuguese.
308
309 ** Opie (Skey) is now supported with FTP.
310
311 ** HTTP Digest Access Authentication (RFC2069) is now supported.
312
313 ** The new `-b' option makes Wget go to background automatically.
314
315 ** The `-I' and `-X' options now accept wildcard arguments.
316
317 ** The `-w' option now accepts suffixes `s' for seconds, `m' for
318 minutes, `h' for hours, `d' for days and `w' for weeks.
319
320 ** Upon getting SIGHUP, the whole previous log is now copied to
321 `wget-log'.
322
323 ** Wget now understands proxy settings with explicit usernames and
324 passwords, e.g. `http://user:password@proxy.foo.com/'.
325
326 ** You can use the new `--cut-dirs' option to make Wget create less
327 directories.
328
329 ** The `;type=a' appendix to FTP URLs is now recognized.  For
330 instance, the following command will retrieve the welcoming message in
331 ASCII type transfer:
332
333     wget "ftp://ftp.somewhere.com/welcome.msg;type=a"
334
335 ** `--help' and `--version' options have been redone to to conform to
336 standards set by other GNU utilities.
337
338 ** Wget should now be compilable under MS Windows environment.  MS
339 Visual C++ and Watcom C have been used successfully.
340
341 ** If the file length is known, percentages are displayed during
342 download.
343
344 ** The manual page, now hopelessly out of date, is no longer
345 distributed with Wget.
346 \f
347 * Wget 1.4.5 is a bugfix release with no user-visible changes.
348 \f
349 * Wget 1.4.4 is a bugfix release with no user-visible changes.
350 \f
351 * Changes in Wget 1.4.3
352
353 ** Wget is now a GNU utility.
354
355 ** Can do passive FTP.
356
357 ** Reads .netrc.
358
359 ** Info documentation expanded.
360
361 ** Compiles on pre-ANSI compilers.
362
363 ** Global wgetrc now goes to /usr/local/etc (i.e. $sysconfdir).
364
365 ** Lots of bugfixes.
366 \f
367 * Changes in Wget 1.4.2
368
369 ** New mirror site at ftp://sunsite.auc.dk/pub/infosystems/wget/,
370 thanks to Karsten Thygesen.
371
372 ** Mailing list!  Mail to wget-request@sunsite.auc.dk to subscribe.
373
374 ** New option --delete-after for proxy prefetching.
375
376 ** New option --retr-symlinks to retrieve symbolic links like plain
377 files.
378
379 ** rmold.pl -- script to remove files deleted on the remote server
380
381 ** --convert-links should work now.
382
383 ** Minor bugfixes.
384 \f
385 * Changes in Wget 1.4.1
386
387 ** Minor bugfixes.
388
389 ** Added -I (the opposite of -X).
390
391 ** Dot tracing is now customizable; try wget --dot-style=binary
392 \f
393 * Changes in Wget 1.4.0
394
395 ** Wget 1.4.0 [formerly known as Geturl] is an extensive rewrite of
396 Geturl.  Although many things look suspiciously similar, most of the
397 stuff was rewritten, like recursive retrieval, HTTP, FTP and mostly
398 everything else.  Wget should be now easier to debug, maintain and,
399 most importantly, use.
400
401 ** Recursive HTTP should now work without glitches, even with Location
402 changes, server-generated directory listings and other naughty stuff.
403
404 ** HTTP regetting is supported on servers that support Range
405 specification. WWW authorization is supported -- try
406 wget http://user:password@hostname/
407
408 ** FTP support was rewritten and widely enhanced. Globbing should now
409 work flawlessly. Symbolic links are created locally. All the
410 information the Unix-style ls listing can give is now recognized.
411
412 ** Recursive FTP is supported, e.g.
413     wget -r ftp://gnjilux.cc.fer.hr/pub/unix/util/
414
415 ** You can specify "rejected" directories, to which you do not want to
416 enter, e.g. with wget -X /pub
417
418 ** Time-stamping is supported, with both HTTP and FTP. Try wget -N URL.
419
420 ** A new texinfo reference manual is provided.  It can be read with
421 Emacs, standalone info, or converted to HTML, dvi or postscript.
422
423 ** Fixed a long-standing bug, so that Wget now works over SLIP
424 connections.
425
426 ** You can have a system-wide wgetrc (/usr/local/lib/wgetrc by
427 default). Settings in $HOME/.wgetrc override the global ones, of
428 course :-)
429
430 ** You can set up quota in .wgetrc to prevent sucking too much
431 data. Try `quota = 5M' in .wgetrc (or quota = 100K if you want your
432 sysadmin to like you).
433
434 ** Download rate is printed after retrieval.
435
436 ** Wget now sends the `Referer' header when retrieving
437 recursively.
438
439 ** With the new --no-parent option Wget can retrieve FTP recursively
440 through a proxy server.
441
442 ** HTML parser, as well as the whole of Wget was rewritten to be much
443 faster and less memory-consuming (yes, both).
444
445 ** Absolute links can be converted to relative links locally. Check
446 wget -k.
447
448 ** Wget catches hangup, filtering the output to a log file and
449 resuming work. Try kill -HUP %?wget.
450
451 ** User-defined headers can be sent.  Try
452
453     wget http://fly.cc.her.hr/ --header='Accept-Charset: iso-8859-2'
454
455 ** Acceptance/Rejection lists may contain wildcards.
456
457 ** Wget can display HTTP headers and/or FTP server response with the
458 new `-S' option.  It can save the original HTTP headers with `-s'.
459
460 ** socks library is now supported (thanks to Antonio Rosella
461 <Antonio.Rosella@agip.it>). Configure with --with-socks.
462
463 ** There is a nicer display of REST-ed output.
464
465 ** Many new options (like -x to force directory hierarchy, or -m to
466 turn on mirroring options).
467
468 ** Wget is now distributed under GNU General Public License (GPL).
469
470 ** Lots of small features I can't remember. :-)
471
472 ** A host of bugfixes.
473 \f
474 * Changes in Geturl 1.3
475
476 ** Added FTP globbing support (ftp://fly.cc.fer.hr/*)
477
478 ** Added support for no_proxy
479
480 ** Added support for ftp://user:password@host/
481
482 ** Added support for %xx in URL syntax
483
484 ** More natural command-line options
485
486 ** Added -e switch to execute .geturlrc commands from the command-line
487
488 ** Added support for robots.txt
489
490 ** Fixed some minor bugs
491 \f
492 * Geturl 1.2 is a bugfix release with no user-visible changes.
493 \f
494 * Changes in Geturl 1.1
495
496 ** REST supported in FTP
497
498 ** Proxy servers supported
499
500 ** GNU getopt used, which enables command-line arguments to be ordered
501 as you wish, e.g.  geturl http://fly.cc.fer.hr/ -vo log is the same as
502 geturl -vo log http://fly.cc.fer.hr/
503
504 ** Netscape-compatible URL syntax for HTTP supported: host[:port]/dir/file
505
506 ** NcFTP-compatible colon URL syntax for FTP supported: host:/dir/file
507
508 ** <base href="xxx"> supported
509
510 ** autoconf supported
511 \f
512 ----------------------------------------------------------------------
513 Copyright information:
514
515 Copyright (C) 2005 Free Software Foundation, Inc.
516
517    Permission is granted to anyone to make or distribute verbatim
518    copies of this document as received, in any medium, provided that
519    the copyright notice and this permission notice are preserved, thus
520    giving the recipient permission to redistribute in turn.
521
522    Permission is granted to distribute modified versions of this
523    document, or of portions of it, under the above conditions,
524    provided also that they carry prominent notices stating who last
525    changed them.