webmock 3.11.0 → 3.11.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ee9c189319718f559e90e9e6d031d8dbdac98e9f0ae84c0c7e79d90bfc0dd493
4
- data.tar.gz: cde291017ee8a2587c03e21d20317b96755ac15b94f1e4f287acc035c08ad904
3
+ metadata.gz: dc97c874689b792ce7a6a84750b324c2cb610fd667c0fbc341dccaf14cc26fc1
4
+ data.tar.gz: 05c2e55ba9554c1066f6631c5b5beabfafc05904ce811aef7ceb944b99d5367d
5
5
  SHA512:
6
- metadata.gz: 54838a253c586b32dfaf604b8f4c8efff34bb81a888bda860ca6e9b58ff0a5430376852e0d17a84d8ee4e56a088031d75d3ddb3d00d803789e6eb013e5493d9a
7
- data.tar.gz: 9ddee20d1741ad835224254caaa8bbeda8807dc71c246c4ea8c3be18f31c089658f8c7a3b2fdf14da1f9cda32fe7c7cbf9cb594445ba92d47fa549754dd9b27e
6
+ metadata.gz: 27824be10a455582f88966a60539c2f2af49fca630e7ef5f9c49ef342c22d1f28e4abd3fe52a4882cdeb756bb04853798d24f43a4a64575f9e070f287d1cb905
7
+ data.tar.gz: 37cbd35aabaff9f013a5305163ef1420dd00b4d3635e1c70bedb246e44e152c189cff4cca9ff561a89220b68e876d80cdfa31aeffdcd7841a36105fa96be2904
@@ -1,10 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ # 3.11.1
4
+
5
+ * Compatibility with async-http 0.54+
6
+
7
+ Thanks to [Jun Jiang](https://github.com/jasl)
8
+
3
9
  # 3.11.0
4
10
 
5
11
  * Added support for `features` in http.rb adapter.
6
12
 
7
- Thanks to [Carl (ce07c3)](https://github.com/ce07c3)
13
+ Thanks to [Carl (ce07c3)](https://github.com/ce07c3)
8
14
 
9
15
  # 3.10.0
10
16
 
data/README.md CHANGED
@@ -1152,6 +1152,7 @@ People who submitted patches and new features or suggested improvements. Many th
1152
1152
  * Jesse Bowes
1153
1153
  * Marek Kasztelnik
1154
1154
  * ce07c3
1155
+ * Jun Jiang
1155
1156
 
1156
1157
  For a full list of contributors you can visit the
1157
1158
  [contributors](https://github.com/bblimke/webmock/contributors) page.
@@ -40,8 +40,8 @@ if defined?(Async::HTTP)
40
40
  )
41
41
  webmock_endpoint = WebMockEndpoint.new(scheme, authority, protocol)
42
42
 
43
- @network_client = WebMockClient.new(endpoint, protocol, scheme, authority, **options)
44
- @webmock_client = WebMockClient.new(webmock_endpoint, protocol, scheme, authority, **options)
43
+ @network_client = WebMockClient.new(endpoint, **options)
44
+ @webmock_client = WebMockClient.new(webmock_endpoint, **options)
45
45
 
46
46
  @scheme = scheme
47
47
  @authority = authority
@@ -1,3 +1,3 @@
1
1
  module WebMock
2
- VERSION = '3.11.0' unless defined?(::WebMock::VERSION)
2
+ VERSION = '3.11.1' unless defined?(::WebMock::VERSION)
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webmock
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.11.0
4
+ version: 3.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bartosz Blimke
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-12-17 00:00:00.000000000 Z
11
+ date: 2021-01-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -407,9 +407,9 @@ licenses:
407
407
  - MIT
408
408
  metadata:
409
409
  bug_tracker_uri: https://github.com/bblimke/webmock/issues
410
- changelog_uri: https://github.com/bblimke/webmock/blob/v3.11.0/CHANGELOG.md
411
- documentation_uri: https://www.rubydoc.info/gems/webmock/3.11.0
412
- source_code_uri: https://github.com/bblimke/webmock/tree/v3.11.0
410
+ changelog_uri: https://github.com/bblimke/webmock/blob/v3.11.1/CHANGELOG.md
411
+ documentation_uri: https://www.rubydoc.info/gems/webmock/3.11.1
412
+ source_code_uri: https://github.com/bblimke/webmock/tree/v3.11.1
413
413
  wiki_uri: https://github.com/bblimke/webmock/wiki
414
414
  post_install_message:
415
415
  rdoc_options: []