Skip to content

Bump webmock from 3.7.6 to 3.11.2

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

Bumps webmock from 3.7.6 to 3.11.2.

Changelog

Sourced from webmock's changelog.

3.11.2

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

... (truncated)
Commits
  • f1d9515 Version 3.11.2
  • 6f90a59 Merge pull request #927 from kovyrin/kovyrin/fix-manticore-streaming-mode
  • 4ec1f2d Fix manticore streaming mode when WebMock is enabled
  • d19b472 Merge pull request #925 from voxik/patch-1
  • ae9d09f Add WEBrick dependency
  • c2721df Version 3.11.1
  • 881c355 Merge pull request #923 from jasl/fix-compatible-with-async-http-0_54
  • 8be4e93 Compatible with async-http 0.54+
  • 3ab7694 Version 3.11
  • f0824dd Merge pull request #896 from ce07c3/master
  • Additional commits viewable in compare view

Merge request reports