Skip to content

Commit

Permalink
Version 3.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bblimke committed Aug 26, 2023
1 parent 9305ab5 commit d707719
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 1 deletion.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# Changelog

# 3.19.0

* 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)

# 3.18.1

* Reverted simplified connection handing in Net::HTTP adapter due to https://github.com/bblimke/webmock/issues/999
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1181,6 +1181,14 @@ People who submitted patches and new features or suggested improvements. Many th
* Cedric Sohrauer
* Akira Matsuda
* Mark Spangler
* Henrik Nyh
* Yoann Lecuyer
* Lucas Arnaud
* Marc Rohloff
* inkstak
* Yuki Inoue
* Brandon Weaver
* Josh Nichols

For a full list of contributors you can visit the
[contributors](https://github.com/bblimke/webmock/contributors) page.
Expand Down
2 changes: 1 addition & 1 deletion lib/webmock/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module WebMock
VERSION = '3.18.1' unless defined?(::WebMock::VERSION)
VERSION = '3.19.0' unless defined?(::WebMock::VERSION)
end

0 comments on commit d707719

Please sign in to comment.