Commit 5aed641
committed
Bump Libuv to 1.51.0
- Adds the constants FS_UTIME_NOW and FS_UTIME_OMIT
- Makes the `atime`/`mtime` parameters of `fs_utime`/`fs_futime`/`fs_lutime` accept nil, a string, or a number. If nil, the argument is translated to FS_UTIME_OMIT. If a string, it must be "omit" or "now".
- Adds the constant TTY_MODE_RAW_VT ("raw_vt" is the shorthand string version)1 parent 891ba33 commit 5aed641
10 files changed
Lines changed: 307 additions & 40 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
| 6 | + | |
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| |||
- .github/workflows/CI-win.yml+1-2
- .readthedocs.yaml+1-1
- AUTHORS+12
- CMakeLists.txt+3-1
- ChangeLog+91-1
- LINKS.md+2
- Makefile.am+3-2
- README.md+1-3
- SUPPORTED_PLATFORMS.md+1-1
- configure.ac+2-2
- docs/code/plugin/main.c+5-6
- docs/src/fs.rst+6
- docs/src/index.rst+1-1
- docs/src/threading.rst+7
- docs/src/threadpool.rst+3-3
- docs/src/tty.rst+7-2
- include/uv.h+10-2
- include/uv/version.h+1-1
- include/uv/win.h+5-2
- src/fs-poll.c+1-1
- src/unix/aix.c+11-10
- src/unix/async.c+9-3
- src/unix/bsd-ifaddrs.c+14-13
- src/unix/core.c+36-14
- src/unix/fs.c+50-66
- src/unix/haiku.c+1-1
- src/unix/ibmi.c+12-9
- src/unix/internal.h+7-8
- src/unix/kqueue.c+10-5
- src/unix/linux.c+95-57
- src/unix/loop.c+6-2
- src/unix/openbsd.c+9-1
- src/unix/pipe.c+36-26
- src/unix/poll.c-1
- src/unix/process.c+15-2
- src/unix/signal.c+13-7
- src/unix/sunos.c+20-12
- src/unix/thread.c+2-2
- src/unix/tty.c+7
- src/unix/udp.c+20-4
- src/uv-common.h+24-1
- src/win/core.c+1-1
- src/win/fs.c+22-7
- src/win/process.c+12-2
- src/win/thread.c+26-2
- src/win/tty.c+59-21
- src/win/util.c+4-1
- src/win/winapi.h+1-10
- test/runner-unix.c+3-2
- test/runner-win.c+3-1
- test/runner.c+12-4
- test/runner.h+1-1
- test/test-connect-unspecified.c+3-7
- test/test-fs-event.c+2-2
- test/test-fs.c+223-42
- test/test-list.h+8-2
- test/test-loop-oom.c+62
- test/test-pipe-getsockname.c+2-2
- test/test-platform-output.c+18-15
- test/test-thread-name.c+4
- test/test-tty-duplicate-key.c+61-1
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
321 | 321 | | |
322 | 322 | | |
323 | 323 | | |
| 324 | + | |
| 325 | + | |
| 326 | + | |
| 327 | + | |
| 328 | + | |
324 | 329 | | |
325 | 330 | | |
326 | 331 | | |
| |||
617 | 622 | | |
618 | 623 | | |
619 | 624 | | |
| 625 | + | |
| 626 | + | |
| 627 | + | |
| 628 | + | |
620 | 629 | | |
621 | 630 | | |
622 | 631 | | |
| |||
3595 | 3604 | | |
3596 | 3605 | | |
3597 | 3606 | | |
3598 | | - | |
| 3607 | + | |
| 3608 | + | |
| 3609 | + | |
| 3610 | + | |
| 3611 | + | |
| 3612 | + | |
| 3613 | + | |
| 3614 | + | |
| 3615 | + | |
| 3616 | + | |
| 3617 | + | |
3599 | 3618 | | |
3600 | 3619 | | |
3601 | | - | |
3602 | | - | |
| 3620 | + | |
| 3621 | + | |
3603 | 3622 | | |
3604 | 3623 | | |
3605 | 3624 | | |
3606 | 3625 | | |
3607 | 3626 | | |
3608 | 3627 | | |
3609 | 3628 | | |
3610 | | - | |
| 3629 | + | |
| 3630 | + | |
| 3631 | + | |
| 3632 | + | |
| 3633 | + | |
| 3634 | + | |
| 3635 | + | |
| 3636 | + | |
| 3637 | + | |
| 3638 | + | |
| 3639 | + | |
3611 | 3640 | | |
3612 | 3641 | | |
3613 | | - | |
3614 | | - | |
| 3642 | + | |
| 3643 | + | |
3615 | 3644 | | |
3616 | 3645 | | |
3617 | 3646 | | |
3618 | 3647 | | |
3619 | 3648 | | |
3620 | 3649 | | |
3621 | 3650 | | |
3622 | | - | |
| 3651 | + | |
| 3652 | + | |
| 3653 | + | |
| 3654 | + | |
| 3655 | + | |
| 3656 | + | |
| 3657 | + | |
| 3658 | + | |
| 3659 | + | |
| 3660 | + | |
| 3661 | + | |
3623 | 3662 | | |
3624 | 3663 | | |
3625 | | - | |
3626 | | - | |
| 3664 | + | |
| 3665 | + | |
3627 | 3666 | | |
3628 | 3667 | | |
3629 | 3668 | | |
| |||
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
355 | 355 | | |
356 | 356 | | |
357 | 357 | | |
| 358 | + | |
| 359 | + | |
| 360 | + | |
| 361 | + | |
358 | 362 | | |
359 | 363 | | |
360 | 364 | | |
| |||
370 | 374 | | |
371 | 375 | | |
372 | 376 | | |
| 377 | + | |
| 378 | + | |
| 379 | + | |
| 380 | + | |
| 381 | + | |
| 382 | + | |
| 383 | + | |
373 | 384 | | |
374 | 385 | | |
375 | 386 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
779 | 779 | | |
780 | 780 | | |
781 | 781 | | |
| 782 | + | |
| 783 | + | |
| 784 | + | |
| 785 | + | |
| 786 | + | |
| 787 | + | |
| 788 | + | |
| 789 | + | |
| 790 | + | |
| 791 | + | |
| 792 | + | |
| 793 | + | |
| 794 | + | |
| 795 | + | |
782 | 796 | | |
783 | 797 | | |
784 | 798 | | |
785 | | - | |
786 | | - | |
| 799 | + | |
| 800 | + | |
787 | 801 | | |
788 | 802 | | |
789 | 803 | | |
| |||
793 | 807 | | |
794 | 808 | | |
795 | 809 | | |
796 | | - | |
797 | | - | |
| 810 | + | |
| 811 | + | |
798 | 812 | | |
799 | 813 | | |
800 | 814 | | |
| |||
805 | 819 | | |
806 | 820 | | |
807 | 821 | | |
808 | | - | |
809 | | - | |
| 822 | + | |
| 823 | + | |
810 | 824 | | |
811 | 825 | | |
812 | 826 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
43 | 46 | | |
| 47 | + | |
44 | 48 | | |
45 | 49 | | |
46 | 50 | | |
47 | 51 | | |
48 | 52 | | |
49 | 53 | | |
50 | 54 | | |
51 | | - | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
52 | 59 | | |
53 | 60 | | |
54 | 61 | | |
| |||
0 commit comments