aboutsummaryrefslogtreecommitdiff
path: root/lib/std
AgeCommit message (Collapse)Author
2025-07-26std.process.Child: fix double path normalization in spawnWindowslumanetic
besides simply being redundant work, the now removed normalize call would cause spawn to errantly fail (BadPath) when passing a relative path which traversed 'above' the current working directory. This case is already handled by leaving normalization to the windows.wToPrefixedFileW call in windowsCreateProcessPathExt
2025-07-25Merge pull request #24564 from ziglang/terminal-progress-barAndrew Kelley
std.Progress: support progress bar escape codes
2025-07-25Merge pull request #24559 from ziglang/zstdAndrew Kelley
std: rework zstd for new I/O API
2025-07-25Merge pull request #23340 from castholm/pass-null-to-b-dependencyAndrew Kelley
Add support for passing null, string literals, enum lists and more to `b.dependency()`
2025-07-25std.Progress: introduce StatusAndrew Kelley
2025-07-25std.Progress: support progress bar escape codesAndrew Kelley
2025-07-25std.posix.ftruncate: handle NonResizable properlyAndrew Kelley
2025-07-25std.compress.zstd.Decompress: fix bytes_written trackingAndrew Kelley
2025-07-25std.fs.File.end: account for streaming modeAndrew Kelley
2025-07-25std.compress.zstd: keep frame state between blocksAndrew Kelley
2025-07-25std.compress.zstd: fix endianness issueAndrew Kelley
instead of manually bitcast, use the handy dandy takeStruct function.
2025-07-25std.compress.zstd: respect the window lengthAndrew Kelley
2025-07-25std.Io: add "preserve" variants to Reader/WriterAndrew Kelley
2025-07-25std: rework zstd for new I/O APIAndrew Kelley
This passes tests but it doesn't provide as big a window size as is required to decompress larger streams. The next commit in this branch will work towards that, without introducing an additional buffer.
2025-07-23Merge pull request #24561 from linusg/serenity-fixesAndrew Kelley
Small fixes for SerenityOS
2025-07-23std.Io.poll: update to new I/O APIAndrew Kelley
2025-07-24std.posix: Fix ACCMODE values for serenityLinus Groh
2025-07-24std.c: Fix dirent.name size for serenityLinus Groh
The null terminator is added to the buffer size.
2025-07-23Merge pull request #24523 from ziglang/fifnoAndrew Kelley
std.tar: update to new I/O API
2025-07-22aarch64: add new from scratch self-hosted backendJacob Young
2025-07-22don't forget to advance in the deprecated adapterAndrew Kelley
2025-07-22std.tar: delete function redundant with std.memAndrew Kelley
2025-07-22std.tar.Writer: delete ill-advised APIAndrew Kelley
dependency on time is sus
2025-07-22std: fix deprecated writer not handling the bufferAndrew Kelley
2025-07-22give the Reader API adapter a bufferAndrew Kelley
it needs one or else it always asserts
2025-07-22std.tar.Writer: fix 32-bitAndrew Kelley
2025-07-22std.tar: update to new I/O APIAndrew Kelley
2025-07-22std.Io: add deprecation warningsAndrew Kelley
2025-07-22std.Io: delete FindByteWriterAndrew Kelley
dead
2025-07-22std.Io: delete ChangeDetectionStreamAndrew Kelley
dead code
2025-07-22std.Io: delete MultiWriterAndrew Kelley
nah
2025-07-22std.Io: delete BufferedAtomicFileAndrew Kelley
this is now redundant
2025-07-22std.Io: delete StreamSourceAndrew Kelley
it shan't be missed
2025-07-22std.Io: delete CWriterAndrew Kelley
it shan't be missed
2025-07-22std.fs.File.Reader.sendFile: fix 32-bit freebsdAndrew Kelley
2025-07-21std.fs.File.Reader.sendFile: fix EndOfStream detectionAndrew Kelley
2025-07-21std.fs.File.Reader: fix sendFile logicAndrew Kelley
it wasn't accounting for both writer and reader buffering
2025-07-21std.fs.File.Reader: fix seek position logicAndrew Kelley
2025-07-21std.fs.File.Reader: only fcopyfile if size availableAndrew Kelley
2025-07-21objcopy: delete most of itAndrew Kelley
this code is not up to zig project standards tracked by #24522 oh, and fix not adjusting buffer seek position in std.fs.File.Reader
2025-07-21std.fs.File: delete writeFileAll and friendsAndrew Kelley
please use File.Writer for these use cases also breaking API changes to std.fs.AtomicFile
2025-07-21std.json: delete dead APIAndrew Kelley
2025-07-21std.fs.File.Reader: fix missed advance writer positionsAndrew Kelley
2025-07-21std.Thread: don't spinAndrew Kelley
2025-07-20std.Io.Reader: fix takeStruct/peekStruct packedAndrew Kelley
closes #24516
2025-07-20Support passing `std.zig.BuildId` to `b.dependency()`Carl Åstholm
2025-07-20Support passing enum slices to `b.dependency()`Carl Åstholm
2025-07-20Coerce slice-like arguments passed to `b.dependency()`Carl Åstholm
You can now pass string literals as options.
2025-07-20Dupe string optionsCarl Åstholm
2025-07-20Serialize float options using the hexadecimal formatCarl Åstholm
This ensures no information is lost when the value is round-tripped.