Bump Libuv to 1.51.0#767
Merged
Merged
Conversation
zhaozg
approved these changes
May 10, 2025
e86544b to
6877c1d
Compare
- 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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
https://github.com/libuv/libuv/releases/tag/v1.51.0
luvchanges:atime/mtimeparameters offs_utime/fs_futime/fs_lutimeaccept 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".All of the affected APIs currently don't have any tests and I haven't manually tested that my changes work as intended yet. Would like to add tests before merging (would probably be good to port the affected tests in this commit).
EDIT: Added
fs_utime/fs_futime/fs_lutimetestsCloses #766