pmcf 4.16.7 → 4.16.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "4.16.7",
3
+ "version": "4.16.9",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -54,7 +54,7 @@
54
54
  },
55
55
  "dependencies": {
56
56
  "content-entry-transform": "^1.6.4",
57
- "ip-utilties": "^2.0.3",
57
+ "ip-utilties": "^3.0.0",
58
58
  "npm-pkgbuild": "^20.5.1",
59
59
  "pacc": "^8.7.0",
60
60
  "package-directory": "^8.2.0"
@@ -264,7 +264,7 @@ export class KeaService extends Service {
264
264
  {
265
265
  name: family == 4 ? "domain-name-servers" : "dns-servers",
266
266
  data: dnsServerEndpoints
267
- .filter(endpoint => endpoint.family === `IPv${family}`)
267
+ .filter(endpoint => endpoint.family === `IPv${family}` && endpoint.type === 'dns')
268
268
  .map(endpoint => endpoint.address)
269
269
  .join(",")
270
270
  },
@@ -311,7 +311,7 @@ export class KeaService extends Service {
311
311
  return {
312
312
  name,
313
313
  "dns-servers": dnsServerEndpoints
314
- .filter(endpoint => endpoint.family === "IPv4")
314
+ .filter(endpoint => endpoint.family === "IPv4" && endpoint.type === 'dns')
315
315
  .map(endpoint => {
316
316
  return { "ip-address": endpoint.address };
317
317
  })