Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update rust crate itertools to 0.13.0 #747

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 29, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
itertools dependencies minor 0.10.5 -> 0.13.0

Release Notes

rust-itertools/itertools (itertools)

v0.13.0

Compare Source

Breaking
  • Removed implementation of DoubleEndedIterator for ConsTuples (#​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 for ProcessResults (#​910)
  • Implemented Debug for FormatWith (#​931)
  • Added Itertools::get (#​891)
Changed
  • Deprecated Itertools::group_by (renamed chunk_by) (#​866, #​879)
  • Deprecated unfold (use std::iter::from_fn instead) (#​871)
  • Optimized GroupingMapBy (#​873, #​876)
  • Relaxed Fn bounds to FnMut in diff_with, Itertools::into_group_map_by (#​886)
  • Relaxed Debug/Clone bounds for MapInto (#​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 (renamed tree_reduce) (#​895)
  • Deprecated GroupingMap::fold_first (renamed reduce) (#​902)
  • Fixed Itertools::k_smallest(0) to consume the iterator, optimized Itertools::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 than i32::MAX (#​932)
  • Updated the must_use message of non-lazy KMergeBy and TupleCombinations (#​939)
Notable Internal Changes
  • Tested iterator laziness (#​792)
  • Created CONTRIBUTING.md (#​767)

v0.12.1

Compare Source

Added
  • Documented iteration order guarantee for Itertools::[tuple_]combinations (#​822)
  • Documented possible panic in iterate (#​842)
  • Implemented Clone and Debug for Diff (#​845)
  • Implemented Debug for WithPosition (#​859)
  • Implemented Eq for MinMaxResult (#​838)
  • Implemented From<EitherOrBoth<A, B>> for Option<Either<A, B>> (#​843)
  • Implemented PeekingNext for RepeatN (#​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 for GroupingMapBy (#​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

v0.12.0

Compare Source

Breaking
  • Made take_while_inclusive consume iterator by value (#​709)
  • Added Clone bound to Unique (#​777)
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>) to EitherOrBoth (#​713)
  • Added conversion from Either<A, B> to EitherOrBoth<A, B> (#​715)
  • Implemented ExactSizeIterator for Tuples (#​761)
  • Implemented ExactSizeIterator for (Circular)TupleWindows (#​752)
  • Made EitherOrBoth<T> a shorthand for EitherOrBoth<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 require alloc feature, instead of std (#​760)
  • Improved documentation of tree_fold1 (#​787)
  • Improved documentation of permutations (#​724)
  • Fixed typo in documentation of multiunzip (#​770)
Notable Internal Changes

v0.11.0

Compare Source

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 of Position<Item> (#​699)
Added
  • Add Itertools::take_while_inclusive (#​616)
  • Implement PeekingNext for PeekingTakeWhile (#​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 for CircularTupleWindows (#​686)
  • Implement Clone for Chunks (#​683)
  • Add Itertools::process_results (#​680)
Changed
  • Use Cell instead of RefCell in Format and FormatWith (#​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 with Iterator::eq (#​591)

Configuration

📅 Schedule: Branch creation - "every weekend" (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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/itertools-0.x branch 3 times, most recently from 39e68cc to 273b1a2 Compare November 2, 2023 17:20
@renovate renovate bot force-pushed the renovate/itertools-0.x branch 4 times, most recently from e8a97cd to 8681ff0 Compare November 13, 2023 18:29
@renovate renovate bot changed the title chore(deps): update rust crate itertools to 0.11.0 chore(deps): update rust crate itertools to 0.12.0 Nov 14, 2023
@renovate renovate bot force-pushed the renovate/itertools-0.x branch 2 times, most recently from f1086e4 to f374e2d Compare November 21, 2023 11:50
@renovate renovate bot force-pushed the renovate/itertools-0.x branch 3 times, most recently from 63a8cbe to 3f288a6 Compare November 27, 2023 17:06
@renovate renovate bot force-pushed the renovate/itertools-0.x branch 2 times, most recently from 1554e20 to f741b2c Compare December 4, 2023 13:32
Copy link
Contributor Author

renovate bot commented Dec 7, 2023

⚠ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path tools/cli/air/Cargo.toml --package itertools@0.10.5 --precise 0.12.1
    Updating crates.io index
error: failed to select a version for the requirement `itertools = "^0.10"`
candidate versions found which didn't match: 0.12.1
location searched: crates.io index
required by package `criterion v0.3.6`
    ... which satisfies dependency `criterion = "^0.3.3"` (locked to 0.3.6) of package `aquavm-air v0.63.0 (/tmp/renovate/repos/github/fluencelabs/aquavm/air)`
perhaps a crate was updated and forgotten to be re-vendored?

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/testing-framework/Cargo.toml --package itertools@0.10.5 --precise 0.12.1
    Updating crates.io index
error: failed to select a version for the requirement `itertools = "^0.10"`
candidate versions found which didn't match: 0.12.1
location searched: crates.io index
required by package `criterion v0.3.6`
    ... which satisfies dependency `criterion = "^0.3.3"` (locked to 0.3.6) of package `aquavm-air v0.63.0 (/tmp/renovate/repos/github/fluencelabs/aquavm/air)`
perhaps a crate was updated and forgotten to be re-vendored?

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/beautifier/Cargo.toml --package itertools@0.10.5 --precise 0.12.1
    Updating crates.io index
error: failed to select a version for the requirement `itertools = "^0.10"`
candidate versions found which didn't match: 0.12.1
location searched: crates.io index
required by package `criterion v0.3.6`
    ... which satisfies dependency `criterion = "^0.3.3"` (locked to 0.3.6) of package `aquavm-air v0.63.0 (/tmp/renovate/repos/github/fluencelabs/aquavm/air)`
perhaps a crate was updated and forgotten to be re-vendored?

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/air-lib/lambda/parser/Cargo.toml --package itertools@0.10.5 --precise 0.12.1
    Updating crates.io index
error: failed to select a version for the requirement `itertools = "^0.10"`
candidate versions found which didn't match: 0.12.1
location searched: crates.io index
required by package `criterion v0.3.6`
    ... which satisfies dependency `criterion = "^0.3.3"` (locked to 0.3.6) of package `aquavm-air v0.63.0 (/tmp/renovate/repos/github/fluencelabs/aquavm/air)`
perhaps a crate was updated and forgotten to be re-vendored?

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/air-lib/lambda/ast/Cargo.toml --package itertools@0.10.5 --precise 0.12.1
    Updating crates.io index
error: failed to select a version for the requirement `itertools = "^0.10"`
candidate versions found which didn't match: 0.12.1
location searched: crates.io index
required by package `criterion v0.3.6`
    ... which satisfies dependency `criterion = "^0.3.3"` (locked to 0.3.6) of package `aquavm-air v0.63.0 (/tmp/renovate/repos/github/fluencelabs/aquavm/air)`
perhaps a crate was updated and forgotten to be re-vendored?

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/air-lib/air-parser/Cargo.toml --package itertools@0.10.5 --precise 0.12.1
    Updating crates.io index
error: failed to select a version for the requirement `itertools = "^0.10"`
candidate versions found which didn't match: 0.12.1
location searched: crates.io index
required by package `criterion v0.3.6`
    ... which satisfies dependency `criterion = "^0.3.3"` (locked to 0.3.6) of package `aquavm-air v0.63.0 (/tmp/renovate/repos/github/fluencelabs/aquavm/air)`
perhaps a crate was updated and forgotten to be re-vendored?

@renovate renovate bot force-pushed the renovate/itertools-0.x branch 5 times, most recently from 31238e9 to 8911848 Compare December 12, 2023 17:17
@renovate renovate bot force-pushed the renovate/itertools-0.x branch 6 times, most recently from 043a65e to c9027fe Compare December 22, 2023 12:40
@renovate renovate bot force-pushed the renovate/itertools-0.x branch 3 times, most recently from 9b1d135 to 0dc4bd7 Compare December 25, 2023 21:58
@renovate renovate bot changed the title chore(deps): update rust crate itertools to 0.12.0 chore(deps): update rust crate itertools to 0.12.1 Jan 29, 2024
@renovate renovate bot force-pushed the renovate/itertools-0.x branch 3 times, most recently from d6ac1d9 to 3068f90 Compare February 5, 2024 07:59
@renovate renovate bot force-pushed the renovate/itertools-0.x branch 4 times, most recently from 812224b to 86e380e Compare February 20, 2024 11:39
@renovate renovate bot force-pushed the renovate/itertools-0.x branch 6 times, most recently from 447c387 to fd352bf Compare February 26, 2024 11:42
@renovate renovate bot force-pushed the renovate/itertools-0.x branch 5 times, most recently from 6225221 to 51142ac Compare April 18, 2024 10:26
@renovate renovate bot force-pushed the renovate/itertools-0.x branch from 51142ac to bfeb3b0 Compare May 5, 2024 11:22
@renovate renovate bot changed the title chore(deps): update rust crate itertools to 0.12.1 chore(deps): update rust crate itertools to 0.12.0 May 5, 2024
@renovate renovate bot force-pushed the renovate/itertools-0.x branch from bfeb3b0 to cfe55d4 Compare May 14, 2024 08:58
Copy link
Contributor Author

renovate bot commented May 14, 2024

⚠️ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path tools/cli/air/Cargo.toml --package itertools@0.10.5 --precise 0.13.0
    Updating crates.io index
error: failed to select a version for the requirement `itertools = "^0.10"`
candidate versions found which didn't match: 0.13.0
location searched: crates.io index
required by package `criterion v0.3.6`
    ... which satisfies dependency `criterion = "^0.3.3"` (locked to 0.3.6) of package `aquavm-air v0.63.0 (/tmp/renovate/repos/github/fluencelabs/aquavm/air)`
perhaps a crate was updated and forgotten to be re-vendored?

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/testing-framework/Cargo.toml --package itertools@0.10.5 --precise 0.13.0
    Updating crates.io index
error: failed to select a version for the requirement `itertools = "^0.10"`
candidate versions found which didn't match: 0.13.0
location searched: crates.io index
required by package `criterion v0.3.6`
    ... which satisfies dependency `criterion = "^0.3.3"` (locked to 0.3.6) of package `aquavm-air v0.63.0 (/tmp/renovate/repos/github/fluencelabs/aquavm/air)`
perhaps a crate was updated and forgotten to be re-vendored?

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/beautifier/Cargo.toml --package itertools@0.10.5 --precise 0.13.0
    Updating crates.io index
error: failed to select a version for the requirement `itertools = "^0.10"`
candidate versions found which didn't match: 0.13.0
location searched: crates.io index
required by package `criterion v0.3.6`
    ... which satisfies dependency `criterion = "^0.3.3"` (locked to 0.3.6) of package `aquavm-air v0.63.0 (/tmp/renovate/repos/github/fluencelabs/aquavm/air)`
perhaps a crate was updated and forgotten to be re-vendored?

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/air-lib/lambda/parser/Cargo.toml --package itertools@0.10.5 --precise 0.13.0
    Updating crates.io index
error: failed to select a version for the requirement `itertools = "^0.10"`
candidate versions found which didn't match: 0.13.0
location searched: crates.io index
required by package `criterion v0.3.6`
    ... which satisfies dependency `criterion = "^0.3.3"` (locked to 0.3.6) of package `aquavm-air v0.63.0 (/tmp/renovate/repos/github/fluencelabs/aquavm/air)`
perhaps a crate was updated and forgotten to be re-vendored?

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/air-lib/lambda/ast/Cargo.toml --package itertools@0.10.5 --precise 0.13.0
    Updating crates.io index
error: failed to select a version for the requirement `itertools = "^0.10"`
candidate versions found which didn't match: 0.13.0
location searched: crates.io index
required by package `criterion v0.3.6`
    ... which satisfies dependency `criterion = "^0.3.3"` (locked to 0.3.6) of package `aquavm-air v0.63.0 (/tmp/renovate/repos/github/fluencelabs/aquavm/air)`
perhaps a crate was updated and forgotten to be re-vendored?

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/air-lib/air-parser/Cargo.toml --package itertools@0.10.5 --precise 0.13.0
    Updating crates.io index
error: failed to select a version for the requirement `itertools = "^0.10"`
candidate versions found which didn't match: 0.13.0
location searched: crates.io index
required by package `criterion v0.3.6`
    ... which satisfies dependency `criterion = "^0.3.3"` (locked to 0.3.6) of package `aquavm-air v0.63.0 (/tmp/renovate/repos/github/fluencelabs/aquavm/air)`
perhaps a crate was updated and forgotten to be re-vendored?

@renovate renovate bot force-pushed the renovate/itertools-0.x branch from cfe55d4 to 7acbc7d Compare May 16, 2024 16:46
@renovate renovate bot changed the title chore(deps): update rust crate itertools to 0.12.0 chore(deps): update rust crate itertools to 0.13.0 May 16, 2024
@renovate renovate bot force-pushed the renovate/itertools-0.x branch 2 times, most recently from 3ba72d1 to 222311f Compare May 25, 2024 20:02
@renovate renovate bot force-pushed the renovate/itertools-0.x branch from 222311f to b6ff2b5 Compare May 25, 2024 20:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants