Skip to content

Bump webmock from 3.7.6 to 3.11.1

NipaNipa requested to merge dependabot/bundler/webmock-3.11.1 into master

Bumps webmock from 3.7.6 to 3.11.1.

Changelog

Sourced from webmock's changelog.

3.11.1

  • Compatibility with async-http 0.54+

    Thanks to Jun Jiang

3.11.0

  • Added support for features in http.rb adapter.

    Thanks to Carl (ce07c3)

3.10.0

  • Added option to global stubs to have lower priority than local stubs.

    WebMock.globally_stub_request(:after_local_stubs) do
      { body: "global stub body" }
    end
    stub_request(:get, "www.example.com").to_return(body: 'non-global stub body')
    expect(http_request(:get, "http://www.example.com/").body).to eq("non-global stub body")

    Thanks to Marek Kasztelnik

3.9.5

  • Prevent overwriting teardown method in Test::Unit

    Thanks to Jesse Bowes

3.9.4

  • More intuitive error message when stubbed response body was provided as Hash

    Thanks to Ben Koshy

3.9.3

  • Make httpclient_adapter thread-safe

    Thanks to Adam Harwood

3.9.2

... (truncated)
Commits

Merge request reports