github AnWeber/vscode-httpyac v5.3.0

latest releases: 6.15.1, 6.15.0, 6.14.0...
2 years ago

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

GET https://httpbin.org/json

@foo={{response.parsedBody.slideshow.author}}
  • Request Output Channel supports http language id

Fix

  • right order of cli output (AnWeber/httpyac#237)
  • fix when condition of Variables TreeDataProvider and Environment Tree Data Provider

Don't miss a new vscode-httpyac release

NewReleases is sending notifications on new releases.