Skip to content

Releases: MarketSquare/robotframework-requests

v0.9.4

26 Oct 13:51

Choose a tag to compare

What's new

v1.0a2

18 Jun 16:05

Choose a tag to compare

v1.0a2 Pre-release
Pre-release

What's new

v1.0a1

17 May 17:53
8eba415

Choose a tag to compare

v1.0a1 Pre-release
Pre-release

Fixes

v0.9.3

17 May 00:08

Choose a tag to compare

Fixes

Chore

v0.9.2

22 Sep 22:24
934069a

Choose a tag to compare

Fixes

v0.9.1

22 Apr 07:12
9d62731

Choose a tag to compare

Fixes

v0.9.0

17 Apr 13:00
b0e748e

Choose a tag to compare

What's new

Sessionless keywords are now available, you can just GET, POST, etc.. no need to create a session anymore!

${resp}=  GET  https://www.google.com

Status Should Be and Request Should Be Successfull can use the last response, no need to pass the response anymore!

GET  https://www.google.com
Status Should Be  200

Features

Fixes

  • Removed utf8_urlencode encoding of params @lucagiove (#320)
  • Better handling of complete url in session and sessionless keywords @lucagiove (#313)

v0.8.2

31 Mar 08:03
8dce55a

Choose a tag to compare

What's new

  • Updated pypi description that now reads from readme.md @lucagiove (#325)

v0.8.1

10 Feb 22:29

Choose a tag to compare

Fixes

v0.8.0

10 Feb 22:26
ae76259

Choose a tag to compare

What's new

New keywords structure:
All requests keywords have been rewritten because of many not backward compatible changes
and to allow in the near future requests keywords without a session.
Example Get Request become GET On Session and soon there will be also just GET
when a session is not needed.
Old keywords * Request are now deprecated and will be removed in 1.0.0 version.

Implicit assert on status code:
* On Session keywords automatically fail if an error status code is returned.
expect_status= could be used to specify a status code (201, OK, Bad request)
or any if you want to evaluate the response in any case.

Closer to the original Requests library:
New keywords have the same parameter orders and structure as the original.
Lot of pre-parsing / encoding has been removed to have a more accurate and unchanged behaviour.

Cleaner project architecture:
Main keywords file has been split with a more logic division to allow better and faster maintenance.

Features

  • New Keywords Structure (#258)
  • On Session keywords @acaovilla @NicoMincuzzi @akida24 (#276)
  • Main keywords should fail by default if status code returns an error (#257)

Fixes

  • Different order of parameters in Get Request keyword compared to all the others (#232)
  • _utf8_urlencode brokes list url-parameters (#234)
  • Positional url with params are wrongly parsed in On Session keywords (#288)
  • Add a custom warning for "missing value for argument 'url'" error (#302)
  • Deprecated urllib3 constant DEFAULT_METHOD_WHITELIST (#307)

Others

  • Split keywords in different class/files (#270)
  • Deprecate To Json keyword in favor of response.json attribute @andreagubellini (#219)