NEWS 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. aria2 1.10.5
  2. ============
  3. Release Note
  4. ------------
  5. This release fixes the bug that file allocation is enabled in HTTP
  6. even if --file-allocation=none is specified.
  7. Please note that since 1.10.0 release, aria2 uses 1 connection per
  8. host by default and has 20MiB segment size restriction. So whatever
  9. value you specify using -s option, it uses 1 connection per host. To
  10. make it behave like 1.9.x, use -x16 -k1M (see
  11. --max-connection-per-server and --min-split-size option in man
  12. page). If you specify multiple hosts, aria2 will use all of them and
  13. open multiple connections.
  14. Changes
  15. -------
  16. * Don't reuse socket which is readable because we assume that if
  17. socket is readable it means peer shutdowns connection and the
  18. socket will receive EOF. Added default timeout value to
  19. DownloadEngine::poolSocket().
  20. * Fixed the bug that file allocation is enabled in HTTP even if
  21. --file-allocation=none is specified.
  22. aria2 1.10.4
  23. ============
  24. Release Note
  25. ------------
  26. This release fixes the bug that aria2 hangs when FTP server does not
  27. send '226 Transfer Complete' message and the bug that the time used in
  28. file allocation is taken into account when calculating download speed.
  29. Non UTF-8 filenames are now percent-encoded. The comments and name in
  30. .torrent file in XML-RPC response are also percent-encoded if they are
  31. not UTF-8. Compile error on OpenBSD4.7(i386) was fixed. A warning
  32. message when CA certificates are not imported is not printed in
  33. console. It is shown when certificate verification error is actually
  34. occurred.
  35. Please note that since 1.10.0 release, aria2 uses 1 connection per
  36. host by default and has 20MiB segment size restriction. So whatever
  37. value you specify using -s option, it uses 1 connection per host. To
  38. make it behave like 1.9.x, use -x16 -k1M (see
  39. --max-connection-per-server and --min-split-size option in man
  40. page). If you specify multiple hosts, aria2 will use all of them and
  41. open multiple connections.
  42. Changes
  43. -------
  44. * Updated Russian, Simplified Chinese and French translation. Thanks
  45. to all translators.
  46. * Use RFC1123 date format for creation date of .torrent file printed
  47. using -S.
  48. * Rewritten Cookie class and Cookie parser based on
  49. http://tools.ietf.org/html/draft-ietf-httpstate-cookie-15
  50. * Use inet_ntoa if inet_ntop is not available. Since inet_ntoa does
  51. not handle IPv6 address, IPv6 support is limited in this
  52. case. Fixed unit test error under mingw32.
  53. * Don't show warning message in console when CA certificates are not
  54. imported. --ca-certificate and --check-certificate option were
  55. mentioned in the error message displayed when certificate
  56. verification failed.
  57. * Print message when performing slow file allocation at first time.
  58. * Fixed compile error on OpenBSD4.7(i386).
  59. * Execute 5 DHT tasks concurrently in each task queue.
  60. * Fixed the bug that FtpFinishDownloadCommand does not handle
  61. timeout. This means it waits for the remote server to send "226
  62. Transfer Complete" message *without* its own timeout until the
  63. remote server shutdowns connection(we can detect EOF in this case).
  64. * Rewritten util::escapePath(). Now it does not replace bad chars
  65. with '_':it performs percent-encoding against them.
  66. util::fixTaintedBasename() now replaces "/" with "%2F". Added 0x7f
  67. as bad chars in util::detectDirTraversal().
  68. * Non-UTF8 filenames are now percent-encoded. For example, filename
  69. for http://example.org/%90%A2%8AE will be %90%A2%8AE because it is
  70. Shift_JIS. The comments and name in .torrent file in XML-RPC
  71. response are percent-encoded if they are not UTF-8.
  72. * Reset download start time of PeerStat because it is started before
  73. file allocation begins. Without reset, we have incorrect download
  74. time and aria2 wrongly determines that download speed is too low if
  75. --lowest-speed-limit is used.
  76. * Added keys parameter to aria2.tellStatus, aria2.tellActive,
  77. aria2.tellWaiting and aria2.tellStopped XML-RPC method. 'keys' is
  78. array of string. If it is specified, the response contains only
  79. keys in 'keys' array. If 'keys' is empty or not specified, the
  80. response contains all keys. This is useful when you just want
  81. specific keys and avoid unnecessary transfers. For example,
  82. aria2.tellStatus("1", ["gid", "status"]) returns 'gid' and
  83. 'status' key.
  84. aria2 1.10.3
  85. ============
  86. Release Note
  87. ------------
  88. This release adds short option -x for --max-connection-per-server
  89. option and -k for --min-split-size option. It also adds
  90. --max-download-result=NUM option. This option sets maximum number of
  91. download result kept in memory and the default value is 1000.
  92. --max-connection-per-server now accepts up to 16. '@' character is
  93. now allowed in username embedded in URI. This release fixes the bug
  94. that aria2 reports error and exits with non-zero status when file is
  95. already downloaded and checksum is available.
  96. Please note that since 1.10.0 release, aria2 uses 1 connection per
  97. host by default and has 20MiB segment size restriction. So whatever
  98. value you specify using -s option, it uses 1 connection per host. To
  99. make it behave like 1.9.x, use -x16 -k1M (see
  100. --max-connection-per-server and --min-split-size option in man
  101. page). If you specify multiple hosts, aria2 will use all of them and
  102. open multiple connections.
  103. Changes
  104. -------
  105. * Replaced V_TRUE with A2_V_TRUE. Replaced V_FALSE with A2_V_FALSE.
  106. * Added short option -k for --min-split-size option and -x for
  107. --max-connection-per-server option. Raised maximum value of
  108. --max-connection-per-server up to 16.
  109. * Added --max-download-result=NUM option. This option sets maximum
  110. number of download result kept in memory. The download results are
  111. completed/error/ removed downloads. The download results are stored
  112. in FIFO queue and it can store at most NUM download results. When
  113. queue is full and new download result is created, oldest download
  114. result is removed from the front of the queue and new one is pushed
  115. to the back. Setting big number in this option may result high
  116. memory consumption after thousands of downloads. Specifying 0 means
  117. no download result is kept. Default value is 1000.
  118. * Check hash(hash for entire file, not piece hash) if
  119. --check-integrity option is given and file is downloaded(determined
  120. by file length). If it fails, re-download file.
  121. * Mark cached IP address bad on timeout to allow
  122. aria2 to renew IP address cache.
  123. * Fixed the bug that aria2 reports error and exits with non-zero
  124. status when file is already downloaded.
  125. * Allow '@' in username and password embedded in URI. It should be
  126. percent-encoded but many people use their mail address as an
  127. username and forget about PE.
  128. * Data from remote server in HTTP/FTP download are now written to the
  129. disk(or memory) through StreamFilter. Decoding chunked and gziped
  130. streams are done cascading StreamFilter. Removed inefficient 1byte
  131. read code.
  132. aria2 1.10.2
  133. ============
  134. Release Note
  135. ------------
  136. This release fixes the bug that prevents HTTP redirect from working
  137. when multiple files are downloaded from same host at the same time.
  138. For netrc, aria2 now performs domain match if machine name defined in
  139. .netrc starts with ".".
  140. Please note that since 1.10.0 release, aria2 uses 1 connection per
  141. host by default and has 20MiB segment size restriction. So whatever
  142. value you specify using -s option, it uses 1 connection per host. To
  143. make it behave like 1.9.x, use --max-connection-per-server=4
  144. --min-split-size=1M. If you specify multiple hosts, aria2 will use
  145. all of them and open multiple connections.
  146. Changes
  147. -------
  148. * In .netrc file, if machine name starts ".", aria2 performs domain
  149. match instead of exact match.
  150. * Fixed the bug which prevents HTTP redirection from working when
  151. downloading multiple files from same host at the same time.
  152. aria2 1.10.1
  153. ============
  154. Release Note
  155. ------------
  156. This release adds IPv6 support for FTP, BitTorrent and BitTorrent DHT.
  157. For FTP, EPSV and EPRT command support was added. Enabling IPv6 DHT
  158. requires several options, so please check out the usage example in man
  159. page or wiki usage example page. By default, the asynchronous DNS
  160. resolver does not handle IPv6 address. To work with IPv6 address, use
  161. --enable-async-dns6 option. aria2 now listens on both IPv4 and IPv6
  162. socket for BitTorrent, its DHT and XML-RPC. aria2 uses same port for
  163. both IPv4 and IPv6. The ability to add/remove BitTorrent tracker
  164. announce URI was added. The link error for
  165. FallocFileAllocationIterator was fixed.
  166. Please note that since 1.10.0 release, aria2 uses 1 connection per
  167. host by default and has 20MiB segment size restriction. So whatever
  168. value you specify using -s option, it uses 1 connection per host. To
  169. make it behave like 1.9.x, use --max-connection-per-server=4
  170. --min-split-size=1M. If you specify multiple hosts, aria2 will use
  171. all of them and open multiple connections.
  172. Changes
  173. -------
  174. * Enter end game mode as soon as all pieces are assigned to peers to
  175. avoid substantial slow down at the very last stage of download.
  176. * Set max outstanding request size of BitTorrent download to 100. Set
  177. stepping to 6.
  178. * Added --bt-tracker and --bt-exclude-tracker option. In
  179. --bt-tracker option, you can specify comma separated list of
  180. additional BitTorrent tracker's announce URI. These URIs are not
  181. affected by --bt-exclude-tracker option because they are added
  182. after URIs in --bt-exclude-tracker option are removed. In
  183. --bt-exclude-tracker option, you can specify comma separated list
  184. of BitTorrent tracker's announce URI to remove. You can use special
  185. value '*' which matches all URIs, thus removes all announce
  186. URIs. When specifying '*' in shell command-line, don't forget to
  187. escape or quote it. Added bt-tracker and bt-exclude-tracker to -i
  188. list option.
  189. * Listen both IPv4 and IPv6 for BitTorrent protocol.
  190. * Listen both IPv4 and IPv6 for xml-rpc request.
  191. * Added IPv6 DHT. Added --dht-entry-porint6, --dht-file-path6,
  192. --dht-listen-addr6 and --enable-dht6 option. IPv6 DHT is disabled
  193. by default. To use IPv6 DHT, you need to use --enable-dht6 and
  194. specify a global unicast address to --dht-listen-addr6. IPv6 DHT
  195. is highly experimental.
  196. * Added support for peers6 key in tracker response. Added added6,
  197. added6.f and dropped6 in ut_pex.
  198. * Add only gracefully disconnected peer to ut_pex dropped list. Add
  199. incoming dropped list to PeerStorage.
  200. * Don't use pre-calculate hash value when end-game mode. Throw
  201. exception if bad piece is received.
  202. * Added bittorrent::packcompact() which replaces
  203. bittorrent::createcompact() and supports IPv6 addresses. Rewritten
  204. bittorrent::unpackcompact() and bittorrent::extractPeer() to
  205. support IPv6 addresses. Fixed added.f flags in ut_pex.
  206. * Added --enable-async-dns6 option. This option enables IPv6 name
  207. resolution in asynchronous DNS resolver. This option will be
  208. ignored when --async-dns=false.
  209. * Use hostname of original URI when counting hostname in
  210. inFlightRequest.
  211. * Fixed the bug that
  212. AdaptiveFileAllocationIterator::getCurrentLength() does not return
  213. updated allocated bytes.
  214. * Added FTP EPSV and EPRT command support. aria2 issues these
  215. commands when address family of local socket is AF_INET6.
  216. * Rewritten check for fallocate using AC_COMPILE_IFELSE.
  217. * Fixed the bug that HAVE_SOME_FALLOCATE gets undefined if fallocate
  218. is not available even if posix_fallocate is available. This causes
  219. FallocFileAllocationIterator.cc is out of compile targets and
  220. linker error.
  221. aria2 1.10.0
  222. ============
  223. Release Note
  224. ------------
  225. This release adds an option to limit the number of connections to the
  226. same host in each download. aria2 now chooses server which is least
  227. used in aria2c instance. This release also adds Chromium cookie
  228. support and HTTP only conditional download support which is download
  229. file only when the local file is older than remote file. aria2 now
  230. can handle %2F in FTP URI properly. HTTP/1.1 chunked decoder was
  231. fixed. For Linux, aria2 uses fallocate by default if it is usable.
  232. Changes
  233. -------
  234. * Metadata download may take very long time. If URIs are available,
  235. give up metadata download in at most 30 seconds.
  236. * Added --on-bt-download-complete=COMMAND option. For BitTorrent, a
  237. command specified in --on-download-complete is called when download
  238. completes and seeding is over. On the other hand, this option set
  239. the command to be executed when download completes but before
  240. seeding.
  241. * Added --conditional-get option. Download file only when the local
  242. file is older than remote file. This function only works with
  243. HTTP(S) downloads only. It does not work if file size is specified
  244. in Metalink. It also ignores Content-Disposition header. If a
  245. control file exists, this option will be ignored. This function
  246. uses If-Modified-Since header to get only newer file
  247. conditionally. When getting modification time of local file, it
  248. uses user supplied filename(see --out option) or filename part in
  249. URI if --out is not specified.
  250. * FeedbackURISelector now tries to select URI whose host is least
  251. used in aria2 globally.
  252. * Added --min-split-size=SIZE option. aria2 does not split less than
  253. 2*SIZE byte range. For example, let's consider downloading 20MiB
  254. file. If SIZE is 10M, aria2 can split file into 2 range [0-10MiB)
  255. and [10MiB-20MiB) and download it using 2 sources(if --split >= 2,
  256. of course). If SIZE is 15M, since 2*15M > 20MiB, aria2 does not
  257. split file and download it using 1 source.
  258. * Added --max-connection-per-server=NUM option. The default value of
  259. NUM is 1. This option limits the number of connections allowed to
  260. one server for each download. This means when NUM is 2 and 1 URI is
  261. provided, even if you specified -s 5, aria2 establishes 2
  262. connections.
  263. * Set end byte in Range header if start byte > 0 to get more chance
  264. to pool socket.
  265. * Fixed ChunkedDecoder. It does not read trailer and final CRLF.
  266. * Send each CWD component of FTP URI in separate CWD command as
  267. described in RFC1738.
  268. * Fixed the bug that aria2 cannot handle %2F in FTP URI properly. If
  269. directory component starts with %2F which percent-encode of '/',
  270. client should issue CWD to absolute path, but aria2 does not do
  271. that. It just issues relative path and download fails.
  272. * Added Chromium/Google Chrome Cookies file support. Thanks to
  273. gotrunks for original patch.
  274. * When allocating disk space, for Linux system with fallocate()
  275. system call, first check file system supports fallocate. This just
  276. run fallocate with small chunk and see it succeeds or fails. If it
  277. succeeds, use fallocate() to allocate entire file otherwise fall
  278. back to traditional slower method: writing zeros. This behavior is
  279. enabled in --file-allocation=prealloc, so this is enabled by
  280. default for most modern Linux.