lua-analyzer
lua-analyzer copied to clipboard
Update Rust crate itertools to 0.13.0
This PR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
itertools | dependencies | minor | 0.10.0 -> 0.13.0 |
Release Notes
rust-itertools/itertools (itertools)
v0.13.0
Breaking
- Removed implementation of
DoubleEndedIterator
forConsTuples
(#853) - Made
MultiProduct
fused and fixed on an empty iterator (#835, #834) - Changed
iproduct!
to return tuples for maxi one iterator too (#870) - Changed
PutBack::put_back
to return the old value (#880) - Removed deprecated
repeat_call, Itertools::{foreach, step, map_results, fold_results}
(#878) - Removed
TakeWhileInclusive::new
(#912)
Added
- Added
Itertools::{smallest_by, smallest_by_key, largest, largest_by, largest_by_key}
(#654, #885) - Added
Itertools::tail
(#899) - Implemented
DoubleEndedIterator
forProcessResults
(#910) - Implemented
Debug
forFormatWith
(#931) - Added
Itertools::get
(#891)
Changed
- Deprecated
Itertools::group_by
(renamedchunk_by
) (#866, #879) - Deprecated
unfold
(usestd::iter::from_fn
instead) (#871) - Optimized
GroupingMapBy
(#873, #876) - Relaxed
Fn
bounds toFnMut
indiff_with, Itertools::into_group_map_by
(#886) - Relaxed
Debug/Clone
bounds forMapInto
(#889) - Documented the
use_alloc
feature (#887) - Optimized
Itertools::set_from
(#888) - Removed badges in
README.md
(#890) - Added "no-std" categories in
Cargo.toml
(#894) - Fixed
Itertools::k_smallest
on short unfused iterators (#900) - Deprecated
Itertools::tree_fold1
(renamedtree_reduce
) (#895) - Deprecated
GroupingMap::fold_first
(renamedreduce
) (#902) - Fixed
Itertools::k_smallest(0)
to consume the iterator, optimizedItertools::k_smallest(1)
(#909) - Specialized
Combinations::nth
(#914) - Specialized
MergeBy::fold
(#920) - Specialized
CombinationsWithReplacement::nth
(#923) - Specialized
FlattenOk::{fold, rfold}
(#927) - Specialized
Powerset::nth
(#924) - Documentation fixes (#882, #936)
- Fixed
assert_equal
for iterators longer thani32::MAX
(#932) - Updated the
must_use
message of non-lazyKMergeBy
andTupleCombinations
(#939)
Notable Internal Changes
v0.12.1
Added
- Documented iteration order guarantee for
Itertools::[tuple_]combinations
(#822) - Documented possible panic in
iterate
(#842) - Implemented
Clone
andDebug
forDiff
(#845) - Implemented
Debug
forWithPosition
(#859) - Implemented
Eq
forMinMaxResult
(#838) - Implemented
From<EitherOrBoth<A, B>>
forOption<Either<A, B>>
(#843) - Implemented
PeekingNext
forRepeatN
(#855)
Changed
- Made
CoalesceBy
lazy (#801) - Optimized
Filter[Map]Ok::next
,Itertools::partition
,Unique[By]::next[_back]
(#818) - Optimized
Itertools::find_position
(#837) - Optimized
Positions::next[_back]
(#816) - Optimized
ZipLongest::fold
(#854) - Relaxed
Debug
bounds forGroupingMapBy
(#860) - Specialized
ExactlyOneError::fold
(#826) - Specialized
Interleave[Shortest]::fold
(#849) - Specialized
MultiPeek::fold
(#820) - Specialized
PadUsing::[r]fold
(#825) - Specialized
PeekNth::fold
(#824) - Specialized
Positions::[r]fold
(#813) - Specialized
PutBackN::fold
(#823) - Specialized
RepeatN::[r]fold
(#821) - Specialized
TakeWhileInclusive::fold
(#851) - Specialized
ZipLongest::rfold
(#848)
Notable Internal Changes
- Added test coverage in CI (#847, #856)
- Added semver check in CI (#784)
- Enforced
clippy
in CI (#740) - Enforced
rustdoc
in CI (#840) - Improved specialization tests (#807)
- More specialization benchmarks (#806)
v0.12.0
Breaking
Added
- Added
Itertools::try_len
(#723) - Added free function
sort_unstable
(#796) - Added
GroupMap::fold_with
(#778, #785) - Added
PeekNth::{peek_mut, peek_nth_mut}
(#716) - Added
PeekNth::{next_if, next_if_eq}
(#734) - Added conversion into
(Option<A>,Option<B>)
toEitherOrBoth
(#713) - Added conversion from
Either<A, B>
toEitherOrBoth<A, B>
(#715) - Implemented
ExactSizeIterator
forTuples
(#761) - Implemented
ExactSizeIterator
for(Circular)TupleWindows
(#752) - Made
EitherOrBoth<T>
a shorthand forEitherOrBoth<T, T>
(#719)
Changed
- Added missing
#[must_use]
annotations on iterator adaptors (#794) - Made
Combinations
lazy (#795) - Made
Intersperse(With)
lazy (#797) - Made
Permutations
lazy (#793) - Made
Product
lazy (#800) - Made
TupleWindows
lazy (#602) - Specialized
Combinations::{count, size_hint}
(#729) - Specialized
CombinationsWithReplacement::{count, size_hint}
(#737) - Specialized
Powerset::fold
(#765) - Specialized
Powerset::count
(#735) - Specialized
TupleCombinations::{count, size_hint}
(#763) - Specialized
TupleCombinations::fold
(#775) - Specialized
WhileSome::fold
(#780) - Specialized
WithPosition::fold
(#772) - Specialized
ZipLongest::fold
(#774) - Changed
{min, max}_set*
operations requirealloc
feature, instead ofstd
(#760) - Improved documentation of
tree_fold1
(#787) - Improved documentation of
permutations
(#724) - Fixed typo in documentation of
multiunzip
(#770)
Notable Internal Changes
- Improved specialization tests (#799, #786, #782)
- Simplified implementation of
Permutations
(#739, #748, #790) - Combined
Merge
/MergeBy
/MergeJoinBy
implementations (#736) - Simplified
Permutations::size_hint
(#739) - Fix wrapping arithmetic in benchmarks (#770)
- Enforced
rustfmt
in CI (#751) - Disallowed compile warnings in CI (#720)
- Used
cargo hack
to check MSRV (#754)
v0.11.0
Breaking
- Make
Itertools::merge_join_by
also accept functions returning bool (#704) - Implement
PeekingNext
transitively over mutable references (#643) - Change
with_position
to yield(Position, Item)
instead ofPosition<Item>
(#699)
Added
- Add
Itertools::take_while_inclusive
(#616) - Implement
PeekingNext
forPeekingTakeWhile
(#644) - Add
EitherOrBoth::{just_left, just_right, into_left, into_right, as_deref, as_deref_mut, left_or_insert, right_or_insert, left_or_insert_with, right_or_insert_with, insert_left, insert_right, insert_both}
(#629) - Implement
Clone
forCircularTupleWindows
(#686) - Implement
Clone
forChunks
(#683) - Add
Itertools::process_results
(#680)
Changed
- Use
Cell
instead ofRefCell
inFormat
andFormatWith
(#608) - CI tweaks (#674, #675)
- Document and test the difference between stable and unstable sorts (#653)
- Fix documentation error on
Itertools::max_set_by_key
(#692) - Move MSRV metadata to
Cargo.toml
(#672) - Implement
equal
withIterator::eq
(#591)
v0.10.5
- Maintenance
v0.10.4
- Add
EitherOrBoth::or
andEitherOrBoth::or_else
(#593)
v0.10.3
- Maintenance
v0.10.1
- Add
Itertools::contains
(#514)- Add
Itertools::counts_by
(#515) - Add
Itertools::partition_result
(#511) - Add
Itertools::all_unique
(#241) - Add
Itertools::duplicates
andItertools::duplicates_by
(#502) - Add
chain!
(#525) - Add
Itertools::at_most_one
(#523) - Add
Itertools::flatten_ok
(#527) - Add
EitherOrBoth::or_default
(#583) - Add
Itertools::find_or_last
andItertools::find_or_first
(#535) - Implement
FusedIterator
forFilterOk
,FilterMapOk
,InterleaveShortest
,KMergeBy
,MergeBy
,PadUsing
,Positions
,Product
,RcIter
,TupleWindows
,Unique
,UniqueBy
,Update
,WhileSome
,Combinations
,CombinationsWithReplacement
,Powerset
,RepeatN
, andWithPosition
(#550) - Implement
FusedIterator
forInterleave
,IntersperseWith
, andZipLongest
(#548)
- Add
Configuration
📅 Schedule: Branch creation - "before 3am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.