Releases: MarketSquare/robotframework-httprequestlibrary
Releases · MarketSquare/robotframework-httprequestlibrary
Updated dependencies and new home
Cookie printing and security fixes
- Updated HTTPclient to 0.0.6, which allows printing of all cookies that are in the request.
- Relates to Hi-Fi/httpclient#15, thanks to
- Fixed multiple security issues in dependencies: #54, #55, #56, #57, #58, #59, #60
Example of printing out all cookies:
Create Session google http://www.google.com
${resp}= Get Request google /
Log ${resp.cookies}
Fixed payload parsing
Fixed #48
Logging improved
Changed logging to first try logging with Robot's own logging API, and secondly printing to stdout (and letting Javalib core to capture logging).
Update httpclient
v0.0.9 Release 0.0.9
UTF8 encoding to StringEntity (new httpclient)
Negotiate support
- Updated HTTPclient to version which support Negotiate in Windows env.
Proxy support
- Added proxy support
- HTTPclient and RF maven plugin version update.
Refactoring of httpclient
Removed old httpclient code from library.
HttpClient refactoring
Moved Httpclient to own dependency, so it's easier to use in other libraries
Fixed #23, which was seen in some configurations.