dothttp-runner 0.0.27
#
[0.0.27]This is a minor update
- [Improvement] Editor commands now more approachable (now available in editor context)
- [Improvement] Generate request programming language is including "gen..py" fix
This is a minor update
[Feature] Better distinction between json and javascript
[Feature] editor will show suggestions in .dothttp.json
Bump dothttp version to 0.0.33
New Feature Support AWSAuth (landed in version dothttp 0.0.32)
New Feature Support UnixSocket (landed in dothttp version 0.0.31)
[New Feature] New dynamic properties ($randomSlug, $uuid, $timestamp)
[Improvement] Better postman export (apikey, bearerauth)
[Improvement] Curl/har export shows duplicate headers in case of header has case change
[Improvement] Curl Generation/export will add content-length (curl itself will generate, adding it will cause other problems)
[Improvement] keeping track of performance (via benchmark suite)
[Improvement] load huge request payload from file without fear memory
[Improvement] postman import to http (import variables to .dothttp.json)
[Improvement] postman import to http (create base http incase of inherit auth)
[Improvement] postman export expose vairables from .dothttp.json
[Bug] Curl/har with basic auth, adding authentication header fixed
[Bug] postman with urlencode not working fixed
[Bug] add tests for p12, cert, awsauth for dotextensions execute target, (landed in dothttp version 0.0.33)
[Bug] error handling for regenerate http from parsed object (landed in dothttp version 0.0.33)
[Bug] requests-aws4auth is not must included (dothttp-wasm) (landed in dothttp version 0.0.33)
[Bug] fix curl gen for awsauth
[Bug] fix curl for urlencoded not generating payload data
[Bug] fix format http file for certificates and awsauth
[Bug] fix aws auth with post method not working
[Tests] integration tests for awsauth
.dothttp.json
Includes 0.0.23 with support vscode january 2021 version
Notebooks can be used natively by upgrading to latest vscode version[57]
This is preview release for notebooks. (enabled by default in vscode-insiders) No changes
0.0.18 is released after two hours of 0.0.17 because of REGRESSSION issue
Current release mainly focuses on suggestions.
More fixes/improvements:
More fixes/improvements:
More fixes/improvements:
Now Users can use ${randomStr} to generate randomStrings on the fly (no need to edit to new value file again)
from now onwards, there is no need to install dothttp-req (python dependency). devs can start from vscode itself
now highlights url, name, method and json
Now http file outline is available, dev can switch between multiple http defs in single easily
Now onwards dev can list requests he made, open requests
Now reports error while editing.

From now onwards dev can check communication between langserver and vscode and can report bugs.
Users can go to dothttp-code view of output channel.
dothttp-req is website solely designed for debugging requests. (it generates curl with all arguments like urlparams, postparams, headers, everything) when making requests debugging payload, debugging query params is pain taking part. like httpbin we will echo same request but in userfriendly curl. checkout via
curl -X DELETE https://req.dothttp.dev/user/1
responds with
curl -X DELETE https://req.dothttp.dev/https://httpbin.org/user/1
for debugging requests, dev just needs to replace host name with req.dothttp.dev. it generates curl request for you to verify