Skip to content

Commit 9ff63ac

Browse files
committed
Version 3.24.0
1 parent 11a3deb commit 9ff63ac

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Changelog
22

3+
# 3.24.0
4+
5+
* Ignore parsing errors when parsing invalid JSON or XML body to match against body pattern #1066
6+
7+
Thanks to [Christian Schmidt](https://github.com/c960657)
8+
9+
* Added support for mocked HTTP::Connection#finished_request? method #1065
10+
11+
Thanks to [Christian Schmidt](https://github.com/c960657)
12+
13+
* Detect if Patron is loaded by checking if Patron::Session constant is defined #1068
14+
15+
Thanks to [Rodrigo Argumedo](https://github.com/rodrigoargumedo)
16+
17+
* Raising an ArgumentError when uri is passed as a Pathname object to stub_request or request expectation declaration.
18+
19+
* Dropped support for em-http-request on Ruby 3.4. The current version of em-http-request (1.1.7) is incompatible with Ruby 3.4 due to an unresolved issue (https://github.com/igrigorik/em-http-request/issues/365). Support for em-http-request will be re-enabled once the compatibility issue is resolved.
20+
21+
Thanks to [Christian Schmidt](https://github.com/c960657)
22+
323
# 3.23.1
424

525
* Added support for async-http version >= 0.65.0 [PR](https://github.com/bblimke/webmock/pull/1056)

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1204,6 +1204,8 @@ People who submitted patches and new features or suggested improvements. Many th
12041204
* Gio Lodi
12051205
* Ryan Brooks
12061206
* Jacob Frautschi
1207+
* Christian Schmidt
1208+
* Rodrigo Argumedo
12071209

12081210
For a full list of contributors you can visit the
12091211
[contributors](https://github.com/bblimke/webmock/contributors) page.

lib/webmock/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module WebMock
4-
VERSION = '3.23.1' unless defined?(::WebMock::VERSION)
4+
VERSION = '3.24.0' unless defined?(::WebMock::VERSION)
55
end

0 commit comments

Comments
 (0)