Blob Blame History Raw
-------------------------------------------------------------------
Fri Nov  3 08:02:23 UTC 2023 - Dan Čermák <dan.cermak@posteo.net>

- # 3.19.0

  * When passing a Proc or lambda as response body to `to_return_json`, the body is evaluated at the time of request and not at the time of `to_return_json` method invocation.

      Thanks to [Jason Karns](https://github.com/jasonkarns) for reporting.

  * Do not alter real (non-stubbed) request headers when handling em-http-request requests.

      Thanks to [Yoann Lecuyer](https://github.com/ylecuyer)

  * Fix matching stubs with HashExcludingMatcher

      Thanks to [Lucas Arnaud](https://github.com/lucasarnaud)

  * Remove development and test files from the gem package

      Thanks to [Orien Madgwick](https://github.com/orien)

  * Fix supported http client gem version checks.

      Thanks to [Marc Rohloff](https://github.com/marcrohloff) and [Roman Stražanec](https://github.com/romanstrazanec)

  * Non-string body passed to #to_return_json is now converted to JSON string.

      Thanks to [inkstak](https://github.com/inkstak)

  * `[::1]` is recognised as localhost e.g when passing `allow_localhost` option to `disable_net_connect!`

      Thanks to [Yuki Inoue](https://github.com/Yuki-Inoue)

  * Optimized `normalize_headers` for performance

      Thanks to [Brandon Weaver](https://github.com/baweaver)

  * Added Frozen string literal to files to optimise memory usage

      Thanks to [Josh Nichols](https://github.com/technicalpickles)


-------------------------------------------------------------------
Fri Aug 26 16:49:55 UTC 2022 - Manuel Schnitzer <mschnitzer@suse.com>

- updated to version 3.18.1

  # 3.18.1

    * Reverted simplified connection handing in Net::HTTP adapter due to https://github.com/bblimke/webmock/issues/999

  # 3.18.0

    * Net::BufferedIO is not replaced anymore.

      Thanks to [Ray Zane](https://github.com/rzane)

    * Simplified connection handing in Net::HTTP adapter.

      Thanks to [Ray Zane](https://github.com/rzane)

  # 3.17.1

    * Fixed Syntax Error

      Thanks to [Mark Spangler](https://github.com/mspangler)

  # 3.17.0

    * Minimum required Ruby version is 2.3

      Thanks to [Go Sueyoshi](https://github.com/sue445)

    * When using Net::HTTP, stubbed socket StubSocket#close and StubSocket#closed? behave more like the real sockets.

      Thanks to [Ray Zane](https://github.com/rzane)

    * Added `peeraddr`, `ssl_version` and `cipher` methods to stubbed sockets used by Net::HTTP.

      Thanks to [Ray Zane](https://github.com/rzane)

    * Added support for matching top-level array in JSON request body.

      E.g.

        ````
        stub_request(:post, 'www.example.com').with(body: [{a: 1}])
        ````

      Thanks to [Cedric Sohrauer](https://github.com/cedrics)

  # 3.16.2

    * Minimum required Ruby version is 2.0.

-------------------------------------------------------------------
Thu Aug  4 13:34:21 UTC 2022 - Stephan Kulow <coolo@suse.com>

updated to version 3.16.0
 see installed CHANGELOG.md

  # 3.16.0
  
    * Fix leaky file descriptors and reuse socket for persistent connections.
  
      Thanks to [Ray Zane](https://github.com/rzane)
  
    * Allow specifying for what URIs or hosts, Net::HTTP should connect on start.
  
      Thanks to [Ray Zane](https://github.com/rzane)
  
  # 3.15.0
  
    * fixed async-http adapter on Windows
  
      Thanks to [Pavel Rosický](https://github.com/ahorek)
  
    * Support for http.rb >= 5.0.2
  
      Thanks to [ojab](https://github.com/ojab)
  
    * Curb adapter supports headers with `:` character in the header value
  
      Thanks to [Giorgio Gambino](https://github.com/mrbuzz)
  
    * Support for matching body of JSON or application/x-www-form-urlencoded requests with content type header including charset.
  
      Thanks to [Timmitry](https://github.com/Timmitry)
  
    * Prevent double-wrapping http.rb features on non-stubbed requests
  
      Thanks to [Michael Fairley](https://github.com/michaelfairley)
  

-------------------------------------------------------------------
Wed Aug 25 06:13:15 UTC 2021 - Manuel Schnitzer <mschnitzer@suse.com>

- updated to version 3.14.0

  * Bump Addressable from 2.3.6 to 2.8.0

    Thanks to [Eduardo Hernandez](https://github.com/EduardoGHdez)

-------------------------------------------------------------------
Tue Jun  1 04:31:50 UTC 2021 - Manuel Schnitzer <mschnitzer@suse.com>

- updated to version 3.13.0

  # 3.13.0

    * Support http.rb 5.x

      Thanks to [Will Storey](https://github.com/horgh)

  # 3.12.2

    * Fixed em-http-request adapter to avoid calling middleware twice.

      Thanks to [Alex Vondrak](https://github.com/ajvondrak)

  # 3.12.1

    * Fixed handling of URIs with IPv6 addresses with square brackets when in Net::HTTP adapter.

      Thanks to [Johanna Hartmann](https://github.com/JohannaHartmann)

  # 3.12.0

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

  # 3.11.3

    * Fixed async-http adapter to only considered requests as real if they are real.

      Thanks to Thanks to [Tony Schneider](https://github.com/tonywok) and [Samuel Williams](https://github.com/ioquatix)

  # 3.11.2

    * Fix for Manticore streaming mode

      Thanks to [Oleksiy Kovyrin](https://github.com/kovyrin)

-------------------------------------------------------------------
Wed Jan 20 13:34:14 UTC 2021 - Stephan Kulow <coolo@suse.com>

updated to version 3.11.1
 see installed CHANGELOG.md

  # 3.11.1
  
    * Compatibility with async-http 0.54+
  
      Thanks to [Jun Jiang](https://github.com/jasl)
  
  # 3.11.0
  
    * Added support for `features` in http.rb adapter.
  
      Thanks to [Carl (ce07c3)](https://github.com/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](https://github.com/mkasztelnik)
  
  # 3.9.5
  
    * Prevent overwriting `teardown` method in Test::Unit
  
      Thanks to [Jesse Bowes](https://github.com/jessebs)
  
  # 3.9.4
  
    * More intuitive error message when stubbed response body was provided as Hash
  
      Thanks to [Ben Koshy](https://github.com/BKSpurgeon)
  
  # 3.9.3
  
    * Make httpclient_adapter thread-safe
  
      Thanks to [Adam Harwood](https://github.com/adam-harwood)
  
  # 3.9.2
  
    * Made global stubs thread-safe
  
      Thanks to [Adam Harwood](https://github.com/adam-harwood)
  

-------------------------------------------------------------------
Fri Sep 25 15:07:58 UTC 2020 - Stephan Kulow <coolo@suse.com>

updated to version 3.9.1
 see installed CHANGELOG.md

  # 3.9.1
  
    Fixed support for passing `URI` objects as second argument of `stub_request`
  
      Thanks to [Ryan Kerr](https://github.com/leboshi)
  
  ## 3.9.0
  
    * Allow using a "callable" (like a proc) as URI pattern
  
          stub_request(:any, ->(uri) { true })
  
      Thanks to [John Hawthorn](https://github.com/jhawthorn)
  
    * Added stubbed IO on stubbed socket in Net::HTTP adapter.
  
      Thanks to [Thilo Rusche](https://github.com/trusche)
  
    * When 'webmock/rspec' is required, reset WebMock after all after(:each/example) hooks
  
      Thanks to [Andrew Stuntz](https://github.com/drews256)
  
    * Fixed `net_connect_allowed?` when invoked with no arguments, when there were any allowed URIs passed to `disable_net_connect?`.
  
      Thanks to [Lucas Uyezu](https://github.com/lucasuyezu)
  
    * Fixed async-http adapter which caused Async::HTTP::Client or Async::HTTP::Internet to hang and never return a response.
  
      Thanks to (Bruno Sutic)[https://github.com/bruno-] and [Samuel Williams](https://github.com/ioquatix)
  
    * Fixed warning when using async-http adapter
  
      Thanks to (Bruno Sutic)[https://github.com/bruno-]
  
    * Dropped support for Ruby 2.3 - EOL date: 2019-03-31
  
    * Dropped support for Ruby 2.4 - EOL date: 2020-03-31
  
    * Handling matching of Addressable::Template patterns that have an ip address without port and patterns that have ip address and don’t have schema and path.
  
      Thanks to (Rafael França)[https://github.com/rafaelfranca] and (guppy0356)[https://github.com/guppy0356]
  

-------------------------------------------------------------------
Thu May  7 21:41:11 UTC 2020 - Stephan Kulow <coolo@suse.com>

- updated to version 3.8.3
 see installed CHANGELOG.md

  ## 3.8.3
  
    * Fixed problem introduced in version 3.4.2, which caused matching against Addressable::Template representing host part of the URI to raise an error.
  
      Thanks to [Vesa Laakso](https://github.com/valscion)
  
  ## 3.8.2
  
    * Support correct encoding parameter for HTTP.rb 2.x and earlier
  
      Thanks to [Alex Coomans](https://github.com/drcapulet)

-------------------------------------------------------------------
Mon Feb 10 16:03:59 UTC 2020 - Stephan Kulow <coolo@suse.com>

- updated to version 3.8.1
 see installed CHANGELOG.md

  ## 3.8.1
  
    * Added support for mocking non-ASCII bodies when making requests with HTTP.rb
  
      Thanks to [Patrik Ragnarsson](https://github.com/dentarg)
  
  ## 3.8.0
  
    * Fixed options handling when initialising Async::HTTP::Client
  
      Thanks to [Samuel Williams](https://github.com/ioquatix)
  
    * Ruby 2.7 support.
  
      Thanks to [Ryan Davis](https://github.com/zenspider) and [Brandur](https://github.com/brandur)
  
  ## 3.7.6
  
    * Suppressed keyword argument warnings in Ruby 2.7 in async-http adapter.
  
      Thanks to [Koichi ITO](https://github.com/koic)
  
  ## 3.7.5
  
    * Suppress Excon warning generated by extra key
  
      Thanks to [Marco Costa](https://github.com/marcotc)
  
  ## 3.7.4
  
    * Resetting memoized response fields in Curb adapter.
  
      Thanks to [Andrei Sidorov](https://github.com/heretge)
  
  ## 3.7.3
  
    * Fix for http.rb. Allow passing an output buffer to HTTP::Response::Body#readpartial
  
      Thanks to [George Claghorn](https://github.com/georgeclaghorn)
  
    * Fixed Manticore adapter to invoke Manticore failure handler on stubbed timeout
  
      Thanks to [Alex Junger](https://github.com/alexJunger)
  
    * Added project metadata to the gemspec
  
      Thanks to [Orien Madgwick](https://github.com/orien)
  
  ## 3.7.2
  
    * Fixed handling of non UTF-8 encoded urls
  
      Thanks to [Rafael França](https://github.com/rafaelfranca)
  
    * Fixed "shadowing outer local variable" warning
  
      Thanks to [y-yagi](https://github.com/y-yagi)
  
  ## 3.7.1
  
    * Fixed Async::HTTP::Client adapter code to not cause Ruby warning
  
      Thanks to [y-yagi](https://github.com/y-yagi)
  
  ## 3.7.0
  
    * Support for Async::HTTP::Client
  
      Thanks to [Andriy Yanko](https://github.com/ayanko)
  
  ## 3.6.2
  
    * Fixed Patron adapter to handle HTTP/2 status line.
  
      Thanks to [Fábio D. Batista](https://github.com/fabiob)
  
  ## 3.6.1
  
    * Fixed issue with matching Addressable::Template without a period in the domain
  
      Thanks to [Eike Send](https://github.com/eikes)
  
    * Support for `write_timeout` in Net::HTTP
  
      Thanks to [Claudio Poli](https://github.com/masterkain)
  
    * Fixed issue with handling urls with ":80" or ":443" in the path.
  
      Thanks to [Csaba Apagyi](https://github.com/thisismydesign) for reporting and to [Frederick Cheung](https://github.com/fcheung) for fixing the issue.

-------------------------------------------------------------------
Fri Jul 19 09:45:39 UTC 2019 - Stephan Kulow <coolo@suse.com>

- updated to version 3.6.0
 see installed CHANGELOG.md

  ## 3.6.0
  
    * Compatibility with the latest version of hashdiff gem, with constant changed from HashDiff to Hashdiff
  
      Thanks to [Jeff Felchner](https://github.com/jfelchner)
  
    * Added a hint to the error message raised when `with` method is called without args or a block.
  
      Thanks to [Adam Sokolnicki](https://github.com/asok)
  
    * Resetting configured HTTP method in Curb adapter after each request
  
      Thanks to [tiendo1011](https://github.com/tiendo1011)
  
    * Added `WebMock.enable_net_connect!` as an alias for `WebMock.allow_net_connect!`
      and `WebMock.disallow_net_connect!` as an alias for `WebMock.disable_net_connect!`
  
      Thanks to [SoonKhen OwYong](https://github.com/owyongsk)
  
    * Fixed handling of empty arrays as query params when using Faraday
  
      Thanks to [Ryan Moret](https://github.com/rcmoret)

-------------------------------------------------------------------
Mon Jan 14 14:02:03 UTC 2019 - Stephan Kulow <coolo@suse.com>

- updated to version 3.5.1
 see installed CHANGELOG.md

  ## 3.5.1
  
    * Disabling TracePoint defined in Net::BufferedIO in case of exception being raised.
  
      Thanks to [Koichi Sasada](https://github.com/ko1)
  
  
  ## 3.5.0
  
    * Ruby 2.6.0 support
  
      Thanks to [Arkadiy Tetelman](https://github.com/arkadiyt)
  
    * Added `WebMock.reset_executed_requests!` method.
  
          stub_get = stub_request(:get, "www.example.com")
          Net::HTTP.get('www.example.com', '/')
          WebMock::RequestRegistry.instance.times_executed(stub_get.request_pattern)  # => 1
          reset_executed_requests!
          WebMock::RequestRegistry.instance.times_executed(stub_get.request_pattern)  # => 0
  
      Thanks to [Olia Kremmyda](https://github.com/oliakremmyda)
  
    * Performance improvements
  
      Thanks to [Pavel Rosický](https://github.com/ahorek)

-------------------------------------------------------------------
Mon Jun  4 21:26:30 UTC 2018 - factory-auto@kulow.org

- updated to version 3.4.2
 see installed CHANGELOG.md

-------------------------------------------------------------------
Sun Jun  3 23:24:53 UTC 2018 - factory-auto@kulow.org

- updated to version 3.4.2
 see installed CHANGELOG.md

  ## 3.4.2
  
    * Fixed `rbuf_fill` in Net::HTTP adapter to be thread-safe
  
      Thanks to [Arkadiy Tetelman](https://github.com/arkadiyt)
  
    * Fix invalid scheme error with Addressable::Template
  
      Thanks to [Kazato Sugimoto](https://github.com/uiureo)

-------------------------------------------------------------------
Wed May  2 09:19:38 UTC 2018 - factory-auto@kulow.org

- updated to version 3.4.1
 see installed CHANGELOG.md

  ## 3.4.1
  
   * When comparing url encoded body to a body from request stub, which was declared as hash, only String, Numeric and boolean hash values are stringified before the comparison.
  
      Thanks to [Lukas Pokorny](https://github.com/luk4s)

-------------------------------------------------------------------
Mon Apr 30 01:14:43 UTC 2018 - factory-auto@kulow.org

- updated to version 3.4.0
 see installed CHANGELOG.md

  ## 3.4.0
  
   * Ruby 2.6 support. Prevent `Net/ReadTimeout` error in Ruby 2.6
  
      Thanks to [Koichi ITO](https://github.com/koic)
  
   * Handling query params, which represent nested hashes with keys starting with non word characters.
  
      Thanks to [rapides](https://github.com/rapides) for reporting the issue.
  
   * Patron adapter handles PATCH requests with body.
  
      Thanks to [Mattia](https://github.com/iMacTia) for reporting the issue.
  
   * Allowing requests with url encoded body to be matched by request stubs declared with hash body with non-string values.
  
          stub_request(:post, "www.example.com").with(body: {"a" => 1, "b" => false})
  
          RestClient.post('www.example.com', 'a=1&b=false', :content_type => 'application/x-www-form-urlencoded') # ===> Success
  
      Thanks to [Kenny Ortmann](https://github.com/yairgo) for suggesting this feature.
  
   *  When request headers contain 'Accept'=>'application/json' and no registered stub matches the request, WebMock prints a suggested stub code with to_return body set to '{}'.
  
      Thanks to [redbar0n](https://github.com/redbar0n)
  
  * Improved suggested stub output when the request stub only contains headers declaration.
  
      Thanks to [Olia Kremmyda](https://github.com/oliakremmyda)
  
  * Fixed Curb adapter to handle `reset` method.
  
      Thanks tp [dinhhuydh](https://github.com/dinhhuydh) for reporting the issue.
      Thanks to [Olia Kremmyda](https://github.com/oliakremmyda) for fixing it.

-------------------------------------------------------------------
Fri Jan 19 09:33:48 UTC 2018 - dkang@suse.com

- Updated to version 3.3.0

  * Better formatting of outputted request stub snippets, displayed on failures due to unstubbed requests. - Thanks to Olia Kremmyda

-------------------------------------------------------------------
Thu Jan  4 11:27:15 UTC 2018 - cbruckmayer@suse.com

- Updated to version 3.2.1
    # Fixed Ruby warning under Ruby 2.5

-------------------------------------------------------------------
Wed Jan  3 08:54:37 UTC 2018 - dkang@suse.com

- Updated to version 3.2.0

    # Automatically disable WebMock after Rspec suite - Thanks to Michał Matyas

    # Fixed bug when handling redirection using Curb - Thanks to Olia Kremmyda

-------------------------------------------------------------------
Mon Nov 20 12:07:38 UTC 2017 - mschnitzer@suse.com

- updated to version 3.1.1
  * Warning message is displayed only once when adding query params to URIAddressablePattern.

-------------------------------------------------------------------
Mon Oct  9 06:54:35 UTC 2017 - mschnitzer@suse.com

- updated to version 3.1.0
  * http.rb 3.0.0 compatibility
    Thanks to Piotr Boniecki

  * Typhoeus 1.3.0 support
    Thanks to NARUSE, Yui

  * Added support for matching partial query params using hash_excluding
    Thanks to Olexandr Hoshylyk

  * Added MRI 2.3+ frozen string literal compatibility
    Thanks to Pat Allan

  * Ensured that HTTPClient adapter does not yield block on empty response body if a block is provided
    Thanks to NARUSE, Yui

  * Fixed issue with to_timeout incorrectly raising HTTP::ConnectionError instead of HTTP::TimeoutError when using http.rb
    Thanks to Rick Song

  * Fixed problem with response.connection.close method being undefined when using http.rb
    Thanks to Janko Marohnić

  * Fixed problem with matching Net::HTTP request header values assigned as numbers.
    Thanks to Felipe Constantino de Oliveira for reporting the issue.

  * Fixed problem with Net::HTTP adapter converting empty response body to nil for non 204 responses.
    Thanks to Jeffrey Charles for reporting the issue.

-------------------------------------------------------------------
Thu Apr 13 04:36:29 UTC 2017 - coolo@suse.com

- updated to version 3.0.1
 see installed CHANGELOG.md

  ## 3.0.1

    * Suppressed \`warning: \`&' interpreted as argument prefix\`

      Thanks to [Koichi ITO](https://github.com/koic)

  ## 3.0.0

    * Dropped support for Ruby 1.9.3

    * Using Ruby >= 1.9 hash key syntax in stub suggestions

      Thanks to [Tarmo Tänav](https://github.com/tarmo)

    * Add at_least matchers for fakeweb-style expectations

      Thanks to [Joe Marty](https://github.com/mltsy)

    * Fix against "can't modify frozen String' error when Ruby option `frozen_string_literal` is enabled.

      Thanks to [Chris Thomson](https://github.com/christhomson)

    * Handling `read_timeout` option in Net::HTTP in Ruby >= 2.4

      Thanks to [Christof Koenig](https://github.com/ckoenig)

    * `RequestRegistry` fix for `RuntimeError - can't add a new key into hash during iteration`

      Thanks to [Chung-Yi Chi](https://github.com/starsirius)

-------------------------------------------------------------------
Mon Jan  2 05:44:48 UTC 2017 - coolo@suse.com

- updated to version 2.3.2
 see installed CHANGELOG.md

  ## 2.3.2

    * Restored support for Ruby 1.9.3 to comply with semantic versioning.

      Thanks to [Jordan Harband](https://github.com/ljharb) for reporting the problem.

-------------------------------------------------------------------
Fri Dec 16 05:47:52 UTC 2016 - coolo@suse.com

- updated to version 2.3.1
 see installed CHANGELOG.md

-------------------------------------------------------------------
Mon Dec  5 06:11:47 UTC 2016 - coolo@suse.com

- updated to version 2.3.0
 see installed CHANGELOG.md

  ## 2.3.0

    * Added support for Ruby 2.4

      Thanks to [Koichi ITO](https://github.com/koic)

    * Dropped support for Ruby 1.9.3

  ## 2.2.0

    * Added `refute_requested` as an alias for `assert_not_requested`

      Thanks to [Michael Grosser](https://github.com/grosser)

    * Raising `Net::OpenTimeout` instead of `Timeout::Error` if available when a request stub is declared `to_timeout`

      Thanks to [Gabe Martin-Dempesy](https://github.com/gabetax)

  ## 2.1.1

    * Added support for handling status messages in Excon responses.

      Thanks to [Tero Marttila](https://github.com/SpComb) for reporting the issue.

-------------------------------------------------------------------
Sat Jun  4 04:32:25 UTC 2016 - coolo@suse.com

- updated to version 2.1.0
 see installed CHANGELOG.md

  ## 2.1.0

    * Added support for `on_debug` callback in Curb.

      Thanks to [Pavel Jurašek](https://github.com/pavel-jurasek-bcgdv-com)

    * Added support for PATCH requests using Curb.

      Thanks to [Pavel Jurašek](https://github.com/pavel-jurasek-bcgdv-com)

-------------------------------------------------------------------
Sat May 21 04:40:21 UTC 2016 - coolo@suse.com

- updated to version 2.0.3
 see installed CHANGELOG.md

-------------------------------------------------------------------
Thu Apr 14 04:31:38 UTC 2016 - coolo@suse.com

- updated to version 1.24.3
 see installed CHANGELOG.md

  ## 1.24.3

    * Allow Net:HTTP headers keys to be provided as symbols if `RUBY_VERSION` >= 2.3.0

      Thanks to [Alex Kestner](https://github.com/akestner)

    * Fixed the issue with parsing query to a hash with nested array i.e. `a[][b][]=one&a[][c][]=two`

      Thanks to [Tim Diggins](https://github.com/timdiggins) for reporting the issue.
      Thanks to [Cedric Pimenta](https://github.com/cedricpim) for finding the solution.

    * Added a clear message on an attept to match a multipart encoded request body.
      WebMock does't support requests with multipart body... yet.

    * `WebMock.disable_net_connect` `:allow` option, provided as regexp, matches https URIs correctly.

    * `WebMock.disable_net_connect` `:allow` option can be set as a url string with scheme, host and port.

          WebMock.disable_net_connect!(:allow => 'https://www.google.pl')

      Thanks to [Gabriel Chaney](https://github.com/gabrieljoelc) for reporting the issue.

-------------------------------------------------------------------
Fri Mar  4 05:31:22 UTC 2016 - coolo@suse.com

- updated to version 1.24.2
 see installed CHANGELOG.md

  ## 1.24.2

    * Improve parsing of params on request

      Thanks to [Cedric Pimenta](https://github.com/cedricpim)

-------------------------------------------------------------------
Wed Mar  2 05:39:17 UTC 2016 - coolo@suse.com

- updated to version 1.24.1
 see installed CHANGELOG.md

  ## 1.24.1

    * HTTPClient adapter supports reading basic authentication credentials directly from Authorization header.

      Thanks to [Michiel Karnebeek](https://github.com/mkarnebeek)

  ## 1.24.0

    * Enabled support for Curb > 0.8.6

-------------------------------------------------------------------
Fri Feb 19 05:41:20 UTC 2016 - coolo@suse.com

- updated to version 1.23.0
 see installed CHANGELOG.md

  ## 1.23.0

    * `WebMock.disable_net_connect` accepts `:allow` option with an object that responds to `#call`, receiving a `URI` object and returning a boolean:


          blacklist = ['google.com', 'facebook.com', 'apple.com']
          allowed_sites = lambda{|uri|
            blacklist.none?{|site| uri.host.include?(site) }
          }
          WebMock.disable_net_connect!(:allow => allowed_sites)

          RestClient.get('www.example.org', '/')  # ===> Allowed
          RestClient.get('www.facebook.com', '/') # ===> Failure
          RestClient.get('apple.com', '/')        # ===> Failure

      Thanks to [Pablo Brasero](https://github.com/pablobm)

    * Support for HTTPClient stream responses with body chunks

      Thanks to [Cedric Pimenta](https://github.com/cedricpim)

-------------------------------------------------------------------
Thu Jan 21 05:52:09 UTC 2016 - coolo@suse.com

- updated to version 1.22.6
 see installed CHANGELOG.md

  ## 1.22.6

    * Fixes [issue](https://github.com/bblimke/webmock/issues/568) around
      WebMock restricting [Addressable](https://github.com/sporkmonger/addressable)
      version, based on Ruby 1.8.7 for all versions of Ruby.

      This change inverts that, and forces Ruby 1.8.7 users to specify in thier
      Gemfile an Addressable version < 2.4.0.

      Thanks to [PikachuEXE](https://github.com/PikachuEXE) and
      [Matthew Rudy Jacobs](https://github.com/matthewrudy).

  ## 1.22.5

    * Fixes [bug](https://github.com/bblimke/webmock/issues/565) where WebMock tries
      to alias a method that is deprecated in Ruby Versions > 1.9.2 ('sysread' for class 'StringIO')

      Thanks to [Marcos Acosta](https://github.com/mmaa) for discovering this bug.

  ## 1.22.4

    * Adds support for JSONClient (a subclass of HTTPClient)

      Thanks to [Andrew Kozin](https://github.com/nepalez)

    * Adds support for Ruby 2.3.0

      Thanks to [Charles Pence](https://github.com/cpence)

    * Adds support for [http](https://github.com/httprb/http) versions >= 1.0.0

      Thanks to [Alexey Zapparov](https://github.com/ixti)

    * Fixes support for Ruby 1.8.7 by restrciting Addressable version < 2.4.0

      Thanks to [Matthew Rudy Jacobs](https://github.com/matthewrudy)

-------------------------------------------------------------------
Tue Nov  3 05:35:26 UTC 2015 - coolo@suse.com

- updated to version 1.22.3
 see installed CHANGELOG.md

  ## 1.22.3

    * Return "effective_url" attribute in Typhoeus::Response

      Thanks to [Senya](https://github.com/cmrd-senya)

-------------------------------------------------------------------
Fri Oct 30 05:35:36 UTC 2015 - coolo@suse.com

- updated to version 1.22.2
 see installed CHANGELOG.md

  ## 1.22.2

    * Fix: prevents adding an extra =true to urls with parameters without values

      Thanks to [David Begin](https://github.com/davidbegin)

-------------------------------------------------------------------
Wed Oct 14 04:32:53 UTC 2015 - coolo@suse.com

- updated to version 1.22.1
 see installed CHANGELOG.md

  ## 1.22.1

    * Adds Rack as a development dependency and removes require rack/utils in main lib.

      Thanks to [Keenan Brock](https://github.com/kbrock)

  ## 1.22.0

    All the credit for preparing this release go to [David Begin](https://github.com/davidbegin)!

    * Adds [Manticore](https://github.com/cheald/manticore) support.

        Thanks to [Mike Knepper](https://github.com/mikeknep), [David Abdemoulaie](https://github.com/hobodave)

    * Update to Show a hash diff for requests that have stubs with a body.

        Thanks to [yurivm](https://github.com/yurivm)

    * Update to mirror Net::HTTP handling of headers as symbols

    * Update to ignore non-comparable-values error when sorting
      query values, because sorting is just a convience.

        Thanks to [Magne Land](https://github.com/magneland)

    * Covert Boolean values to Strings when using them to define
      the body of a request.

        Thanks to [Krzysztof Rygielski](https://github.com/riggy)

    * Fixes WebMock's parsing Multibyte characters

        Thanks to [Zhao Wen](https://github.com/VincentZhao)

    * Updates to be compatible with httpclient 2.6.0

    * Converts keys from symbols to strings when for QueryMapper.to_query

        Thanks to [Ramon Tayag](https://github.com/ramontayag)

    * Restricts http.rb version to 0.7.3 for Ruby 1.8.7

    * Fixes issue emulating em-http-request's handling of multiple requests.

        Thanks to [Matt Palmer](https://github.com/mpalmer)

    * WebMock requires only the necessary parts of crack to avoid pulling in safe_yaml

        Thanks to [Johannes Schlumberger](https://github.com/spjsschl)

-------------------------------------------------------------------
Mon Mar 30 04:33:42 UTC 2015 - coolo@suse.com

- updated to version 1.21.0

-------------------------------------------------------------------
Sat Feb  7 07:21:14 UTC 2015 - coolo@suse.com

- updated to version 1.20.4
  * Fixed support for `hash_including` matcher in RSpec 3

 ## 1.20.3
   * `with` method raises error if provided without options hash and without block
   * `with` and `to_return` raise an error if invoked with invalid keys in options hash.

 ## 1.20.2
   * WebMock provides a helpful error message if an incompatible object is given as response body.

 ## 1.20.1
   * `assert_requested` and `assert_not_requested` accept `at_least_times` and `at_most_times` options
   * Silenced `instance variable undefined` warnings in Curb adapted.

 ## 1.20.0
   * Add support for on_missing callback of Curb::Easy
   * Add at_least_times and at_most_times matchers

-------------------------------------------------------------------
Sun Oct 12 16:30:12 UTC 2014 - coolo@suse.com

- updated to version 1.19.0
   * Fixed issue with Excon adapter giving warning message when redirects middleware was enabled.
   * Fixed issue with `undefined method 'valid_request_keys' for Excon::Utils:Module`
   * Fixed query mapper to encode `'one' => ['1','2']` as `'one[]=1&one[]=2'`.
   * Improved cookies support for em-http-request
   * Fix HTTP Gem adapter to ensure uri attribute is set on response object.
   * Fixed HTTPClient adapter. The response header now receives `request_method`, `request_uri`, and `request_query` transferred from request header
   * Query mapper supports nested data structures i.e. `{"first" => [{"two" => [{"three" => "four"}, "five"]}]}`
   * Fixed compatibility with latest versions of Excon which don't define `VALID_REQUEST_KEYS` anymore.
   * Request method is always a symbol is request signatures. This fixes the issue of WebMock not matching Typhoeus requests with request method defined as string.
   * Stubbing instructions which are displayed when no matching stub is found, can be disabled with `Config.instance.show_stubbing_instructions = false`
- adapt to new rubygem packaging

-------------------------------------------------------------------
Sun May 18 09:04:45 UTC 2014 - coolo@suse.com

- updated to version 1.18.0
  * Updated dependency on Addressable to versions >= 2.3.6
  * Added support for matching uris using RFC 6570 (URI Templates)
          uri_template = Addressable::Template.new "www.example.com/{id}/"
          stub_request(:any, uri_template)

    Thanks to [Max Lincoln](https://github.com/maxlinc)
  * Fixed content length calculation for Rack responses with UTF8 body
    Thanks to [Oleg Gritsenko](https://github.com/Claster)
  * Add missing Curl::Easy aliases
    Thanks to [Hwan-Joon Choi](https://github.com/hc5duke)
  * HTTP Gem >= 0.6.0 compatibility
    Thanks to [Aleksey V. Zapparov](https://github.com/ixti)
  * Minitest 4 and 5 compatibility.
    Thanks to [SHIBATA Hiroshi](https://github.com/hsbt)

-------------------------------------------------------------------
Fri Mar 21 12:54:12 UTC 2014 - coolo@suse.com

- updated to version 1.17.4
 * Update matchers for RSpec 3's matcher protocol

-------------------------------------------------------------------
Sat Feb 22 06:25:41 UTC 2014 - coolo@suse.com

- updated to version 1.17.3
 * Fixed issue with Rack response removing 'Content-Type' header
 * Support for chunked responses in Curb
 * Fixed handling of request body passed as a hash to `Typhoeus.post`

-------------------------------------------------------------------
Mon Jan 20 09:29:43 UTC 2014 - coolo@suse.com

- updated to version 1.17.1
 * Added missing license statements.
 * HTTP gem support!
 * Limited Excon gem requirement to version < 0.30 until the compatibility with version > 0.30.0 is fixed.
 * Fixed issue where empty query key caused a `TypeError`

-------------------------------------------------------------------
Mon Dec 16 06:28:03 UTC 2013 - coolo@suse.com

- updated to version 1.16.1
 * Fixed "NameError: uninitialized constant WebMock::Response::Pathname" issue.
   Thanks to [Alex Stupakow and Karen Wang](https://github.com/stupakov) for the fix.

-------------------------------------------------------------------
Fri Nov 22 08:40:37 UTC 2013 - coolo@suse.com

- updated to version 1.16.0
 * Allow a Pathname to be passed as a Response body

         stub_request(:get, /example.com/).to_return(
           body: Rails.root.join('test/fixtures/foo.txt')
         )

   Thanks to [Ben Pickles](https://github.com/benpickles)

 * `hash_including` matcher can be initialized with empty keys to match any values.

         stub_request(:post, "www.example.com").with(:body => hash_including(:a, :b => {'c'}))
         RestClient.post('www.example.com', '{"a":"1","b":"c"}', :content_type => 'application/json')

   Thanks to [Stefano Uliari](https://github.com/steookk)

-------------------------------------------------------------------
Thu Oct 31 05:54:32 UTC 2013 - coolo@suse.com

- updated to version 1.15.2
 *  Fixed `hash_including` to accept a splat of solitary keys.
  Thanks to [Tamir Duberstein](https://github.com/tamird) and [https://github.com/strongriley](https://github.com/strongriley)

-------------------------------------------------------------------
Sun Oct 20 12:05:29 UTC 2013 - coolo@suse.com

- updated to version 1.15.0
 * Excon >= 0.27.5 compatibility.
   Thanks to [Brian D. Burns](https://github.com/burns)

-------------------------------------------------------------------
Fri Oct  4 07:17:58 UTC 2013 - coolo@suse.com

- updated to version 1.14.0
 * Handling non UTF-8 characters in query params.
   Thanks to [Florian Dütsch](https://github.com/der-flo) for reporting the issue.
 * Added support for `request_block` param in Excon
   Thanks to [Dmitry Gutov](https://github.com/dgutov) for reporting the issue.
 * Fixed compatibility with latest Curb
   Thanks to [Ian Lesperance](https://github.com/elliterate) and [Matthew Horan](https://github.com/mhoran)
 * Triggering errbacks assynchronously in em-http-request adapter.
   Thanks to [Ian Lesperance](https://github.com/elliterate) and [Matthew Horan](https://github.com/mhoran)
 * Handling query params with a hashes nested inside arrays.
   Thanks to [Ian Asaff](https://github.com/montague)
 * Changed NetConnectNotAllowedError to inherit from Exception to allow it to bubble up into a test suite.
   Thanks to [Daniel van Hoesel](https://github.com/s0meone)
 * HTTPClient adapter is thread safe.
   Thanks to [Tom Beauvais](https://github.com/tbeauvais)

-------------------------------------------------------------------
Sat Jul 20 07:00:26 UTC 2013 - coolo@suse.com

- updated to version 1.13.0
 * Net::HTTP::Persistent compatibility.
   WebMock doesn't disconnect previously started connections upon a request anymore.

 * Fixed issue with handling Addressable::URI with query params passed to `Net::HTTP.get_response`

   Thanks to [Leif Bladt](https://github.com/leifbladt)

 * Fixed HTTPClient adapter to not raise an error if a request with multipart body is executed.

-------------------------------------------------------------------
Fri Jun 28 04:41:29 UTC 2013 - coolo@suse.com

- updated to version 1.12.2
  * Fixed issue with handling request.path when Addressable::URI is passed to #request instead of URI with Ruby 2.0.

    Thanks to [Leif Bladt](https://github.com/leifbladt)

  * Accept integers as query param values in request stubs

    i.e. `stub_request(:get, /.*/).with(:query => {"a" => 1})`

    Thanks to [Mitsutaka Mimura](https://github.com/takkanm)

  * Fixed Minitest < 5.0 compatibility

    Thanks to [Alex Tomlins](https://github.com/alext) for reporting the issue.

  * Not using Gem spec anymore to check loaded Curb version.

  * `WebMock.disable_net_connect!` now accepts array of regexps as allow param:

    i.e. `WebMock.disable_net_connect!(:allow => [/google.com/, /yahoo.com/])`

    Thanks to [Bastien Vaucher](https://github.com/bastien)

  * Fixed `on_header` Curb callback behaviour in Curb adapter

    Thanks to [Joel Chippindale](https://github.com/mocoso)

  * Fixed aws-sdk compatibility with Ruby 2.0, by supporting `continue_timeout` accessor on Net::HTTP socket.

     Thanks to [Lin Jen-Shin](https://github.com/godfat)

  * Fixed WebMock::Server to not give "log writing failed. can't be called from trap context" warning with Ruby 2.0

     Thanks to [Murahashi Sanemat Kenichi](https://github.com/sanemat)

  * Added support for EM-HTTP-Request streaming data off disk feature.

     Thanks to [Lin Jen-Shin](https://github.com/godfat)

-------------------------------------------------------------------
Tue Mar  5 09:04:00 UTC 2013 - coolo@suse.com

- updated to version 1.11.0
 * Excon >= 0.17 support.
 * '+' in request path is treated as plus, but in query params always as a space.

-------------------------------------------------------------------
Sun Mar  3 09:29:20 UTC 2013 - coolo@suse.com

- updated to version 1.10.1
 * '+' in request body is still treated as a space. This fixes a bug introduced in previous version.
 * Fixed issue: response body declared as Proc was not evaluated again on subsequent requests.
 * '+' in query params is not treated as space anymore and is encoded as %2B
 * added `remove_request_stub` method to the api to allow removing unused stubs i.e.

         stub_get = stub_request(:get, "www.example.com")
         remove_request_stub(stub_get)

 * `assert_requested` and `assert_not_requested` raise an error if a stub object is provided together with a block.
 * Fixed issue with unavailable constant Mutex in Ruby < 1.9
 * Added support for Excon's :response_block parameter
 * Fix 'rack.errors' not being set for Rack apps
 * Added support for minitest assertions count
 * Fixed issues with registering http requests in multi-threaded environments
 * Bumped Crack version to >=0.3.2
 * Fixed issues in Typhoeus 0.6. Defaulted method to GET when no method specified.

-------------------------------------------------------------------
Thu Nov 15 09:32:27 UTC 2012 - coolo@suse.com

- updated to version 1.9.0
 * Added support for Typhoeus >= 0.5.0 and removed support for Typhoeus < 0.5.0.

-------------------------------------------------------------------
Mon Oct  1 10:56:14 UTC 2012 - coolo@suse.com

- updated to version 1.8.11
 * Fix excon adapter to handle `:body => some_file_object`

-------------------------------------------------------------------
Wed Sep 12 18:43:05 UTC 2012 - coolo@suse.com

- updated to version 1.8.10
  * em-http-request fix. After request callbacks are correctly invoked for 3xx responses,
    when :redirects option is set.
      Thanks to [Myron Marston](https://github.com/myronmarston) for reporting that issue.

  * Fixed compatibility with Net::HTTP::DigestAuth
      Thanks to [Jonathan Hyman](https://github.com/jonhyman) for reporting that issue.

  * Fixed problem in em-http-request 0.x appending the query to the client URI twice.
      Thanks to [Paweł Pierzchała](https://github.com/wrozka)

-------------------------------------------------------------------
Sun Aug 26 05:50:11 UTC 2012 - coolo@suse.com

- updated to version 1.8.9
  * Fixed problem with caching nil responses when the same HTTPClient instance is used.

      Thanks to [Myron Marston](https://github.com/myronmarston)

  * Added support for Addressable >= 2.3.0. Addressable 2.3.0 removed support for multiple query value notations and broke backwards compatibility.

      https://github.com/sporkmonger/addressable/commit/f51e290b5f68a98293327a7da84eb9e2d5f21c62
      https://github.com/sporkmonger/addressable/issues/77

-------------------------------------------------------------------
Wed Nov 16 15:15:23 UTC 2011 - fcastelli@suse.com

- Update to 1.7.7, too many changes to report here.

-------------------------------------------------------------------
Mon Jun 14 19:08:16 UTC 2010 - mrueckert@suse.de

- additional changes from version 1.2.2
  - Fixed problem where ArgumentError was raised if query params
    were made up of an array e.g. data[]=a&data[]=b.
    Thanks to Steve Tooke
- additional changes from version 1.2.1
  - Changed license from GPL to MIT
  - Fixed gemspec file. Thanks to Razic
- additional changes from version 1.2.0
  - RSpec 2 compatibility. Thanks to Sam Phillips!
  - :allow_localhost => true' now permits 127.0.0.1 as well as
    'localhost'. Thanks to Mack Earnhardt
  - Request URI matching in now 2x faster!
- additional changes from version 1.1.0
  - [VCR](http://github.com/myronmarston/vcr/) compatibility. Many
    thanks to Myron Marston for all suggestions.
  - Support for stubbing requests and returning responses with
    multiple headers with the same name. i.e multiple Accept
    headers.
  - When real net connections are disabled and unstubbed request is
    made, WebMock throws WebMock::NetConnectNotAllowedError instead
    of assertion error or StandardError.
  - Added WebMock.version()
- additional changes from version 1.0.0
  - Added support for [Patron](http://toland.github.com/patron/)
  - Responses dynamically evaluated from block (idea and
    implementation by Tom Ward)
  - Responses dynamically evaluated from lambda (idea and
    implementation by Tom Ward)
  - Response with custom status message
  - Raising timeout errors (suggested by Jeffrey Jones)
    (compatibility with Ruby 1.8.6 by Mack Earnhardt)
  - External requests can be disabled while allowing localhost
    (idea and implementation by Mack Earnhardt)
  - Fixed issue where Net::HTTP adapter didn't work for requests
    with body responding to read (reported by Tekin Suleyman)
  - Fixed issue where request stub with headers declared as nil was
    matching requests with non empty headers

-------------------------------------------------------------------
Fri Jun 11 10:00:01 UTC 2010 - mrueckert@suse.de

- use rubygems_requires macro

-------------------------------------------------------------------
Thu Feb 18 22:24:11 UTC 2010 - prusnak@suse.cz

- created package