| Age | Commit message (Expand) | Author | Lines |
| 2025-02-17 | update version placeholders | Josh Stone | -2/+2 |
| 2025-02-14 | Forward all default methods for I/O impls | Thalia Archibald | -0/+62 |
| 2025-02-13 | Use `slice::fill` in `io::Repeat` implementation | DaniPopes | -18/+10 |
| 2025-02-12 | Rollup merge of #136945 - samueltardieu:push-rsqlyknnvyqm, r=fmease | Jacob Pratt | -0/+1 |
| 2025-02-12 | Add diagnostic item for `std::io::BufRead` | Samuel Tardieu | -0/+1 |
| 2025-02-10 | Implement `read*_exact` for `std:io::repeat` | Benoît du Garreau | -0/+11 |
| 2025-02-09 | Auto merge of #136751 - bjorn3:update_rustfmt, r=Mark-Simulacrum | bors | -3/+4 |
| 2025-02-08 | Rustfmt | bjorn3 | -3/+4 |
| 2025-02-08 | Rollup merge of #135696 - joboet:move_pal_io, r=Noratrieb | Matthias Krüger | -1/+1 |
| 2025-02-07 | std: get rid of `sys_common::io` | joboet | -1/+1 |
| 2025-02-06 | Stabilise 'Cursor::{get_mut, set_position}' in 'const' scenarios; | Gabriel Bjørnager Jensen | -2/+2 |
| 2025-01-26 | Test pipes also when not running on Windows and Linux simultaneously | Tobias Bucher | -1/+1 |
| 2025-01-26 | Update `std::io::{pipe, PipeReader, PipeWriter}` docs the new location | Tobias Bucher | -16/+20 |
| 2025-01-26 | Move `std::io::pipe` code into its own file | Tobias Bucher | -272/+277 |
| 2025-01-25 | Rollup merge of #135948 - bjorn3:update_emscripten_std_tests, r=Mark-Simulacrum | Jacob Pratt | -2/+1 |
| 2025-01-25 | Improve and expand documentation of pipes | Josh Triplett | -8/+14 |
| 2025-01-24 | Remove a bunch of emscripten test ignores | bjorn3 | -2/+0 |
| 2025-01-24 | Fix testing of the standard library with Emscripten | bjorn3 | -0/+1 |
| 2025-01-17 | Move `std::pipe::*` into `std::io` | Jiahao XU | -0/+266 |
| 2025-01-11 | Add inherent versions of MaybeUninit methods for slices | ltdk | -1/+1 |
| 2025-01-10 | Use `NonNull::without_provenance` within the standard library | Samuel Tardieu | -3/+4 |
| 2025-01-08 | update version placeholders | Pietro Albini | -2/+2 |
| 2024-12-21 | Avoid short writes in LineWriter | Chris Denton | -6/+21 |
| 2024-12-21 | Less unwrap() in documentation | Kornel | -10/+15 |
| 2024-12-06 | Rollup merge of #130254 - GrigorenkoPV:QuotaExceeded, r=dtolnay | Matthias Krüger | -9/+9 |
| 2024-12-06 | Rollup merge of #130209 - GrigorenkoPV:CrossesDevices, r=dtolnay | Matthias Krüger | -1/+1 |
| 2024-12-01 | add isatty alias for is_terminal | cod10129 | -0/+1 |
| 2024-11-26 | std: update internal uses of `io::const_error!` | joboet | -21/+21 |
| 2024-11-25 | std: expose `const_io_error!` as `const_error!` | joboet | -20/+36 |
| 2024-11-20 | Rollup merge of #130800 - bjoernager:const-mut-cursor, r=joshtriplett | Matthias Krüger | -2/+4 |
| 2024-11-14 | Rollup merge of #132790 - aDotInTheVoid:ioslice-asslice-rides-again, r=cuviper | Jubilee | -0/+59 |
| 2024-11-09 | Add as_slice/into_slice for IoSlice/IoSliceMut. | Alona Enraght-Moony | -0/+59 |
| 2024-11-08 | update io::Error::into_inner to acknowlage io::Error::other | binarycat | -2/+4 |
| 2024-10-23 | Specialize `read_exact` and `read_buf_exact` for `VecDeque` | Benoît du Garreau | -0/+46 |
| 2024-10-15 | replace placeholder version | Josh Stone | -17/+17 |
| 2024-10-10 | More clearly document Stdin::read_line | Tim (Theemathas) Chirananthavat | -1/+6 |
| 2024-10-05 | Unbreak tidy | Pavel Grigorenko | -5/+5 |
| 2024-10-05 | Stabilize `std::io::ErrorKind::QuotaExceeded` | Pavel Grigorenko | -5/+5 |
| 2024-10-04 | Stabilize `BufRead::skip_until` | okaneco | -3/+1 |
| 2024-10-02 | Add `get_line` confusable to `Stdin::read_line()` | Jaken Herman | -0/+1 |
| 2024-09-30 | Rollup merge of #130914 - compiler-errors:insignificant-dtor, r=Amanieu | Trevor Gross | -0/+1 |
| 2024-09-29 | Fix std tests for wasm32-wasip2 target | Nicola Krumschmidt | -5/+6 |
| 2024-09-28 | Rollup merge of #125404 - a1phyr:fix-read_buf-uses, r=workingjubilee | Matthias Krüger | -16/+88 |
| 2024-09-27 | Mark some more types as having insignificant dtor | Michael Goulet | -0/+1 |
| 2024-09-25 | Add tracking issue for io_error_inprogress | nora | -1/+1 |
| 2024-09-25 | Auto merge of #130803 - cuviper:file-buffered, r=joshtriplett | bors | -1/+29 |
| 2024-09-24 | Mark 'get_mut' and 'set_position' in 'std::io::Cursor' as const; | Gabriel Bjørnager Jensen | -2/+4 |
| 2024-09-24 | Pre-allocate buffers in `File::open_buffered` and `create_buffered` | Josh Stone | -1/+29 |
| 2024-09-24 | add InProgress ErrorKind gated behind io_error_inprogress feature | Aviram Hassan | -0/+7 |
| 2024-09-23 | Add a comment to `Read::read_buf` | Benoît du Garreau | -0/+2 |