Breaking Changes
- The default behavior of setting variables has been changed. Now the variables are evaluated directly (query evaluates to
?foo=foobar
).
@bar=bar
@foo=foo{{bar}}
###
@bar=bar2
GET https://httpbin.org/anything?foo={{foo}} HTTP/1.1
The previous behavior can be enforced by means of :=
(query evaluates to ?foo=foobar2
).
@bar=bar
@foo:=foo{{bar}}
###
@bar=bar2
GET https://httpbin.org/anything?foo={{foo}} HTTP/1.1
Features
- allow simple transform response variables (AnWeber/httpyac#235)
GET https://httpbin.org/json
@foo={{response.parsedBody.slideshow.author}}
Request
Output Channel supportshttp
language id
Fix
- right order of cli output (AnWeber/httpyac#237)
- fix
when
condition of Variables TreeDataProvider and Environment Tree Data Provider