⚠️ Important
1.4.x is the last version line supporting Moleculer 0.14.
🐛 Fix
- Alias regeneration throttle: the 10s throttle was placed on the
regenerateOpenApiPathsaction, but Moleculer only supportsthrottleon events (not actions) — it was a no-op. Every$api.aliases.regeneratedevent therefore triggered a path regeneration ($node.servicesround-trip), which could cause chain reactions when services join/leave in bursts. The throttle now lives on the$api.aliases.regeneratedevent (native Moleculer event throttle) and stays enabled by default.