@matterbridge/dgram 3.5.5-dev-20260216-344e77b → 3.5.5-dev-20260218-c73df27

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/dist/coap.js CHANGED
@@ -229,7 +229,7 @@ export class Coap extends Multicast {
229
229
  }
230
230
  else if (option.number === COIOT_OPTION_VALIDITY) {
231
231
  const validity = option.value.readUInt16BE(0);
232
- let validFor = 0;
232
+ let validFor;
233
233
  if ((validity & 0x1) === 0) {
234
234
  validFor = Math.floor(validity / 10);
235
235
  }
package/dist/mdns.js CHANGED
@@ -366,7 +366,7 @@ export class Mdns extends Multicast {
366
366
  offset += 4;
367
367
  const rdlength = msg.readUInt16BE(offset);
368
368
  offset += 2;
369
- let data = '';
369
+ let data;
370
370
  if (type === 12) {
371
371
  const ptrResult = this.decodeDnsName(msg, offset);
372
372
  data = ptrResult.name;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matterbridge/dgram",
3
- "version": "3.5.5-dev-20260216-344e77b",
3
+ "version": "3.5.5-dev-20260218-c73df27",
4
4
  "description": "Matterbridge dgram library",
5
5
  "author": "https://github.com/Luligu",
6
6
  "homepage": "https://matterbridge.io/",
@@ -61,7 +61,11 @@
61
61
  "CHANGELOG.md"
62
62
  ],
63
63
  "dependencies": {
64
- "@matterbridge/jest-utils": "3.5.5-dev-20260216-344e77b",
64
+ "@matterbridge/jest-utils": "3.5.5-dev-20260218-c73df27",
65
65
  "node-ansi-logger": "3.2.0"
66
+ },
67
+ "overrides": {
68
+ "eslint": "10.0.0",
69
+ "@eslint/js": "10.0.1"
66
70
  }
67
71
  }