Skip to content

Releases: StephanHCB/go-autumn-restclient

v0.9.1 fix nil deref

15 Dec 11:29
6f11d3e
Compare
Choose a tag to compare
  • the roundtripper implementation in the capture wrapper produced a nil deref if there was no response body

Thanks to @mplushnikov

v0.9.0

13 Sep 12:13
94ba915
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.8.1...v0.9.0

v0.8.1 dependencies, documentation

11 Jul 17:35
993c0d2
Compare
Choose a tag to compare
  • update logging api
  • documentation changes

v0.8.0 less warning spam

20 Feb 11:31
7cf1a5e
Compare
Choose a tag to compare
  • requestlogger and retry both allow controlling log messages a bit more. Use NewWithOpts(...) to set up.

v0.7.3 fix support for raw body pointer during playback

22 Aug 10:41
177d92f
Compare
Choose a tag to compare

This change adds a compatibility layer so old recordings continue to work when migrating to a client using **[]byte. New recordings will still record the response as a string.

v0.7.2 Support raw body pointer during playback

18 Aug 07:56
1cf4096
Compare
Choose a tag to compare

WIth our generator using the raw body pointer more, we noticed that this feature was forgotten in the playback implementation. This release fixes that bug.

v0.7.1 fix verifier for non-json request bodies

21 Jul 11:16
cc43337
Compare
Choose a tag to compare
Merge pull request #23 from StephanHCB/issue-21-fix-nonjson-body

fix(#21): support non-json body types

v0.7.0 add simple interaction verifier

21 Jul 09:55
0506148
Compare
Choose a tag to compare
Merge pull request #22 from StephanHCB/issue-21-interaction-checker

Issue 21 interaction checker

v0.6.0 playback recording improvements, go 1.18

08 Jun 12:17
70ccc61
Compare
Choose a tag to compare
  • update to go 1.18 minimum requirement (needed for current tinylru)
  • allow providing an external filename function for recording and playback
  • pass request body to filename function (unused in the default implementation)

v0.5.0 support arbitrary request bodies (e.g. file uploads)

18 Jan 13:36
f83d7ec
Compare
Choose a tag to compare
Merge pull request #15 from StephanHCB/issue-14-mime-uploads

feat(#14): support any custom body reader and content type