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