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

build(deps): bump the patch-updates group with 19 updates #5720

Merged
merged 1 commit into from
May 26, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 20, 2024

Bumps the patch-updates group with 19 updates:

Package From To
anyhow 1.0.83 1.0.86
bytemuck 1.15.0 1.16.0
libc 0.2.154 0.2.155
raw-window-handle 0.6.1 0.6.2
serde 1.0.201 1.0.202
thiserror 1.0.60 1.0.61
syn 2.0.63 2.0.65
cc 1.0.97 1.0.98
crossbeam-utils 0.8.19 0.8.20
either 1.11.0 1.12.0
instant 0.1.12 0.1.13
linux-raw-sys 0.4.13 0.4.14
miniz_oxide 0.7.2 0.7.3
proc-macro2 1.0.82 1.0.83
rustversion 1.0.16 1.0.17
serde_derive 1.0.201 1.0.202
smol_str 0.2.1 0.2.2
thiserror-impl 1.0.60 1.0.61
toml_datetime 0.6.5 0.6.6

Updates anyhow from 1.0.83 to 1.0.86

Release notes

Sourced from anyhow's releases.

1.0.86

  • Fix parse error in ensure! with non-literal after minus sign (#373)

1.0.85

  • Improve ensure! macro's rules to unblock some rustc pretty-printer improvements (#368, #371)

1.0.84

  • Disallow calling ensure! through a Not impl for a type that is not bool (#367)
Commits
  • 8ea1819 Release 1.0.86
  • 0a1b405 Merge pull request #373 from dtolnay/minusneg
  • e0c74f2 Ensure $:literal never matches negative literal
  • 013c66e Fix parse error with non-literal after minus sign
  • ca7aff7 Add binary operator ensure tests
  • 2737bbe Release 1.0.85
  • 82b8b34 Merge pull request #371 from dtolnay/split
  • ad78d70 Preserve more token spans in expression parser
  • 5cce406 Parse comparison operators before other binary operators
  • 7205394 Merge pull request #369 from dtolnay/tokensplit
  • Additional commits viewable in compare view

Updates bytemuck from 1.15.0 to 1.16.0

Changelog

Sourced from bytemuck's changelog.

1.16.0

  • Adds a const_zeroed feature (MSRV 1.75) which puts a zeroed fn at the crate root. This is just like the Zeroable::zeroed method, but as a const fn.
Commits

Updates libc from 0.2.154 to 0.2.155

Release notes

Sourced from libc's releases.

0.2.155

What's Changed

New Contributors

Full Changelog: rust-lang/libc@0.2.154...0.2.155

Commits
  • 7df63bd Merge pull request #3682 from madsmtm/new-version
  • 0bbb5cd Merge pull request #3690 from tesuji/android-posix-spawn
  • 15c74a4 Update version to 0.2.155
  • 664947b Merge pull request #3708 from cuviper/ci-sparc64-0.2
  • 61331df Also skip MFD_EXEC and MFD_NOEXEC_SEAL on sparc64
  • 73d2004 Skip SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV on sparc64
  • 80535f3 Revert "Upgrade Docker images to Ubuntu 23.10" on sparc64
  • b2b2fd7 Readd posix_spawn{_file_actions_t,attr_t} on Android
  • 7646277 Merge pull request #3686 from redox-os/redox-epoll-0.2
  • 5eff703 redox: correct EPOLL constants
  • Additional commits viewable in compare view

Updates raw-window-handle from 0.6.1 to 0.6.2

Release notes

Sourced from raw-window-handle's releases.

v0.6.2

  • Add OpenHarmony OS support (#164)
  • Minor Documentation updates
Changelog

Sourced from raw-window-handle's changelog.

0.6.2 (2024-05-17)

  • Add OpenHarmony OS support (#164)
  • Minor Documentation updates
Commits

Updates serde from 1.0.201 to 1.0.202

Release notes

Sourced from serde's releases.

v1.0.202

  • Provide public access to RenameAllRules in serde_derive_internals (#2743)
Commits
  • 9e32a40 Release 1.0.202
  • 87f635e Release serde_derive_internals 0.29.1
  • d4b2dfb Merge pull request #2743 from dtolnay/renameallrules
  • f6ab0bc Provide public access to RenameAllRules in serde_derive_internals
  • 48cc2a6 Replace use of a syn From impl
  • 3202a68 Skip rerunning build script on library code changes
  • See full diff in compare view

Updates thiserror from 1.0.60 to 1.0.61

Release notes

Sourced from thiserror's releases.

1.0.61

  • Use core::fmt and core::panic to facilitate error_in_core support (#299, thanks @​jordens)
Commits

Updates syn from 2.0.63 to 2.0.65

Release notes

Sourced from syn's releases.

2.0.65

  • Optimize the implementation of Fold to compile faster (#1666, #1667, #1668)

2.0.64

  • Support using ParseBuffer across catch_unwind (#1646)
  • Validate that the expression in a let-else ends in brace as required by rustc (#1648, #1649)
  • Legalize invalid const generic arguments by wrapping in braces (#1654, #1655)
  • Fix some expression precedence edge cases involving break and return in loop headers (#1656)
  • Always print closure bodies with a brace when the closure has an explicit return type (#1658)
  • Automatically insert necessary parentheses in ToTokens for Expr when required by expression precedence (#1659)
  • Support struct literal syntax in match guard expressions (#1662)
Commits
  • 9f2371e Release 2.0.65
  • 4cd1813 Merge pull request #1668 from dtolnay/foldhelper
  • ed54092 Eliminate gen::helper module
  • eacc8ab Eliminate FoldHelper trait
  • 6e20bb8 Merge pull request #1667 from dtolnay/punctuatedfold
  • 9d95cab Optimize punctuated::fold
  • 82ffe86 Move Punctuated fold helper to punctuated module
  • 3dfacc1 Ignore manual_map clippy lint
  • 7273aa7 Merge pull request #1666 from dtolnay/foldhelper
  • 8124c0e Generate fewer monomorphizations in Fold
  • Additional commits viewable in compare view

Updates cc from 1.0.97 to 1.0.98

Release notes

Sourced from cc's releases.

1.0.98

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.97...1.0.98

Commits

Updates crossbeam-utils from 0.8.19 to 0.8.20

Release notes

Sourced from crossbeam-utils's releases.

crossbeam-utils 0.8.20

  • Implement Display for CachePadded. (#1097)
Commits
  • 3f5d51f Prepare for the next release
  • a9d236c Use setup-cross-toolchain-action instead of cross
  • 4a514f4 Address unexpected_cfgs warning
  • 91edb88 Add select_biased! macro (#1040)
  • d1ab079 Fix clippy::assigning_clones warning
  • 3045680 ci: Set timeout-minutes in all jobs
  • 1dc72c8 Revert "ci: Pin nightly toolchain for sanitizers to nightly-2024-03-13"
  • 39417a5 ci: Use taiki-e/checkout-action action
  • 120a6dd Run cargo-careful in CI
  • 2b06585 impl Display for CachePadded<T> (#1097)
  • Additional commits viewable in compare view

Updates either from 1.11.0 to 1.12.0

Commits

Updates instant from 0.1.12 to 0.1.13

Commits

Updates linux-raw-sys from 0.4.13 to 0.4.14

Commits

Updates miniz_oxide from 0.7.2 to 0.7.3

Changelog

Sourced from miniz_oxide's changelog.

0.7.3 - 2024-05-17

Bug Fixes

  • (miniz_oxide) Fix version specification for simd-adler32 (#150) - (35c71e1) - Daniel Müller
  • Fix clippy lints (#151) - (7c758d4) - Gnome!
  • (miniz_oxide) Remove lookup table from rustc-std builds (#152) - (434d9ab) - Gnome!

Commits
  • 2ebf8e2 bump version and update changelog
  • 963a9ba fix(miniz_oxide_c_api): set version of cc so ci tests don't fail due to newer...
  • 434d9ab Remove lookup table from rustc-std builds (#152)
  • 7c758d4 Fix clippy lints (#151)
  • 35c71e1 fix(miniz_oxide): Fix version specification for simd-adler32 (#150)
  • See full diff in compare view

Updates proc-macro2 from 1.0.82 to 1.0.83

Release notes

Sourced from proc-macro2's releases.

1.0.83

  • Optimize the representation of Ident (#462)
Commits
  • 1b77aca Release 1.0.83
  • 728eddf Merge pull request #462 from dtolnay/identsize
  • c56c5e6 Drop irrelevant capacity field from Ident representation
  • 464c2eb Merge pull request #461 from dtolnay/sizetest
  • 6f894e7 Disable span size tests when layout is randomized
  • 7b357af Add additional size tests
  • abc7dff Merge pull request #460 from dtolnay/docsrs
  • f8d88f3 Rely on docs.rs to define --cfg=docsrs by default
  • See full diff in compare view

Updates rustversion from 1.0.16 to 1.0.17

Release notes

Sourced from rustversion's releases.

1.0.17

  • Support Windows builds that have OUT_DIR prefixed with \\?\ (#51)
Commits

Updates serde_derive from 1.0.201 to 1.0.202

Release notes

Sourced from serde_derive's releases.

v1.0.202

  • Provide public access to RenameAllRules in serde_derive_internals (#2743)
Commits
  • 9e32a40 Release 1.0.202
  • 87f635e Release serde_derive_internals 0.29.1
  • d4b2dfb Merge pull request #2743 from dtolnay/renameallrules
  • f6ab0bc Provide public access to RenameAllRules in serde_derive_internals
  • 48cc2a6 Replace use of a syn From impl
  • 3202a68 Skip rerunning build script on library code changes
  • See full diff in compare view

Updates smol_str from 0.2.1 to 0.2.2

Commits

Updates thiserror-impl from 1.0.60 to 1.0.61

Release notes

Sourced from thiserror-impl's releases.

1.0.61

  • Use core::fmt and core::panic to facilitate error_in_core support (#299, thanks @​jordens)
Commits

Updates toml_datetime from 0.6.5 to 0.6.6

Commits

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 patch-updates group with 19 updates:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.83` | `1.0.86` |
| [bytemuck](https://github.com/Lokathor/bytemuck) | `1.15.0` | `1.16.0` |
| [libc](https://github.com/rust-lang/libc) | `0.2.154` | `0.2.155` |
| [raw-window-handle](https://github.com/rust-windowing/raw-window-handle) | `0.6.1` | `0.6.2` |
| [serde](https://github.com/serde-rs/serde) | `1.0.201` | `1.0.202` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.60` | `1.0.61` |
| [syn](https://github.com/dtolnay/syn) | `2.0.63` | `2.0.65` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.0.97` | `1.0.98` |
| [crossbeam-utils](https://github.com/crossbeam-rs/crossbeam) | `0.8.19` | `0.8.20` |
| [either](https://github.com/rayon-rs/either) | `1.11.0` | `1.12.0` |
| [instant](https://github.com/sebcrozet/instant) | `0.1.12` | `0.1.13` |
| [linux-raw-sys](https://github.com/sunfishcode/linux-raw-sys) | `0.4.13` | `0.4.14` |
| [miniz_oxide](https://github.com/Frommi/miniz_oxide) | `0.7.2` | `0.7.3` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.82` | `1.0.83` |
| [rustversion](https://github.com/dtolnay/rustversion) | `1.0.16` | `1.0.17` |
| [serde_derive](https://github.com/serde-rs/serde) | `1.0.201` | `1.0.202` |
| [smol_str](https://github.com/rust-analyzer/smol_str) | `0.2.1` | `0.2.2` |
| [thiserror-impl](https://github.com/dtolnay/thiserror) | `1.0.60` | `1.0.61` |
| [toml_datetime](https://github.com/toml-rs/toml) | `0.6.5` | `0.6.6` |


Updates `anyhow` from 1.0.83 to 1.0.86
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.83...1.0.86)

Updates `bytemuck` from 1.15.0 to 1.16.0
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md)
- [Commits](Lokathor/bytemuck@v1.15.0...v1.16.0)

Updates `libc` from 0.2.154 to 0.2.155
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Commits](rust-lang/libc@0.2.154...0.2.155)

Updates `raw-window-handle` from 0.6.1 to 0.6.2
- [Release notes](https://github.com/rust-windowing/raw-window-handle/releases)
- [Changelog](https://github.com/rust-windowing/raw-window-handle/blob/master/CHANGELOG.md)
- [Commits](rust-windowing/raw-window-handle@v0.6.1...v0.6.2)

Updates `serde` from 1.0.201 to 1.0.202
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.201...v1.0.202)

Updates `thiserror` from 1.0.60 to 1.0.61
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.60...1.0.61)

Updates `syn` from 2.0.63 to 2.0.65
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.63...2.0.65)

Updates `cc` from 1.0.97 to 1.0.98
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Commits](rust-lang/cc-rs@1.0.97...1.0.98)

Updates `crossbeam-utils` from 0.8.19 to 0.8.20
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases)
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md)
- [Commits](crossbeam-rs/crossbeam@crossbeam-utils-0.8.19...crossbeam-utils-0.8.20)

Updates `either` from 1.11.0 to 1.12.0
- [Commits](rayon-rs/either@1.11.0...1.12.0)

Updates `instant` from 0.1.12 to 0.1.13
- [Changelog](https://github.com/sebcrozet/instant/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sebcrozet/instant/commits)

Updates `linux-raw-sys` from 0.4.13 to 0.4.14
- [Commits](sunfishcode/linux-raw-sys@v0.4.13...v0.4.14)

Updates `miniz_oxide` from 0.7.2 to 0.7.3
- [Changelog](https://github.com/Frommi/miniz_oxide/blob/master/CHANGELOG.md)
- [Commits](Frommi/miniz_oxide@0.7.2...0.7.3)

Updates `proc-macro2` from 1.0.82 to 1.0.83
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.82...1.0.83)

Updates `rustversion` from 1.0.16 to 1.0.17
- [Release notes](https://github.com/dtolnay/rustversion/releases)
- [Commits](dtolnay/rustversion@1.0.16...1.0.17)

Updates `serde_derive` from 1.0.201 to 1.0.202
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.201...v1.0.202)

Updates `smol_str` from 0.2.1 to 0.2.2
- [Commits](https://github.com/rust-analyzer/smol_str/commits/v0.2.2)

Updates `thiserror-impl` from 1.0.60 to 1.0.61
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.60...1.0.61)

Updates `toml_datetime` from 0.6.5 to 0.6.6
- [Commits](toml-rs/toml@toml_datetime-v0.6.5...toml_datetime-v0.6.6)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: bytemuck
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: raw-window-handle
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: crossbeam-utils
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: either
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: instant
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: linux-raw-sys
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: miniz_oxide
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: proc-macro2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: rustversion
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: serde_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: smol_str
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: thiserror-impl
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: toml_datetime
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested review from a team as code owners May 20, 2024 03:15
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels May 20, 2024
Copy link
Member

@Wumpf Wumpf left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks all very harmless

@Wumpf Wumpf merged commit d9c054c into trunk May 26, 2024
25 checks passed
@Wumpf Wumpf deleted the dependabot/cargo/patch-updates-d60d28a594 branch May 26, 2024 16:34
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.

None yet

1 participant