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

Bump the cargo-minor-and-patch group across 1 directory with 8 updates #7

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

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Sep 15, 2024

Bumps the cargo-minor-and-patch group with 8 updates in the / directory:

Package From To
log 0.4.19 0.4.22
tracy-client 0.16.4 0.17.3
cxx 1.0.97 1.0.112
base64 0.13.1 0.22.1
rustc-simple-version 0.1.0 0.1.1
petgraph 0.6.4 0.6.5
toml 0.7.8 0.8.8
itertools 0.11.0 0.13.0

Updates log from 0.4.19 to 0.4.22

Changelog

Sourced from log's changelog.

[0.4.22] - 2024-06-27

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.21...0.4.22

[0.4.21] - 2024-02-27

What's Changed

New Contributors

... (truncated)

Commits
  • d5ba2cf Merge pull request #634 from rust-lang/cargo/0.4.22
  • d1a8306 prepare for 0.4.22 release
  • 46894ef Merge pull request #633 from rust-lang/feat/panic-info
  • e0d389c Merge pull request #632 from rust-lang/feat/loosen-atomics
  • c9e5e13 use Location::caller() for file and line info
  • 507b672 loosen orderings for logger initialization
  • c879b01 Merge pull request #628 from Thomasdezeeuw/fix-warnings
  • 405fdb4 Merge pull request #627 from Thomasdezeeuw/check-features
  • 1307ade Remove unneeded import
  • 710560e Don't use --all-features in CI
  • Additional commits viewable in compare view

Updates tracy-client from 0.16.4 to 0.17.3

Commits
  • fee9103 Update Tracy client bindings to v0.11.1
  • 953bfe0 fix versioning
  • 6f161b5 Bump versions
  • 2dd3458 Invert text on verify to avoid indirection by negation.
  • 57896f6 invert features from no-verify -> verify
  • 0a430f4 put TRACY_NO_VERIFY behind a feature
  • 09134ed Perf: Disable TRACY_NO_VERIFY to reduce instrumentation overhead
  • 0988287 bump tested lower version due to dependency bump
  • 50cd2a5 Fixup version bumps and code changes
  • b17a64f Update Tracy client bindings to v0.11.0
  • Additional commits viewable in compare view

Updates cxx from 1.0.97 to 1.0.112

Release notes

Sourced from cxx's releases.

1.0.112

  • Documentation improvements

1.0.111

  • Avoid a new pedantic clippy lint from being triggered inside generated code

