Skip to content

Releases: JuliaWeb/HTTP.jl

v0.6.9 AWSS3 EOFError fix & Debug improvements

16 Apr 07:25
Compare
Choose a tag to compare

Fix JuliaCloud/AWSS3.jl#26 -- EOFError doing S3 PUT to Ceph via nginx.

  • Reinstate yield() after @async writebody(...) in request(::Type{StreamLayer}, ...
  • See fa6b206

Debug message improvements:

  • Add timestamps to DEBUG_LEVEL > 0 messages
  • Print time since last read activity in show(::IO, ::Connection)
  • Enable DebugLayer (aka verbose=3) when DEBUG_LEVEL >= 3

Fix for query= option in request(::Client, …)

v0.6.8 new options: idle_timeout=, connect_timeout= and proxy=

30 Mar 22:55
Compare
Choose a tag to compare

New HTTP.request options:

  • idle_timeout, No. of sconds to maintain connection after last transaction.
  • connect_timeout, No. of seconds to wait for TCP connection to be established.
  • proxy=, HTTP and HTTPS proxying (not yet tested in the real world). See #218

v0.6.7, readline(::HTTP.Stream) and 0.7.0-DEV.4616 compat

18 Mar 08:49
Compare
Choose a tag to compare

Require MbedTLS.jl v0.5.7

Add Base.readuntil(::HTTP.Stream, ::UInt8)

Fix IOExtras.unread!(::HTTP.Stream)

Now Base.readline(::HTTP.Stream) works

compat for 0.7.0-DEV.4616

v0.6.6 0.7 compat & Improved POST retry when connection is dropped #211

06 Mar 21:31
Compare
Choose a tag to compare

v0.6.5: Merge pull request #206 from EricForgy/is_upgrade

25 Feb 06:02
b589b1e
Compare
Choose a tag to compare
  • Simplification of compat to use private compat_ functions instead modifying Base methods for Base types.
  • merge #206

Quick bugfix

23 Feb 21:02
d388371
Compare
Choose a tag to compare
v0.6.4

Fix 0.6 compat for contains

v0.6.3: Bugfixes, new option: verbose=3

19 Feb 22:14
Compare
Choose a tag to compare
  • add DebugLayer / IODebug <: IO, activated by verbose=3
  • Fix #190, handle stray whitespace before status line
  • Doc tweaks
  • Base.convert(::Type{Response},s::AbstractString) = Response(s)
  • @deprecate load(m::Message) payload(m, String)
  • fix Base.print(io::IO, u::URI) per #203

v0.6.2: Merge pull request #187 from jsanter/patch-1

04 Feb 00:54
54a0490
Compare
Choose a tag to compare

v0.6.1

26 Jan 03:21
6c3ee03
Compare
Choose a tag to compare
Turn off verbose logging by default.

v0.6.0

25 Jan 17:11
fdc264e
Compare
Choose a tag to compare
Re-implement automatic Content-Type detection using the sniff algorit…