Skip to content

Commit

Permalink
release: v0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Zhang committed Nov 15, 2018
1 parent 03a7956 commit 881b71f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.markdown
Original file line number Diff line number Diff line change
@@ -1,10 +1,24 @@
Table of Contents
=================

* [v0.6](#v0.6)
* [v0.5](#v0.5)
* [v0.4](#v0.4)
* [v0.3](#v0.3)

v0.6
====

> Date: 2018.11.15
This version added some new features like r:json(), HTTPS proxy and some bugfixs.

* feature: supported HTTPS proxy based on HTTP CONNECT method.
* feature: r:json(), now one can get a Lua table which deserializes the response body from calling this method.
* feature: added a new option "use_default_type" to control whether adds a default content-type request header when request body exists.
* bugfix: the ttfb metric always records the "time to first header".
* bugfix: add "charset; utf-8" check to json response object "content-type" header, thanks Happy Totem for the report and pull request.

v0.5
====

Expand Down
2 changes: 1 addition & 1 deletion lib/resty/requests.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
local util = require "resty.requests.util"
local session = require "resty.requests.session"

local _M = { _VERSION = "0.5" }
local _M = { _VERSION = "0.6" }


local function request(method, url, opts)
Expand Down

0 comments on commit 881b71f

Please sign in to comment.