Skip to content

v0.16.0

Compare
Choose a tag to compare
@Julien-cpsn Julien-cpsn released this 30 Jun 18:19
· 72 commits to main since this release

❗IMPORTANT❗

  • I have been extremely busy lately, but I am gaining some more free time. Also, some major updates are getting worked on parallelly (CLI, export, documentation, increase performances, libc linking)
  • We now have a documentation!! https://atac.julien-cpsn.com/
    • Please notice that it is still very WIP, a lot of pages are missing, but you can contribute by making PRs on the git repo (or press the edit button on the page you want to edit)

Added

  • Import from cURL! #66 You can use it with
atac import curl my_request_file_path my_collection

example cURL file:

curl 'https://httpbin.org/put' \
  -X PUT \
  -H 'Content-Type: application/json' \
  -d 'test'
  • You also have a --recursive or -r option to import request recursively starting from the selected path (also check --max-depth <MAX_DEPTH>)
  • Some things are not supported yet, such as forms.

Improved

  • Updated a lot of dependencies versions, so various bug fixes and performances improvements are linked to this.
  • Improved key helper readability #77
  • Add support for home directory symbol (~) in file paths #78

Fixed

  • Resolved major typo (horrifying) #70