j2ghz / sdr-heatmap

Visualizes wireless spectrum scans generated by rtl_power
GNU Affero General Public License v3.0
22 stars 4 forks source link

Bump rayon from 1.5.0 to 1.6.0 #148

Open dependabot[bot] opened 1 year ago

dependabot[bot] commented 1 year ago

Bumps rayon from 1.5.0 to 1.6.0.

Changelog

Sourced from rayon's changelog.

Release rayon 1.6.0 / rayon-core 1.10.0 (2022-11-18)

  • The minimum supported rustc is now 1.56.
  • The new IndexedParallelIterator::fold_chunks and fold_chunks_with methods work like ParallelIterator::fold and fold_with with fixed-size chunks of items. This may be useful for predictable batching performance, without the allocation overhead of IndexedParallelIterator::chunks.
  • New "broadcast" methods run a given function on all threads in the pool. These run at a sort of reduced priority after each thread has exhausted their local work queue, but before they attempt work-stealing from other threads.
    • The global broadcast function and ThreadPool::broadcast method will block until completion, returning a Vec of all return values.
    • The global spawn_broadcast function and methods on ThreadPool, Scope, and ScopeFifo will run detached, without blocking the current thread.
  • Panicking methods now use #[track_caller] to report the caller's location.
  • Fixed a truncated length in vec::Drain when given an empty range.

Contributors

Thanks to all of the contributors for this release!

Release rayon 1.5.3 (2022-05-13)

  • The new ParallelSliceMut::par_sort_by_cached_key is a stable sort that caches the keys for each item -- a parallel version of slice::sort_by_cached_key.

Release rayon-core 1.9.3 (2022-05-13)

  • Fixed a use-after-free race in job notification.

Release rayon 1.5.2 / rayon-core 1.9.2 (2022-04-13)

  • The new ParallelSlice::par_rchunks() and par_rchunks_exact() iterate slice chunks in reverse, aligned the against the end of the slice if the length is not a perfect multiple of the chunk size. The new ParallelSliceMut::par_rchunks_mut() and par_rchunks_exact_mut() are the same for mutable slices.
  • The ParallelIterator::try_* methods now support std::ops::ControlFlow and

... (truncated)

Commits


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
coveralls commented 1 year ago

Coverage Status

Coverage increased (+1.8%) to 48.913% when pulling 7c943c6c05f365b950a9f055d30a3ac2e3e1b329 on dependabot/cargo/rayon-1.6.0 into 07041d4052b775a6814d0cc9bd363abe8dcbbafc on master.

codecov[bot] commented 1 year ago

Codecov Report

Merging #148 (7c943c6) into master (07041d4) will decrease coverage by 1.39%. The diff coverage is n/a.

@@            Coverage Diff             @@
##           master     #148      +/-   ##
==========================================
- Coverage   67.98%   66.58%   -1.40%     
==========================================
  Files           5        5              
  Lines         431      428       -3     
  Branches       86       84       -2     
==========================================
- Hits          293      285       -8     
- Misses         81       93      +12     
+ Partials       57       50       -7     
Impacted Files Coverage Δ
src/lib.rs 70.13% <0.00%> (-2.54%) :arrow_down:
src/main.rs 8.16% <0.00%> (+0.16%) :arrow_up:
src/palettes/mod.rs 81.63% <0.00%> (+2.04%) :arrow_up:

:mega: We’re building smart automated test selection to slash your CI/CD build times. Learn more