Update module github.com/jarcoal/httpmock to v1.2.0 #272
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.8->v1.2.0Release Notes
jarcoal/httpmock
v1.2.0Compare Source
New features:
NewNotFoundResponderhelps to detect a possible path mistake (final/or double/cases);(*MockTransport).Respondersmethod allowing to list registered responders.Fixes:
url.RawPathis used instead ofurl.Pathwhen checking path alone for consistency with full URL check, which is always unescaped.Let 2 registered responders:
GET http://z.tld/foo%2fbarGET /foo%2fbarBefore this release:
GET http://z.tld/foo%2fbaris caught by 1GET http://unknown.tld/foo%2fbaris not caught as the tested path is/foo/barinstead of/foo%2fbarFrom this release:
GET http://z.tld/foo%2fbaris caught by 1GET http://unknown.tld/foo%2fbaris caught by 2save of old clients transports is now protected from concurrent writes (@roboslone).
Miscellaneous:
anytype instead ofinterface{}, as appeared in go 1.18 (in a compatible manner with go<1.18).Enjoy!
v1.1.0Compare Source
New features:
Responderfor a lower-cased method amongCONNECT,DELETE,GET,HEAD,OPTIONS,POST,PUTandTRACE, produces a panic as it is probably a mistake. This behavior can be disabled by setting newMockTransport.DontCheckMethodfield totrueprior to theRegister*Responder*()call;nilRespondernow unregisters it and zeroes its statistics;Respondermethods:Delay(time.Duration)to delay a response,Then(Responder)to chain responders.Fix:
Response.Bodyare 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:
Responderzeroes its statistics.Enjoy!
Configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.