Skip to content

Releases: mistweaverco/kulala.nvim

v2.2.0

14 Jul 05:19
b86f8a1
Compare
Choose a tag to compare

What's Changed

Exciting New Features ✨

Full Changelog: v2.1.0...v2.2.0

v2.1.0

13 Jul 20:31
fb5396d
Compare
Choose a tag to compare

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

12 Jul 06:04
5948c51
Compare
Choose a tag to compare

What's Changed

Bug Fixes 🐛

  • fix: allow other content types to be used by @yujinyuz in #49

New Contributors

Full Changelog: v2.0.0...v2.0.1

v2.0.0

11 Jul 19:46
28d8586
Compare
Choose a tag to compare

What's Changed

Breaking Changes 💥

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

11 Jul 19:02
d8f81d5
Compare
Choose a tag to compare

What's Changed

Exciting New Features ✨

Bug Fixes 🐛

Full Changelog: v1.6.2...v1.6.3

v1.6.2

11 Jul 14:43
1c20926
Compare
Choose a tag to compare

Full Changelog: v1.6.1...v1.6.2

v1.6.1

10 Jul 21:09
9d59626
Compare
Choose a tag to compare

What's Changed

Exciting New Features ✨

New Contributors

Full Changelog: v1.6.0...v1.6.1

v1.6.0

10 Jul 06:16
9904d82
Compare
Choose a tag to compare

Full Changelog: v1.5.2...v1.6.0

v1.5.2

08 Jul 19:40
939025c
Compare
Choose a tag to compare

What's Changed

Breaking Changes 💥

Bug Fixes 🐛

Full Changelog: v1.5.1...v1.5.2

v1.5.1

05 Jul 05:10
005cd22
Compare
Choose a tag to compare

What's Changed

Exciting New Features ✨

Bug Fixes 🐛

Full Changelog: v1.5.0...v1.5.1