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

(auto merged) Bump the patch group with 9 updates #2669

Merged
merged 1 commit into from
Feb 6, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 6, 2024

Bumps the patch group with 9 updates:

Package From To
nc 0.8.18 0.8.19
anstyle 1.0.5 1.0.6
bindgen 0.69.2 0.69.4
hermit-abi 0.3.4 0.3.5
iana-time-zone 0.1.59 0.1.60
miniz_oxide 0.7.1 0.7.2
rend 0.4.1 0.4.2
rkyv 0.7.43 0.7.44
winnow 0.5.36 0.5.37

Updates nc from 0.8.18 to 0.8.19

Commits
  • 2e92588 Release v0.8.19
  • 2b68095 linux/arm: Add missing signal header file
  • 7f34af6 ci: Upgrade ubuntu to 22.04
  • bf6479b build: Fix lint error
  • fb4d60c syscalls: Add riscv64 arch
  • b79e9be build: Disable c wrapper of syscalls on x86_64 and aarch64
  • a95abef linux-types: Fix unused import in rust nightly
  • 86a1da4 calls: Get mutable pointer of sembuf
  • e4c0403 examples: Fix fork() and stat() not found on riscv64
  • 28bd842 util: Fix alarm() not found on riscv64
  • Additional commits viewable in compare view

Updates anstyle from 1.0.5 to 1.0.6

Commits
  • c9dee03 chore: Release
  • 60343d1 docs: Update changelog
  • b8edda7 Merge pull request #171 from epage/ignore-fmt
  • ec33d22 fix(anstyle): Don't display with formatter's settings
  • 93c3dec test(anstyle): Show current fmt behavior
  • 9098545 chore(deps): update compatible (dev)
  • 44e8e4a Merge pull request #169 from joshtriplett/tyop
  • d9265f2 docs(anstream): Fix typo in documentation
  • See full diff in compare view

Updates bindgen from 0.69.2 to 0.69.4

Release notes

Sourced from bindgen's releases.

v0.69.4

Install bindgen-cli 0.69.4

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-lang/rust-bindgen/releases/download/v0.69.4/bindgen-cli-installer.sh | sh

Download bindgen-cli 0.69.4

File Platform Checksum
bindgen-cli-aarch64-apple-darwin.tar.xz macOS Apple Silicon checksum
bindgen-cli-x86_64-apple-darwin.tar.xz macOS Intel checksum
bindgen-cli-x86_64-unknown-linux-gnu.tar.xz Linux x64 checksum

v0.69.3

Install bindgen-cli 0.69.3

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-lang/rust-bindgen/releases/download/v0.69.3/bindgen-cli-installer.sh | sh

Download bindgen-cli 0.69.3

File Platform Checksum
bindgen-cli-aarch64-apple-darwin.tar.xz macOS Apple Silicon checksum
bindgen-cli-x86_64-apple-darwin.tar.xz macOS Intel checksum
bindgen-cli-x86_64-unknown-linux-gnu.tar.xz Linux x64 checksum
Changelog

Sourced from bindgen's changelog.

0.69.4 (2024-02-04)

Added

