File: Changelog.md

package info (click to toggle)
ruby-em-http-request 0.3.0-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 424 kB
  • sloc: ruby: 2,381; ansic: 999; makefile: 2
file content (54 lines) | stat: -rw-r--r-- 1,830 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Changelog

## 0.3.0 / 2011-01-15

- IMPORTANT: default to non-persistent connections (timeout => 0 now requires :keepalive => true)
- see: https://github.com/igrigorik/em-http-request/commit/1ca5b608e876c18fa6cfa318d0685dcf5b974e09

- added escape_utils dependency to fix slow encode on long string escapes

- bugfix: proxy authorization headers
- bugfix: default to Encoding.default_external on invalid encoding in response
- bugfix: do not normalize URI's internally
- bugfix: more robust Encoding detection


## 0.2.15 / 2010-11-18

- bugfix: follow redirects on missing content-length
- bugfix: fixed undefined warnings when running in strict mode

## 0.2.14 / 2010-10-06

- bugfix: form-encode keys/values of ruby objects passed in as body

## 0.2.13 / 2010-09-25

- added SOCKS5 proxy support
- bugfix: follow redirects on HEAD requests

## 0.2.12 / 2010-09-12

- added headers callback (http.headers {|h| p h})
- added .close method on client obj to terminate session (accepts message)

- bugfix: report 0 for response status on 1.9 on timeouts
- bugfix: handle bad Location host redirects
- bugfix: reset host override on connect

## 0.2.11 / 2010-08-16

- all URIs are now normalized prior to dispatch (and on redirect)
- default to direct proxy (instead of CONNECT handshake) - better performance
  - specify :proxy => {:tunnel => true} if you need to force CONNECT route
- MultiRequest accepts block syntax for dispatching parallel requests (see specs)
- MockHttpRequest accepts block syntax (see Mock wiki page)


- bugfix: nullbyte frame for websockets
- bugfix: set @uri on DNS resolve failure
- bugfix: handle bad hosts in absolute redirects
- bugfix: reset seen content on redirects (doh!)
- bugfix: invalid multibyte escape in websocket regex (1.9.2+)
- bugfix: report etag and last_modified headers correctly