File tree 3 files changed +51
-1
lines changed
3 files changed +51
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+
4
+ ## 1.12.0
5
+
6
+ * Not using Gem spec anymore to check loaded Curb version.
7
+
8
+ * ` WebMock.disable_net_connect! ` now accepts array of regexps as allow param:
9
+
10
+ i.e. ` WebMock.disable_net_connect!(:allow => [/google.com/, /yahoo.com/]) `
11
+
12
+ Thanks to [ Bastien Vaucher] ( https://github.com/bastien )
13
+
14
+ * Fixed ` on_header ` Curb callback behaviour in Curb adapter
15
+
16
+ Thanks to [ Joel Chippindale] ( https://github.com/mocoso )
17
+
18
+ * Fixed aws-sdk compatibility with Ruby 2.0, by supporting ` continue_timeout ` accessor on Net::HTTP socket.
19
+
20
+ Thanks to [ Lin Jen-Shin] ( https://github.com/godfat )
21
+
22
+ * Fixed WebMock::Server to not give "log writing failed. can't be called from trap context" warning with Ruby 2.0
23
+
24
+ Thanks to [ Murahashi Sanemat Kenichi] ( https://github.com/sanemat )
25
+
26
+ * Added support for EM-HTTP-Request streaming data off disk feature.
27
+
28
+ Thanks to [ Lin Jen-Shin] ( https://github.com/godfat )
29
+
30
+ * Added compatibility with Minitest 5
31
+
32
+ Thanks to [ Tim Kurvers] ( https://github.com/timkurvers )
33
+
34
+ * Excon >= 0.22 compatibility.
35
+
36
+ * README has nice sytnax hightlighting and fixed code styling!
37
+
38
+ Thanks to [ Ilya Vassilevsky] ( https://github.com/vassilevsky )
39
+
40
+ * Compatibility with Rails 4 ` rack.session.options `
41
+
42
+ Thanks to [ gotwalt] ( https://github.com/gotwalt )
43
+
3
44
## 1.11.0
4
45
5
46
* Excon >= 0.17 support.
Original file line number Diff line number Diff line change @@ -430,6 +430,8 @@ RestClient.get('www.example.org:8080', '/') # ===> Allowed
430
430
431
431
WebMock .disable_net_connect!(:allow => /ample.org/ )
432
432
433
+ WebMock .disable_net_connect!(:allow => [/ample.org/ , /googl/ ])
434
+
433
435
RestClient .get(' www.example.org' , ' /' ) # ===> Allowed
434
436
```
435
437
@@ -838,6 +840,13 @@ People who submitted patches and new features or suggested improvements. Many th
838
840
* Mokevnin Kirill
839
841
* Alex Grant
840
842
* Lucas Dohmen
843
+ * Bastien Vaucher
844
+ * Joost Baaij
845
+ * Joel Chippindale
846
+ * Murahashi Sanemat Kenichi
847
+ * Tim Kurvers
848
+ * Ilya Vassilevsky
849
+ * gotwalt
841
850
842
851
For a full list of contributors you can visit the
843
852
[ contributors] ( https://github.com/bblimke/webmock/contributors ) page.
Original file line number Diff line number Diff line change 1
1
module WebMock
2
- VERSION = '1.11 .0' unless defined? ( ::WebMock ::VERSION )
2
+ VERSION = '1.12 .0' unless defined? ( ::WebMock ::VERSION )
3
3
end
You can’t perform that action at this time.
0 commit comments