v1.9.1
This patch fixes two bugs from 1.9.0. The Profile tab is now visible while a profile runs, and vars.get no longer returns template text when a @const has the same name.
If you have not updated yet, see the 1.9.0 release notes for run variables, the Profile tab with comparison against the previous run, and vars.get returning the value sent with the request.
Fixed
vars.get now returns the request value when a @const has the same name.
# @const id fixed
### Create order
# @name create
# @request id {{$uuid}}
POST https://example.com/orders
X-Request-Id: {{= vars.get("id") }}In v1.9.0, vars.get("id") returned the literal text {{$uuid}}. Now it returns the generated UUID. The same applies to @capture, @assert, @poll until=, and @retry-when.
{{id}} still resolves to fixed. Constants take precedence in templates, and vars never exposes them.
- The Profile tab now shows live progress during a profile run. In v1.9.0, the sending indicator covered the tab until the run finished.