File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 3.0.1] ( https://github.com/appercept/Delphi-WebMocks/tree/3.0.1 ) (2021-02-08)
4+
5+ [ Full Changelog] ( https://github.com/appercept/Delphi-WebMocks/compare/3.0.0...3.0.1 )
6+
7+ ** Fixed bugs:**
8+
9+ - Windows Defender Firewall prompts on first run [ \# 44] ( https://github.com/appercept/Delphi-WebMocks/issues/44 )
10+
11+ ** Merged pull requests:**
12+
13+ - Bind to localhost only [ \# 45] ( https://github.com/appercept/Delphi-WebMocks/pull/45 ) ([ rhatherall] ( https://github.com/rhatherall ) )
14+
315## [ 3.0.0] ( https://github.com/appercept/Delphi-WebMocks/tree/3.0.0 ) (2021-01-27)
416
517[ Full Changelog] ( https://github.com/appercept/Delphi-WebMocks/compare/2.0.0...3.0.0 )
119131- Add ` URLFor ` method [ \# 12] ( https://github.com/appercept/Delphi-WebMocks/issues/12 )
120132- Replace usages of Indy HTTP terms with terms used in the RFCs [ \# 11] ( https://github.com/appercept/Delphi-WebMocks/issues/11 )
121133- Request history logging [ \# 10] ( https://github.com/appercept/Delphi-WebMocks/issues/10 )
134+ - Request header matching by regular-expressions [ \# 5] ( https://github.com/appercept/Delphi-WebMocks/issues/5 )
122135
123136** Merged pull requests:**
124137
133146- Request content matching by regular-expressions [ \# 9] ( https://github.com/appercept/Delphi-WebMocks/issues/9 )
134147- Request content matching by value [ \# 8] ( https://github.com/appercept/Delphi-WebMocks/issues/8 )
135148- Response headers [ \# 7] ( https://github.com/appercept/Delphi-WebMocks/issues/7 )
136- - Request header matching by regular-expressions [ \# 5] ( https://github.com/appercept/Delphi-WebMocks/issues/5 )
137149- Request path matching by regular-expressions [ \# 4] ( https://github.com/appercept/Delphi-WebMocks/issues/4 )
138150- Delphi 10.3.2 is out [ \# 2] ( https://github.com/appercept/Delphi-WebMocks/issues/2 )
139151- Request header matching by value [ \# 1] ( https://github.com/appercept/Delphi-WebMocks/issues/1 )
Original file line number Diff line number Diff line change @@ -282,6 +282,7 @@ procedure TWebMock.StartServer(const APort: TWebWockPort);
282282 LPort := GetNextPort;
283283 Server.Bindings.Clear;
284284 LSocketHandle := Server.Bindings.Add;
285+ LSocketHandle.IP := ' 127.0.0.1' ;
285286 LSocketHandle.Port := LPort;
286287 try
287288 Server.Active := True;
You can’t perform that action at this time.
0 commit comments