Skip to content

Commit 897190c

Browse files
committed
Merge branch 'release/3.0.1'
2 parents 092b12b + 99de420 commit 897190c

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
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)
@@ -119,6 +131,7 @@
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

@@ -133,7 +146,6 @@
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)

Source/WebMock.pas

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)