Update module github.com/jarcoal/httpmock to v1.3.1 #31
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v1.0.4
->v1.3.1
Release Notes
jarcoal/httpmock (github.com/jarcoal/httpmock)
v1.3.1
Compare Source
Fix:
v1.3.0
Compare Source
New features:
Miscellaneous:
v1.2.0
Compare Source
New features:
NewNotFoundResponder
helps to detect a possible path mistake (final/
or double/
cases);(*MockTransport).Responders
method allowing to list registered responders.Fixes:
url.RawPath
is used instead ofurl.Path
when checking path alone for consistency with full URL check, which is always unescaped.Let 2 registered responders:
GET http://z.tld/foo%2fbar
GET /foo%2fbar
Before this release:
GET http://z.tld/foo%2fbar
is caught by 1GET http://unknown.tld/foo%2fbar
is not caught as the tested path is/foo/bar
instead of/foo%2fbar
From this release:
GET http://z.tld/foo%2fbar
is caught by 1GET http://unknown.tld/foo%2fbar
is caught by 2save of old clients transports is now protected from concurrent writes (@roboslone).
Miscellaneous:
any
type instead ofinterface{}
, as appeared in go 1.18 (in a compatible manner with go<1.18).Enjoy!
v1.1.0
Compare Source
New features:
Responder
for a lower-cased method amongCONNECT
,DELETE
,GET
,HEAD
,OPTIONS
,POST
,PUT
andTRACE
, produces a panic as it is probably a mistake. This behavior can be disabled by setting newMockTransport.DontCheckMethod
field totrue
prior to theRegister*Responder*()
call;nil
Responder
now unregisters it and zeroes its statistics;Responder
methods:Delay(time.Duration)
to delay a response,Then(Responder)
to chain responders.Fix:
Response.Body
are now consistent. Now, the httpmock one can only be read once: if some code wrongly depends onNewStringResponse()
&NewBytesResponse()
response body be read ad infinitum, it should be changed to either recallNewStringResponse()
&NewBytesResponse()
before reading again the response body, or useNewStringResponder()
&NewBytesResponder()
.Doc:
Responder
zeroes its statistics.Enjoy!
v1.0.8
Compare Source
New feature:
ResponderFromMultipleResponses()
thanks to @c-rousselEnjoy!
v1.0.7
Compare Source
New feature:
File
type allowing to easily serve files contentsFix:
GetCallCountInfo()
thanks to @swithekMisc:
Enjoy!
v1.0.6
Compare Source
Responder generated by httpmock can now be used concurrently — #93 reported by @ascherkus
v1.0.5
Compare Source
Add ZeroCallCounters function & method
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.