fix(imports): use node: built-in imports and remove dead smartpromise/smartdelay exports

This commit is contained in:
2026-02-11 15:57:37 +00:00
parent ec3440406f
commit 9c3f7acae8
8 changed files with 23 additions and 16 deletions

View File

@@ -1,5 +1,13 @@
# Changelog
## 2026-02-11 - 1.1.1 - fix(imports)
use node: built-in imports and remove dead smartpromise/smartdelay exports
- Replaced bare Node.js built-in imports with node: prefix in ts_server/plugins.ts, ts_client/plugins.ts, and tests (crypto, dgram) for ESM/Deno/Bun compatibility.
- Removed dead smartpromise and smartdelay exports from ts_client/plugins.ts (packages remain in package.json).
- Updated readme.hints.md to document node: import requirement, note removal of dead imports, and record the change date/notes.
- No functional API changes expected — this is a compatibility/cleanup patch.
## 2026-02-01 - 1.1.0 - feat(smartradius)
Implement full RADIUS server and client with RFC 2865/2866 compliance, including packet handling, authenticators, attributes, secrets manager, client APIs, and comprehensive tests and documentation