Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

289 rindas
14 KiB

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