Skip to content

Bump webmock from 3.7.6 to 3.12.0

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

Bumps webmock from 3.7.6 to 3.12.0.

Changelog

Sourced from webmock's changelog.

3.12.0

  • Added support for handling custom JSON and XML content types e.g. 'application/vnd.api+json'

3.11.3

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

... (truncated)
Commits
  • 36c2dea Version 3.12.0
  • 293d06e Added support for handling custom json and xml content types.
  • 98c7ddb Version 3.11.3
  • 0863dcf Merge pull request #931 from tonywok/ts-async-real-request
  • 7112541 Async http adapter: only real requests are real
  • 3c5593b Merge pull request #929 from mlarraz/master
  • 15f4e1e Use Github Actions for CI
  • 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
  • Additional commits viewable in compare view

Merge request reports