beta-v0.11
- Refactor and fix some bugs.
- Added
-A
option to run API server without authentication. - Improve conditions and conclusion with Named Capturing Groups.
For example from this response:
HTTP/1.1 200 OK
Set-Cookie: JSESSIONID=4F6904C386821F445B9C961CF1A10811; Path=/;
we can use RegexSelect("resHeaders", "JSESSIONID=(?P<sess>.*);\\sP")
to get 4F6904C386821F445B9C961CF1A10811
as sess
variables then can render it in next request with [[.sess]]