1.0.110

  • Prevent unsafe_op_in_unsafe_fn opt-in lint from being triggered inside generated code (#1281)

1.0.109

1.0.108

  • Support running cxx's build script from outside of cxx's manifest directory (#1275, thanks @​illicitonion)
  • Fix clippy lint in generated PartialOrd impls

1.0.107

1.0.106

  • Fix "No such file or directory" error when building using --target-dir with a directory path that contains symlinks (#1260)

1.0.105

  • Add experimental Bazel annotations in package metadata

1.0.104

  • Fix "failed to copy cxx.h" errors during Cargo build script execution on Windows (#1252)

1.0.103

  • Prefer relative paths in symlinks where possible to make target directories relocatable (#1250, #1251, thanks @​j-baker)

1.0.102

  • Documentation improvements

1.0.101

  • Fix clippy::incorrect_partial_ord_impl_on_ord_type lint getting triggered inside of cxx::bridge's macro-generated code

1.0.100

  • Prevent items_after_statements pedantic clippy lint from triggering inside generated code (#1242)

1.0.99

1.0.98

  • Documentation improvements
Commits
  • 5ae6298 Release 1.0.112
  • 9e7e729 Update gitignore for reindeer vendored registry
  • 5c6e853 Lockfile update
  • 381ed58 Bazel rules_rust 0.36.1
  • a02447a Merge pull request #1296 from dtolnay/doccfg
  • 3d6cc92 Restore documented cfg on cxx::Exception
  • 4808ad3 Merge pull request #1295 from dtolnay/optionifletelse
  • a1c0f2d Remove option_if_let_else clippy suppression
  • 9dce25b Bump Bazel build to rustc 1.75.0
  • 13c3d97 Format tests/BUCK with buildifier
  • Additional commits viewable in compare view

Updates base64 from 0.13.1 to 0.22.1

Changelog

Sourced from base64's changelog.

0.22.1

  • Correct the symbols used for the predefined alphabet::BIN_HEX.

0.22.0

  • DecodeSliceError::OutputSliceTooSmall is now conservative rather than precise. That is, the error will only occur if the decoded output cannot fit, meaning that Engine::decode_slice can now be used with exactly-sized output slices. As part of this, Engine::internal_decode now returns DecodeSliceError instead of DecodeError, but that is not expected to affect any external callers.
  • DecodeError::InvalidLength now refers specifically to the number of valid symbols being invalid (i.e. len % 4 == 1), rather than just the number of input bytes. This avoids confusing scenarios when based on interpretation you could make a case for either InvalidLength or InvalidByte being appropriate.
  • Decoding is somewhat faster (5-10%)

0.21.7

  • Support getting an alphabet's contents as a str via Alphabet::as_str()

0.21.6

  • Improved introductory documentation and example

0.21.5

  • Add Debug and Clone impls for the general purpose Engine

0.21.4

  • Make encoded_len const, allowing the creation of arrays sized to encode compile-time-known data lengths

0.21.3

  • Implement source instead of cause on Error types
  • Roll back MSRV to 1.48.0 so Debian can continue to live in a time warp
  • Slightly faster chunked encoding for short inputs
  • Decrease binary size

0.21.2

  • Rollback MSRV to 1.57.0 -- only dev dependencies need 1.60, not the main code

0.21.1

  • Remove the possibility of panicking during decoded length calculations
  • DecoderReader no longer sometimes erroneously ignores padding #226

Breaking changes

  • Engine.internal_decode return type changed
  • Update MSRV to 1.60.0

0.21.0

... (truncated)

Commits
  • e144006 v0.22.1
  • 64cca59 Merge pull request #271 from JobanSD/patch-1
  • 838355e Correct BinHex 4.0 alphabet according to specifications
  • bf15ccf Merge pull request #270 from marshallpierce/mp/clippy
  • fc6aabe Appease clippy
  • 9a518a2 Merge pull request #267 from bdura/patch-1
  • d96c80f Merge branch 'marshallpierce:master' into patch-1
  • 5d70ba7 Merge pull request #269 from marshallpierce/mp/decode-precisely
  • efb6c00 Release notes
  • 2b91084 Add some tests to boost coverage
  • Additional commits viewable in compare view

Updates rustc-simple-version from 0.1.0 to 0.1.1

Commits

Updates petgraph from 0.6.4 to 0.6.5

Changelog

Sourced from petgraph's changelog.

Version 0.6.5 (2024-05-06)

  • Add rayon support for GraphMap ([#573](https://github.com/petgraph/petgraph/issues/573), [#615](https://github.com/petgraph/petgraph/issues/615))
  • Add Topo::with_initials method ([#585](https://github.com/petgraph/petgraph/issues/585)_)
  • Add logo to the project ([#598](https://github.com/petgraph/petgraph/issues/598)_)
  • Add Ford-Fulkerson algorithm ([#640](https://github.com/petgraph/petgraph/issues/640)_)
  • Update itertools to 0.12.1 ([#628](https://github.com/petgraph/petgraph/issues/628)_)
  • Update GraphMap to allow custom hash functions ([#623](https://github.com/petgraph/petgraph/issues/623)_)
  • Fix documentation ([#630](https://github.com/petgraph/petgraph/issues/630)_)
  • Fix clippy warnings ([#627](https://github.com/petgraph/petgraph/issues/627)_)
  • (internal) Fix remove old copyclone macro ([#601](https://github.com/petgraph/petgraph/issues/601)_)
  • (internal) Move minimum spanning tree into own module ([#624](https://github.com/petgraph/petgraph/issues/624)_)

.. _[#573](https://github.com/petgraph/petgraph/issues/573): petgraph/petgraph#573 .. _[#615](https://github.com/petgraph/petgraph/issues/615): petgraph/petgraph#615 .. _[#585](https://github.com/petgraph/petgraph/issues/585): petgraph/petgraph#585 .. _[#598](https://github.com/petgraph/petgraph/issues/598): petgraph/petgraph#598 .. _[#640](https://github.com/petgraph/petgraph/issues/640): petgraph/petgraph#640 .. _[#628](https://github.com/petgraph/petgraph/issues/628): petgraph/petgraph#628 .. _[#623](https://github.com/petgraph/petgraph/issues/623): petgraph/petgraph#623 .. _[#630](https://github.com/petgraph/petgraph/issues/630): petgraph/petgraph#630 .. _[#627](https://github.com/petgraph/petgraph/issues/627): petgraph/petgraph#627 .. _[#601](https://github.com/petgraph/petgraph/issues/601): petgraph/petgraph#601 .. _[#624](https://github.com/petgraph/petgraph/issues/624): petgraph/petgraph#624

Commits

Updates toml from 0.7.8 to 0.8.8

Commits

Updates itertools from 0.11.0 to 0.13.0

Changelog

Sourced from itertools's changelog.

0.13.0

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)

0.12.1

Added

  • Documented iteration order guarantee for Itertools::[tuple_]combinations (#822)
  • Documented possible panic in iterate (#842)
  • Implemented Clone and Debug for Diff (#845)

... (truncated)

Commits
  • d5084d1 Prepare v0.13.0 release (#937)
  • d7c99d5 TupleCombinations is not lazy but must be used nonetheless
  • 074c7fc KMergeBy is not lazy but must be used nonetheless
  • 2ad9e07 assert_equal: fix clippy::default_numeric_fallback
  • 0d4efc8 Remove free function get
  • 05cc0ee get(s..=usize::MAX) should be fine when s != 0
  • 3c16f14 get: when is it ESI and/or DEI
  • 4dd6ba0 get: panics if the range includes usize::MAX
  • 7a9ce56 get(r: Range) as Skip\<Take>
  • f676f2f Remove the unspecified check about .get(exhausted_range_inclusive)
  • Additional commits viewable in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the cargo-minor-and-patch group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [log](https://github.com/rust-lang/log) | `0.4.19` | `0.4.22` |
| [tracy-client](https://github.com/nagisa/rust_tracy_client) | `0.16.4` | `0.17.3` |
| [cxx](https://github.com/dtolnay/cxx) | `1.0.97` | `1.0.112` |
| [base64](https://github.com/marshallpierce/rust-base64) | `0.13.1` | `0.22.1` |
| [rustc-simple-version](https://gitlab.com/legoktm/rustc-simple-version) | `0.1.0` | `0.1.1` |
| [petgraph](https://github.com/petgraph/petgraph) | `0.6.4` | `0.6.5` |
| [toml](https://github.com/toml-rs/toml) | `0.7.8` | `0.8.8` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.11.0` | `0.13.0` |



Updates `log` from 0.4.19 to 0.4.22
- [Release notes](https://github.com/rust-lang/log/releases)
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
- [Commits](rust-lang/log@0.4.19...0.4.22)

Updates `tracy-client` from 0.16.4 to 0.17.3
- [Commits](nagisa/rust_tracy_client@tracy-client-v0.16.4...tracy-client-v0.17.3)

Updates `cxx` from 1.0.97 to 1.0.112
- [Release notes](https://github.com/dtolnay/cxx/releases)
- [Commits](dtolnay/cxx@1.0.97...1.0.112)

Updates `base64` from 0.13.1 to 0.22.1
- [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md)
- [Commits](marshallpierce/rust-base64@v0.13.1...v0.22.1)

Updates `rustc-simple-version` from 0.1.0 to 0.1.1
- [Commits](https://gitlab.com/legoktm/rustc-simple-version/compare/0.1.0...0.1.1)

Updates `petgraph` from 0.6.4 to 0.6.5
- [Changelog](https://github.com/petgraph/petgraph/blob/master/RELEASES.rst)
- [Commits](https://github.com/petgraph/petgraph/compare/[email protected]@v0.6.5)

Updates `toml` from 0.7.8 to 0.8.8
- [Commits](toml-rs/toml@toml-v0.7.8...toml-v0.8.8)

Updates `itertools` from 0.11.0 to 0.13.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.11.0...v0.13.0)

---
updated-dependencies:
- dependency-name: log
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor-and-patch
- dependency-name: tracy-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor-and-patch
- dependency-name: cxx
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor-and-patch
- dependency-name: base64
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor-and-patch
- dependency-name: rustc-simple-version
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor-and-patch
- dependency-name: petgraph
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor-and-patch
- dependency-name: toml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor-and-patch
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Sep 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants