選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

276 行
13 KiB

  1. CONTRIBUTIONS & CHANGE HISTORY
  2. ==============================
  3. 23-01-2012 - v3.0.1
  4. * Fixed bug highlighted by Dialyzer
  5. 23-01-2012 - v3.0.0
  6. * Change to the way pipelining works.
  7. * Fixed various issues reported
  8. 13-04-2011 - v2.2.0
  9. * Filipe David Manana added IPv6 support. This is a mjor new
  10. feature, Thank you Filipe!
  11. * Joseph Wayne Norton contributed tweaks to .gitignore
  12. 09-02-2011 - v2.1.4
  13. * Fixed a bug reported by Ryan Zezeski with the
  14. save_response_to_file option.
  15. https://github.com/cmullaparthi/ibrowse/issues#issue/33
  16. 16-01-2011 - v2.1.3
  17. * Fixed issues with streaming and chunked responses when using
  18. the 'caller controls socket' feature. See following links for
  19. details. Contributed by Filipe David Manana.
  20. https://github.com/cmullaparthi/ibrowse/pull/24
  21. https://github.com/cmullaparthi/ibrowse/pull/25
  22. https://github.com/cmullaparthi/ibrowse/pull/27
  23. https://github.com/cmullaparthi/ibrowse/pull/28
  24. https://github.com/cmullaparthi/ibrowse/pull/29
  25. * Fix for issue 32 reported by fholzhauser
  26. https://github.com/cmullaparthi/ibrowse/issues#issue/32
  27. * Fixed some dialyzer warnings. Thanks to Kostis for reporting
  28. them.
  29. 20-12-2010 - v2.1.2
  30. * Pipelining wasn't working when used in conjunction with the
  31. {stream_to, {self(), once}} option. Bug report by
  32. Filipe David Manana.
  33. 10-12-2010 - v2.1.1
  34. * Fix for https://github.com/cmullaparthi/ibrowse/issues/issue/20
  35. by Filipe David Manana
  36. * Fix for https://github.com/cmullaparthi/ibrowse/issues/issue/21
  37. by Filipe David Manana
  38. * Fix for https://github.com/cmullaparthi/ibrowse/issues/issue/23
  39. by Filipe David Manana
  40. * Fix for bugs when using SSL by Jo?o Lopes
  41. 25-10-2010 - v2.1.0
  42. * Fixed build on OpenSolaris. Bug report and patch from
  43. tholschuh.
  44. http://github.com/cmullaparthi/ibrowse/issues/issue/10
  45. * Fixed behaviour of inactivity_timeout option. Reported by
  46. Jo?o Lopes.
  47. http://github.com/cmullaparthi/ibrowse/issues/issue/11
  48. * Prevent atom table pollution when bogus URLs are input to
  49. ibrowse. Bug report by Jo?o Lopes.
  50. http://github.com/cmullaparthi/ibrowse/issues/issue/13
  51. * Automatically do Chunked-Transfer encoding of request body
  52. when the body is generated by a fun. Patch provided by
  53. Filipe David Manana.
  54. http://github.com/cmullaparthi/ibrowse/issues/issue/14
  55. * Depending on input options, ibrowse sometimes included multiple
  56. Content-Length headers. Bug reported by Paul J. Davis
  57. http://github.com/cmullaparthi/ibrowse/issues/issue/15
  58. * Deal with webservers which do not provide a Reason-Phrase on the
  59. response Status-Line. Patch provided by Jeroen Koops.
  60. http://github.com/cmullaparthi/ibrowse/issues/issue/16
  61. * Fixed http://github.com/cmullaparthi/ibrowse/issues/issue/17
  62. This was reported by Filipe David Manana.
  63. * Fixed http://github.com/cmullaparthi/ibrowse/issues/issue/19
  64. This was reported by Dan Kelley and Filipe David Manana.
  65. * Added ibrowse:stream_close/1 to close the connection
  66. associated with a certain response stream. Patch provided by
  67. Jo?o Lopes.
  68. * Prevent port number being included in the Host header when port
  69. 443 is intended. Bug reported by Andrew Tunnell-Jones
  70. 24-09-2010 - v2.0.1
  71. * Removed a spurious io:format statement
  72. 22-09-2010 - v2.0.0.
  73. * Added option preserve_chunked_encoding. This allows the
  74. caller to get the raw HTTP response when the
  75. Transfer-Encoding is Chunked. This feature was requested
  76. by Benoit Chesneau who wanted to write a HTTP proxy using
  77. ibrowse.
  78. * Fixed bug with the {stream_to, {Pid, once}} option. Bug
  79. report and lot of help from Filipe David Manana. Thank
  80. you Filipe.
  81. * The {error, conn_failed} and {error, send_failed} return
  82. values are now of the form {error, {conn_failed, Err}}
  83. and {error, {send_failed, Err}}. This is so that the
  84. specific socket error can be returned to the caller. I
  85. think it looks a bit ugly, but that is the best
  86. compromise I could come up with.
  87. * Added application configuration parameters
  88. default_max_sessions and default_max_pipeline_size. These
  89. were previously hard coded to 10.
  90. * Versioning of ibrowse now follows the Semantic Versioning
  91. principles. See http://semver.org. Thanks to Anthony
  92. Molinaro for nudging me in this direction.
  93. * The connect_timeout option now only applies to the
  94. connection setup phase. In previous versions, the time
  95. taken to setup the connection was deducted from the
  96. specified timeout value for the request.
  97. 17-07-2010 - * Merged change made by Filipe David Manana to use the base64
  98. module for encoding/decoding.
  99. 11-06-2010 - * Removed use of deprecated concat_binary. Patch supplied by
  100. Steve Vinoski
  101. 10-06-2010 - * Fixed bug in https requests not going via the proxy
  102. 12-05-2010 - * Added support for the CONNECT method to tunnel HTTPS through
  103. a proxy. When a https URL is requested through a proxy,
  104. ibrowse will automatically use the CONNECT method to first
  105. setup a tunnel through the proxy. Once this succeeds, the
  106. actual request is dispatched. Successfully tested with the
  107. new SSL implementation in R13B-03
  108. * Added SSL support for direct connections.
  109. See ibrowse:spawn_worker_process/1 and
  110. ibrowse:spawn_link_worker_process/1
  111. * Added option to return raw status line and raw unparsed headers
  112. 23-04-2010 - * Fixes to URL parsing by Karol Skocik
  113. 08-11-2009 - * Added option headers_as_is
  114. 04-10-2009 - * Patch from Kostis Sagonas to cleanup some code and suppress
  115. dialyzer warnings
  116. 24-09-2009 - * When a filename was supplied with the 'save_response_to_file'
  117. option, the option was being ignored. Bug report from
  118. Adam Kocoloski
  119. 05-09-2009 - * Introduced option to allow caller to set socket options.
  120. 29-07-2009 - * The ETS table created for load balancing of requests was not
  121. being deleted which led to the node not being able to create
  122. any more ETS tables if queries were made to many number of
  123. webservers. ibrowse now deletes the ETS table it creates once the
  124. last connection to a webserver is dropped.
  125. Reported by Seth Falcon.
  126. * Spurious data being returned at end of body in certain cases of
  127. chunked encoded responses from the server.
  128. Reported by Chris Newcombe.
  129. 03-07-2009 - Added option {stream_to, {Pid, once}} which allows the caller
  130. to control when it wants to receive more data. If this option
  131. is used, the call ibrowse:stream_next(Req_id) should be used
  132. to get more data.
  133. * Patch submitted by Steve Vinoski to remove compiler warnings
  134. about the use of obsolete guards
  135. 29-06-2009 - * Fixed following issues reported by Oscar Hellstr?m
  136. * Use {active, once} instead of {active, true}
  137. * Fix 'dodgy' timeout handling
  138. * Use binaries internally instead of lists to reduce memory
  139. consumption on 64 bit platforms. The default response format
  140. is still 'list' to maintain backwards compatibility. Use the
  141. option {response_format, binary} to get responses as binaries.
  142. * Fixed chunking bug (reported by Adam Kocoloski)
  143. * Added new option {inactivity_timeout, Milliseconds} to timeout
  144. requests if no data is received on the link for the specified
  145. interval. Useful when responses are large and links are flaky.
  146. * Added ibrowse:all_trace_off/0 to turn off all tracing
  147. * Change to the way responses to asynchronous requests are
  148. returned. The following messages have been removed.
  149. * {ibrowse_async_response, Req_id, {chunk_start, Chunk_size}}
  150. * {ibrowse_async_response, Req_id, chunk_end}
  151. * Fixed Makefiles as part of Debian packaging
  152. (thanks to Thomas Lindgren)
  153. * Moved repository from Sourceforge to Github
  154. 11-06-2009 - * Added option to control size of streamed chunks. Also added
  155. option for the client to receive responses in binary format.
  156. 21-05-2008 - * Fixed bug in reading some options from the ibrowse.conf file.
  157. Reported by Erik Reitsma on the erlyaws mailing list
  158. * Fixed bug when cleaning up closing connections
  159. 27-03-2008 - * Major rewrite of the load balancing feature. Additional module,
  160. ibrowse_lb.erl, introduced to achieve this.
  161. * Can now get a handle to a connection process which is not part of
  162. the load balancing pool. Useful when an application is making
  163. requests to a webserver which are time consuming (such as
  164. uploading a large file). Such requests can be put on a separate
  165. connection, and all other smaller/quicker requests can use the
  166. load balancing pool. See ibrowse:spawn_worker_process/2 and
  167. ibrowse:spawn_link_worker_process/2
  168. * Ram Krishnan sent a patch to enable a client to send a lot of
  169. data in a request by providing a fun which is invoked by the
  170. connection handling process. This fun can fetch the data from
  171. any where. This is useful when trying to upload a large file
  172. to a webserver.
  173. * Use the TCP_NODELAY option on every socket by default
  174. * Rudimentary support for load testing of ibrowse. Undocumented,
  175. but see ibrowse_test:load_test/3. Use the source, Luke!
  176. * New function ibrowse:show_dest_status/2 to view state of
  177. connections/pipelines to a web server
  178. 20-02-2008 - Ram Krishnan sent another patch for another hidden bug in the
  179. save_response_to_file feature.
  180. 07-02-2008 - Ram Krishnan (kriyative _at_ gmail dot com) sent a simple patch to
  181. enable specifying the filename in the save_response_to_file option.
  182. When testing the patch, I realised that my original implementation
  183. of this feature was quite flaky and a lot of corner cases were
  184. not covered. Fixed all of them. Thanks Ram!
  185. 17-10-2007 - Matthew Reilly (matthew dot reilly _at_ sipphone dot com)
  186. sent a bug report and a fix. If the chunk trailer spans two TCP
  187. packets, then ibrowse fails to recognise that the chunked transfer
  188. has ended.
  189. 29-08-2007 - Bug report by Peter Kristensen(ptx _at_ daimi dot au dot dk).
  190. ibrowse crashes when the webserver returns just the Status line
  191. and nothing else.
  192. 28-06-2007 - Added host_header option to enable connection to secure sites
  193. via stunnel
  194. 20-04-2007 - Geoff Cant sent a patch to remove URL encoding for digits in
  195. ibrowse_lib:url_encode/1.
  196. ibrowse had a dependency on the inets application because the
  197. ibrowse_http_client.erl invoked httpd_util:encode_base64/1. This
  198. dependency is now removed and the encode_base64/1 has been
  199. implemented in ibrowse_lib.erl
  200. 06-03-2007 - Eric Merritt sent a patch to support WebDAV requests.
  201. 12-01-2007 - Derek Upham sent in a bug fix. The reset_state function was not
  202. behaving correctly when the transfer encoding was not chunked.
  203. 13-11-2006 - Youn?s Hafri reported a bug where ibrowse was not returning the
  204. temporary filename when the server was closing the connection
  205. after sending the data (as in HTTP/1.0).
  206. Released ibrowse under the BSD license
  207. 12-10-2006 - Chris Newcombe reported bug in dealing with requests where no
  208. body is expected in the response. The first request would succeed
  209. and the next request would hang.
  210. 24-May-2006 - Sean Hinde reported a bug. Async responses with pipelining was
  211. returning the wrong result.
  212. 08-Dec-2005 - Richard Cameron (camster@citeulike.org). Patch to ibrowse to
  213. prevent port number being included in the Host header when port
  214. 80 is intended.
  215. 22-Nov-2005 - Added ability to generate requests using the Chunked
  216. Transfer-Encoding.
  217. 08-May-2005 - Youn?s Hafri made a CRUX LINUX port of ibrowse.
  218. http://yhafri.club.fr/crux/index.html