net-snmp 3.29.0 → 3.29.1

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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -3808,6 +3808,10 @@ Example programs are included under the module's `example` directory.
3808
3808
 
3809
3809
  * Translate error statuses to their SNMPv1 equivalents when the agent responds to a version 1 request, using the mapping in RFC 2089 section 2.1 - the agent produces statuses from the SNMPv2 set whatever version it is answering, and previously sent codes such as `noAccess` and `notWritable` to SNMPv1 managers unchanged, even though SNMPv1 defines no such values. A SetRequest for a read-only object now returns `noSuchName` to an SNMPv1 manager
3810
3810
 
3811
+ # Version 3.29.1 - 13/09/2026
3812
+
3813
+ * Upgrade the Mocha test framework to version 12, clearing the outstanding `serialize-javascript` and `diff` security advisories from the dependency tree - both were development-only transitive dependencies of the test toolchain and were never part of the published package, so no user of the library was exposed. Running the test suite now requires Node.js `^20.19.0 || >=22.12.0`; the library itself is unaffected
3814
+
3811
3815
  # License
3812
3816
 
3813
3817
  Copyright (c) 2020 Mark Abrahams <mark@abrahams.co.nz>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "net-snmp",
3
- "version": "3.29.0",
3
+ "version": "3.29.1",
4
4
  "description": "JavaScript implementation of the Simple Network Management Protocol (SNMP)",
5
5
  "author": "Mark Abrahams <mark@abrahams.co.nz>",
6
6
  "license": "MIT",
@@ -58,6 +58,6 @@
58
58
  "devDependencies": {
59
59
  "eslint": "^9.9.1",
60
60
  "getopts": "^2.3.0",
61
- "mocha": "^11.0.1"
61
+ "mocha": "^12.0.1"
62
62
  }
63
63
  }