Hi
Maintainer of Hurl here 😅 !
You're using Hurl in your project (thank you!) and we would like to warn you that the new Hurl release 8.0.0 might have some breaking changes regarding JSONPath.
Most of the time, every of your Hurl files should just work but we've to made somes changes to support the JSONPath RFC 9535 (more info why we did this here => https://hurl.dev/blog/2026/04/27/announcing-hurl-8.0.0.html#brand-new-jsonpath-rfc-9535-support)
For instance in https://github.com/marcodpt/minirps/blob/main/examples/tests/test.hurl
These queries:
jsonpath "$.headers.X-Set" == "some-data"
jsonpath "$.headers.X-Var" == "dog"
Should be rewrite as:
jsonpath "$.headers['X-Set']" == "some-data"
jsonpath "$.headers['X-Var']" == "dog"
We're sorry for the inconvenience, you can contact us on GitHub if you need help upgrading to Hurl 8.0.0, fill free to close this issue when you want,
JC
Hi
Maintainer of Hurl here 😅 !
You're using Hurl in your project (thank you!) and we would like to warn you that the new Hurl release 8.0.0 might have some breaking changes regarding JSONPath.
Most of the time, every of your Hurl files should just work but we've to made somes changes to support the JSONPath RFC 9535 (more info why we did this here => https://hurl.dev/blog/2026/04/27/announcing-hurl-8.0.0.html#brand-new-jsonpath-rfc-9535-support)
For instance in https://github.com/marcodpt/minirps/blob/main/examples/tests/test.hurl
These queries:
Should be rewrite as:
We're sorry for the inconvenience, you can contact us on GitHub if you need help upgrading to Hurl 8.0.0, fill free to close this issue when you want,
JC