Skip to content

Commit 99093c9

Browse files
Updated CHANGELOG.
1 parent ee8542d commit 99093c9

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

CHANGELOG-1.x.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
CHANGELOG for 1.4
2+
=================
3+
* [PR #90](https://github.com/yswery/PHP-DNS-SERVER/pull/90) Added the beginning of a cli interface for PhpDnsServer, and a filesystem config for loading all .json files from a zones directory.
4+
* [PR #93](https://github.com/yswery/PHP-DNS-SERVER/pull/93) Change private `Server` properties to protected.
5+
* [PR #98](https://github.com/yswery/PHP-DNS-SERVER/pull/98) Drop support for PHP 7.1.
6+
* [PR #99](https://github.com/yswery/PHP-DNS-SERVER/pull/99) New `BindResolver` class to add support for Bind9/named style records.
7+
* [PR #100](https://github.com/yswery/PHP-DNS-SERVER/pull/100) New logger subscriber that listens too all events.
8+
9+
CHANGELOG for 1.3
10+
=================
11+
* New specialised classes for encoding and decoding Rdata: `RdataEncoder` & `RdataDecoder`.
12+
* Upgrade to React Socket v1.2 and greater.
13+
* Add `ServerTerminator` subscriber.
14+
115
CHANGELOG for 1.2
216
=================
317
* New event `SERVER_START_FAIL` triggered when the server fails to start.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This class can be used to give DNS responses dynamically based on your pre-exist
1111

1212
## Requirements
1313

14-
* `PHP 7.1+`
14+
* `PHP 7.2+`
1515
* Needs either `sockets` or `socket_create` PHP extension loaded (which they are by default)
1616

1717
## Example
@@ -61,8 +61,8 @@ $ dig @127.0.0.1 test2.com A +short
6161
112.112.112.112
6262
```
6363
## Zone File Storage
64-
PHP DNS Server supports three zone file formats out-of-the-box: JSON, XML, and YAML; each file format
65-
is supported by a specialised `Resolver` class: `JsonResolver`, `XmlResolver`, and `YamlResolver`,
64+
PHP DNS Server supports four zone file formats out-of-the-box: Bind, JSON, XML, and YAML; each file format
65+
is supported by a specialised `Resolver` class: `BindResolver`, `JsonResolver`, `XmlResolver`, and `YamlResolver`,
6666
respectively. Example files are in the `example/` directory.
6767

6868
### JSON zone example

0 commit comments

Comments
 (0)