| Age | Commit message (Expand) | Author | Lines |
| 2025-07-30 | Implement push_mut | Balt | -11/+85 |
| 2025-05-21 | std: fix doctest and explain for as_slices and as_mut_slices in VecDeque | xizheyin | -5/+28 |
| 2025-05-05 | Implement `VecDeque::truncate_front()` | Vladimir Krivopalov | -0/+67 |
| 2025-03-07 | Fully test the alloc crate through alloctests | bjorn3 | -0/+1 |
| 2025-01-25 | [Clippy] Add vec_reserve & vecdeque_reserve diagnostic items | wowinter13 | -0/+1 |
| 2025-01-22 | Implement `VecDeque::pop_front_if` & `VecDeque::pop_back_if` | Pavel Grigorenko | -0/+46 |
| 2024-12-14 | Add clarity to the "greater" of `VecDeque::insert` | tkirishima | -1/+1 |
| 2024-12-14 | Replace i32 by char to add clarity | tkirishima | -9/+12 |
| 2024-10-16 | Fix predicate signatures in retain_mut docs | Collin O'Connor | -1/+1 |
| 2024-10-14 | Auto merge of #126557 - GrigorenkoPV:vec_track_caller, r=joboet | bors | -0/+24 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -1/+1 |
| 2024-09-20 | Add `#[track_caller]` to allocating methods of `Vec` & `VecDeque` | Pavel Grigorenko | -0/+24 |
| 2024-09-18 | [Clippy] Swap `manual_retain` to use diagnostic items instead of paths | GnomedDev | -0/+1 |
| 2024-09-08 | add FIXME(const-hack) | Ralf Jung | -2/+2 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -8/+4 |
| 2024-07-07 | Specialize `TrustedLen` for `Iterator::unzip()` | Chayim Refael Friedman | -0/+30 |
| 2024-05-07 | Fix `VecDeque::shrink_to` UB when `handle_alloc_error` unwinds. | Markus Everling | -1/+65 |
| 2024-04-17 | Rollup merge of #122201 - coolreader18:doc-clone_from, r=dtolnay | Matthias Krüger | -2/+6 |
| 2024-04-17 | Address comments | Noa | -3/+1 |
| 2024-04-08 | Add invariant to VecDeque::pop_* that len < cap if pop successful | Philippe-Cholet | -2/+8 |
| 2024-04-02 | Auto merge of #122945 - andy-k:sorted-vec-example, r=jhpratt | bors | -2/+4 |
| 2024-03-28 | Rename reserve_for_push to grow_one and fix comment. | Cai Bear | -1/+1 |
| 2024-03-28 | Fix previous. | Cai Bear | -1/+2 |
| 2024-03-28 | Remove len argument from RawVec::reserve_for_push because it's always equal t... | Cai Bear | -3/+2 |
| 2024-03-24 | clarify equivalency of binary_search and partition_point | Andy Kurnia | -1/+3 |
| 2024-03-23 | improve example on inserting to a sorted vector to avoid shifting equal elements | Andy Kurnia | -1/+1 |
| 2024-03-08 | Document overrides of `clone_from()` | Noa | -2/+8 |
| 2024-03-01 | try_with_capacity for Vec, VecDeque, String | Kornel | -0/+24 |
| 2024-02-22 | Add `rustc_confusables` annotations to some stdlib APIs | Esteban Küber | -0/+5 |
| 2024-02-15 | Fix typo in VecDeque::handle_capacity_increase() doc comment. | Johannes Lade | -4/+4 |
| 2023-12-21 | fix minor mistake in comments describing VecDeque resizing | Kent Ross | -4/+4 |
| 2023-09-16 | edit `std::collections::VecDeque` docs | mxnkarou | -2/+2 |
| 2023-07-13 | Rename VecDeque's rotate_left and rotate_right parameters | Pedro Lobo | -23/+23 |
| 2023-04-28 | Make sure that signatures aren't accidental refinements | Michael Goulet | -1/+1 |
| 2023-04-12 | remove some unneeded imports | KaDiWa | -1/+1 |
| 2023-03-30 | Rollup merge of #106985 - jofas:106746-fix, r=ChrisDenton | Yuki Okushi | -10/+10 |
| 2023-03-30 | removed deprecated markdown links from documentation | jofas | -3/+0 |
| 2023-03-29 | enhanced documentation of binary search methods for slice and VecDeque for un... | jofas | -7/+10 |
| 2023-03-11 | Rollup merge of #106276 - Sp00ph:unify_slice_ranges, r=the8472 | Matthias Krüger | -9/+18 |
| 2023-03-01 | Rollup merge of #108462 - pommicket:fix-vecdeque-zst-overflow, r=Amanieu | Dylan DPC | -1/+1 |
| 2023-02-26 | Disambiguate comments | Markus Everling | -2/+2 |
| 2023-02-26 | Fix `VecDeque::shrink_to` and add tests. | Markus Everling | -55/+62 |
| 2023-02-25 | Use checked_add in VecDeque::append for ZSTs to avoid overflow | pommicket | -1/+1 |
| 2023-02-20 | Changes according to review | Markus Everling | -5/+4 |
| 2023-02-05 | Add `slice_ranges` safety comment | Markus Everling | -0/+8 |
| 2023-01-31 | Fix `vec_deque::Drain` FIXME | Markus Everling | -8/+10 |
| 2023-01-25 | Set version placeholders to 1.68 | Mark Rousskov | -1/+1 |
| 2023-01-08 | Rollup merge of #106562 - clubby789:vec-deque-example, r=Mark-Simulacrum | Yuki Okushi | -1/+3 |
| 2023-01-07 | Rollup merge of #105128 - Sp00ph:vec_vec_deque_conversion, r=dtolnay | Matthias Krüger | -3/+3 |
| 2023-01-07 | Clarify examples for `VecDeque::get/get_mut` | clubby789 | -1/+3 |