-
Notifications
You must be signed in to change notification settings - Fork 321
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release Notes for v0.6 #116
Comments
We just need to summarize 206 commits since July 15. 😉 I can start working on this. |
Actually we can use this issue as a "common" notepad :D |
Here’s my list. Let me know if you think anything should be added.
Feel free to add things any items you think are important that I might have missed. |
Probably it worth mentioning backward incompatible changes, e.g.: # before
res = HTTP.get("http://example.com/").response
body = HTTP.get("http://example.com/").to_s
parsed = res.parse_body
# now
res = HTTP.get("http://example.com/")
body = res.to_s
parsed = res.parse |
The response body class is actually |
@ixti yes definitely, we should note there's no longer a |
Summary
HTTP::Request#method
toHTTP::Request#verb
(@krainboltgreene)HTTP::ResponseBody
class (@tarcieri)HTTP::Client.request
and "friends" (#get
,#post
, etc) (@tarcieri)HTTP::Response#readpartial
(@tarcieri)HTTP::Headers
class (@ixti)HTTP::Request#redirect
(@ixti)HTTP::Response#content_type
(@ixti)HTTP::Response#mime_type
(@ixti)HTTP::Response#charset
(@ixti)HTTP::Error
namespace (@ixti)HTTP::Chainable#with_response
(@ixti)HTTP::Response::BodyDelegator
(@ixti)HTTP::Response#parsed_body
(@ixti)Details
The text was updated successfully, but these errors were encountered: