-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
27 lines (27 loc) · 1.37 KB
/
ChangeLog
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
* Allow PostField.file#to_s
* Minor refactoring to how PostField.file handles strings
* Accept symbol and any object that responds_to?(:to_s) for easy.http(:verb)
* Free memory sooner after a request finishes instead of waiting for garabage collection
* Fix crash when sending nil for the http_put body
* Fix inspect for Curl::Easy, thanks Hongli Lai
* Fix unit test assertions for Curl::Multi, thanks Hongli Lai
0.7.7
* Curl::Multi perform is more robust process callbacks before exiting the loop - issue 24. thanks igrigorik and ramsingla
* improve Curl::Multi idle callback robustness, trigger callbacks more often - issue 24. thanks igrigorik and ramsingla
0.7.6
* fix bug in http_* when http_delete or http("verb") raises an exception
* add support for autoreferrer e.g. if follow_location=true it will pass that along
0.7.5
* minor fix for no signal instead of INT2FIX Check boolean value
0.7.4
* add support to set the http version e.g. easy.version = Curl::HTTP_1_1
* add support to disable libcurls internal use of signals.
0.7.3
* Support rubinius
* allow Multi.download to be called without a block
* add additional Multi.download examples
0.7.2
* Start tracking high level changes
* Add Curl::Easy#close - hard close an easy handle
* Add Curl::Easy#reset - reset all settings but keep connections alive
* Maintain persistent connections for single easy handles