You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**LibUV ≥ 1.44.0** (required) - Fixes critical `UV_RUN_ONCE` busy loop issue that could cause high CPU usage
50
+
-**LibUV ≥ 1.45.0** (required) - Fixes critical `UV_RUN_ONCE` busy loop issue that could cause high CPU usage
51
51
52
-
### Why LibUV 1.44.0+ is Required
52
+
### Why LibUV 1.45.0+ is Required
53
53
54
54
Prior to libuv 1.44, there was a critical issue in `uv__io_poll()`/`uv__run_pending` logic that could cause the event loop to "stick" after the first callback when running in `UV_RUN_ONCE` mode, especially when new ready events appeared within callbacks. This resulted in:
55
55
@@ -95,17 +95,17 @@ The fix in libuv 1.44 ensures that `UV_RUN_ONCE` properly returns after processi
95
95
96
96
4. **Install LibUV:**:
97
97
98
-
**IMPORTANT:** LibUV version 1.44.0 or later is required.
98
+
**IMPORTANT:** LibUV version 1.45.0 or later is required.
99
99
100
100
For Debian/Ubuntu:
101
101
```bash
102
-
# Check if system libuv meets requirements (≥1.44.0)
102
+
# Check if system libuv meets requirements (≥1.45.0)
0 commit comments