Releases: mistweaverco/kulala.nvim
Releases · mistweaverco/kulala.nvim
v2.2.1
What's Changed
Bug Fixes 🐛
- fix(parser): document variables with underscores by @gorillamoe in #56
Full Changelog: v2.2.0...v2.2.1
v2.2.0
What's Changed
Exciting New Features ✨
- feat: move to docusaurus by @gorillamoe in #52
- feat: add internal processing by @gorillamoe in #53
Full Changelog: v2.1.0...v2.2.0
v2.1.0
What's Changed
Exciting New Features ✨
- Feature: Add metatags and add ability to process responses externally by @gorillamoe in #50
You can now post-process the response body with any external command you like:
This comes in handy when getting a token from an auth endpoint and then re-using that in the next requests.
Simple example:
POST https://httpbin.org/post HTTP/1.1
content-type: application/json
accept: application/json
# @env-stdin-cmd AUTH_TOKEN jq -rcj .json.token
# @env-stdin-cmd AUTH_USERNAME jq -rcj .json.username
{
"username": "gorillamoe",
"password": "bananas",
"token": "foobar"
}
###
POST https://httpbin.org/post HTTP/1.1
content-type: application/json
accept: application/json
authorization: Bearer {{AUTH_TOKEN}}
{
"success": true,
"username": "{{AUTH_USERNAME}}"
}
Full Changelog: v2.0.1...v2.1.0
v2.0.1
v2.0.0
What's Changed
Breaking Changes 💥
- Feat complete rewrite parser by @gorillamoe in #47
If you encounter nasty bugs, open up issues, please and maybe stick to the v1 tags for the time being.
Full Changelog: v1.6.3...v2.0.0
v1.6.3
What's Changed
Exciting New Features ✨
- feat(parser): verbosity on fail by @gorillamoe in #46
Bug Fixes 🐛
- fix(env): accessing env-variables by @gorillamoe in #44
Full Changelog: v1.6.2...v1.6.3
v1.6.2
Full Changelog: v1.6.1...v1.6.2
v1.6.1
v1.6.0
Full Changelog: v1.5.2...v1.6.0
v1.5.2
What's Changed
Breaking Changes 💥
- break: bump version by @gorillamoe in #39
Bug Fixes 🐛
- fix: config-reset by @gorillamoe in #38
Full Changelog: v1.5.1...v1.5.2