Skip to content

Releases: MarketSquare/robotframework-httprequestlibrary

Updated dependencies and new home

17 Sep 10:27
Compare
Choose a tag to compare
  • Fixes #63
  • Fixes #64
  • Moved to new groupId of com.github.marketsquare

Cookie printing and security fixes

01 Mar 18:38
Compare
Choose a tag to compare
  • Updated HTTPclient to 0.0.6, which allows printing of all cookies that are in the request.
  • 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

18 Mar 17:16
Compare
Choose a tag to compare

Logging improved

11 Jul 18:50
Compare
Choose a tag to compare

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

04 Jun 08:57
ff039b8
Compare
Choose a tag to compare
v0.0.9

Release 0.0.9

UTF8 encoding to StringEntity (new httpclient)

02 Nov 20:22
Compare
Choose a tag to compare

Negotiate support

22 Aug 19:29
Compare
Choose a tag to compare
  • Updated HTTPclient to version which support Negotiate in Windows env.

Proxy support

19 Jul 16:55
Compare
Choose a tag to compare
  • Added proxy support
  • HTTPclient and RF maven plugin version update.

Refactoring of httpclient

05 Apr 18:30
Compare
Choose a tag to compare

Removed old httpclient code from library.

HttpClient refactoring

05 Apr 18:09
Compare
Choose a tag to compare

Moved Httpclient to own dependency, so it's easier to use in other libraries
Fixed #23, which was seen in some configurations.