Skip to content

Commit

Permalink
v1.8.5 - new IE resolver & increased timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
markSmurphy committed May 14, 2021
1 parent e12fdaf commit d1d8767
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [1.8.5] - May 11<sup>th</sup> 2021

### Changed

* Increased default timeout to `3500` milliseconds.
* Previously the default was `2500` which may have caused unnecessary timeouts when querying far away resolvers.
* Changed problematic resolver in Ireland to and new one sourced from [dnspropagation.net](https://dnspropagation.net/free-public-dns-servers/ie/).

---

## [1.8.4] - May 11<sup>th</sup> 2021

### Changed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ Resolvers are configured in an array with each resolver having a `nameServer` el
]
```

You can find a list of public DNS servers [here](https://public-dns.info/) and tailor the configured list for your own requirements.
You can find a list of public DNS servers [here](https://public-dns.info/) and [here](https://dnspropagation.net/free-public-dns-servers/), and tailor the configured list for your own requirements.

---

Expand Down
4 changes: 2 additions & 2 deletions distributed-dig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"request": {
"port": 53,
"type": "udp",
"timeout": 2500,
"timeout": 3500,
"try_edns": false,
"cache": false
},
Expand Down Expand Up @@ -77,7 +77,7 @@
"provider": "Israel"
},
{
"nameServer": "159.134.248.17",
"nameServer": "185.228.169.9",
"provider": "Ireland"
},
{
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "distributed-dig",
"version": "1.8.4",
"version": "1.8.5",
"description": "A utility which makes DNS lookup requests across multiple DNS resolvers and collates the results.",
"main": "distributed-dig.js",
"scripts": {
Expand Down

0 comments on commit d1d8767

Please sign in to comment.