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
add @fs.symlink for creating symbolic link and @fs.chmod for changing file permission
add @fs.read_at and @fs.write_at for reading/writing file at specific position, without modifying or depending on the global file pointer state. Seeking based API are deprecated in favor of read_at/write_at
bug fix:
fix incorrect behavior of @io.BufferedReader::find{_opt} when target pattern span across multiple chunks of data
fix @process.collect_output hanging on large stderr
some MacOS systems do not have fdatasync, so we avoid calling it on MacOS and use fsync instead