Changed

  • Allow older itertools. (#2745)

Removed

Fixed

Security

0.69.3 (2024-02-04)

Added

  • Added blocklist_var (#2731)
  • Stabilized thiscall_abi (#2661)

Changed

  • Use CR consistently on windows (#2698)
  • Replaced peeking_take_while by itertools (#2724)

Removed

Fixed

  • Try to avoid repr(packed) for explicitly aligned types when not needed (#2734)
  • Improved destructor handling on Windows (#2663)
  • Support Float16 (#2667)
  • Fix alignment contribution from bitfields (#2680)
  • Fixed msrv build.

Security

  • Updated shlex dependency (RUSTSEC-2024-0006)
Commits
  • 62859b2 chore: Release
  • 5ac6267 Update itertools and allow itertools 0.10 too.
  • 00f0273 chore: Release
  • 84c0612 changelog: Prepare for 0.69.3 release.
  • b7de6ee feat: add blocklist_var
  • ee94c43 Add test for quoted Env variables passed with BINDGEN_EXTRA_CLANG_ARGS.
  • 66328b2 codegen: Fix a nit I commented on #2734.
  • 199bee4 try to avoid #[repr(packed)] when align is needed
  • 6e133ba Use CargoCallbacks::new() in documentation
  • a8fa942 Use CargoCallbacks::new() instead of bindgen::CargoCallbacks in the examp...
  • Additional commits viewable in compare view

Updates hermit-abi from 0.3.4 to 0.3.5

Commits
  • 58dfbb8 Merge pull request #529 from stlankes/abi
  • 4136a68 increase version number of hermit-abi
  • 5e6d779 Merge pull request #527 from stlankes/file
  • 6f5f068 using an absolute path to create a file
  • c9b59b7 Merge pull request #525 from stlankes/poll
  • f0ecc4e revise comments
  • 1bba98b remove typo and rename system call to sys_poll
  • c29bf3c Merge pull request #524 from hermit-os/stlankes-patch-1
  • 3b0cedd add firecracker loader to the deployments
  • 062da84 Merge pull request #523 from mkroening/ci-loader-download
  • Additional commits viewable in compare view

Updates iana-time-zone from 0.1.59 to 0.1.60

Changelog

Sourced from iana-time-zone's changelog.

[0.1.60] - 2024-02-03

Changed

  • correct windows-core dependency version (#127)
Commits
  • bf83753 Bump version number to 0.1.60
  • 6b66d30 Merge pull request #127 from strawlab/fix-windows-core-version
  • 1f5c177 correct windows-core dependency version
  • See full diff in compare view

Updates miniz_oxide from 0.7.1 to 0.7.2

Changelog

Sourced from miniz_oxide's changelog.

0.7.2 - 2024-02-03

Bug Fixes

  • (inflate) Return MZError::Buf when calling inflate with MZFlush::Finish in line with orig miniz and zlib - (0f50464) - oyvindln
  • (miniz_oxide) fix tests when with-alloc is not enabled (running with --no-default-features) and make add test run of it to ci - (4fd32da) - oyvindln
  • (miniz_oxide) fix compiler and clippy warnings - (657c5b2) - oyvindln

Documentation

Performance

  • Code size reduction from panic reduction (#145) - (201ef39) - Kornel
  • Optimize match_len == 3 (#146) - (10ff5a0) - Kornel

Other

  • Add a roundtrip fuzz target (#138) - (ee29e37) - Sergey "Shnatsel" Davidoff

Commits

Updates rend from 0.4.1 to 0.4.2

Commits

Updates rkyv from 0.7.43 to 0.7.44

Commits

Updates winnow from 0.5.36 to 0.5.37

Changelog

Sourced from winnow's changelog.

[0.5.37] - 2024-02-02

Features

  • Initial support for error recovery behind unstable-recover feature
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 group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [nc](https://github.com/xushaohua/nc) | `0.8.18` | `0.8.19` |
| [anstyle](https://github.com/rust-cli/anstyle) | `1.0.5` | `1.0.6` |
| [bindgen](https://github.com/rust-lang/rust-bindgen) | `0.69.2` | `0.69.4` |
| [hermit-abi](https://github.com/hermitcore/hermit-rs) | `0.3.4` | `0.3.5` |
| [iana-time-zone](https://github.com/strawlab/iana-time-zone) | `0.1.59` | `0.1.60` |
| [miniz_oxide](https://github.com/Frommi/miniz_oxide) | `0.7.1` | `0.7.2` |
| [rend](https://github.com/djkoloski/rend) | `0.4.1` | `0.4.2` |
| [rkyv](https://github.com/rkyv/rkyv) | `0.7.43` | `0.7.44` |
| [winnow](https://github.com/winnow-rs/winnow) | `0.5.36` | `0.5.37` |


Updates `nc` from 0.8.18 to 0.8.19
- [Commits](XuShaohua/nc@v0.8.18...v0.8.19)

Updates `anstyle` from 1.0.5 to 1.0.6
- [Commits](rust-cli/anstyle@v1.0.5...v1.0.6)

Updates `bindgen` from 0.69.2 to 0.69.4
- [Release notes](https://github.com/rust-lang/rust-bindgen/releases)
- [Changelog](https://github.com/rust-lang/rust-bindgen/blob/main/CHANGELOG.md)
- [Commits](rust-lang/rust-bindgen@v0.69.2...v0.69.4)

Updates `hermit-abi` from 0.3.4 to 0.3.5
- [Release notes](https://github.com/hermitcore/hermit-rs/releases)
- [Commits](hermit-os/hermit-rs@hermit-abi-0.3.4...hermit-abi-0.3.5)

Updates `iana-time-zone` from 0.1.59 to 0.1.60
- [Changelog](https://github.com/strawlab/iana-time-zone/blob/main/CHANGELOG.md)
- [Commits](strawlab/iana-time-zone@v0.1.59...v0.1.60)

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

Updates `rend` from 0.4.1 to 0.4.2
- [Release notes](https://github.com/djkoloski/rend/releases)
- [Commits](https://github.com/djkoloski/rend/commits)

Updates `rkyv` from 0.7.43 to 0.7.44
- [Release notes](https://github.com/rkyv/rkyv/releases)
- [Changelog](https://github.com/rkyv/rkyv/blob/main/release_checklist.md)
- [Commits](https://github.com/rkyv/rkyv/commits)

Updates `winnow` from 0.5.36 to 0.5.37
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](winnow-rs/winnow@v0.5.36...v0.5.37)

---
updated-dependencies:
- dependency-name: nc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: anstyle
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: bindgen
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: hermit-abi
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: iana-time-zone
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: miniz_oxide
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: rend
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: rkyv
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: winnow
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Feb 6, 2024
@github-actions github-actions bot changed the title Bump the patch group with 9 updates (auto merged) Bump the patch group with 9 updates Feb 6, 2024
@github-actions github-actions bot merged commit 46f75e4 into main Feb 6, 2024
31 checks passed
@github-actions github-actions bot deleted the dependabot/cargo/patch-d30f75e2c6 branch February 6, 2024 01:07
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