v0.16.0
❗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