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 group with 7 updates #2039

Merged
merged 2 commits into from
Oct 3, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 2, 2023

Bumps the cargo group with 7 updates:

Package From To
thiserror 1.0.48 1.0.49
clap 4.4.4 4.4.6
raw-window-handle 0.5.2 0.6.0
wgpu 0.17.0 0.17.1
winit 0.28.6 0.28.7
regex 1.9.5 1.9.6
octocrab 0.30.1 0.31.0

Updates thiserror from 1.0.48 to 1.0.49

Release notes

Sourced from thiserror's releases.

1.0.49

  • Access libcore types through ::core in generated code (#255, thanks @​mina86)
Commits

Updates clap from 4.4.4 to 4.4.6

Release notes

Sourced from clap's releases.

v4.4.6

[4.4.6] - 2023-09-28

Internal

  • Upgrade anstream

v4.4.5

[4.4.5] - 2023-09-25

Fixes

  • (parser) When inferring subcommand name or long_flag, allow ambiguous-looking matches that unambiguously map back to the same command
  • (parser) When inferring subcommand long_flag, don't panic
  • (assert) Clarify what action is causing a positional that doesn't set values which is especially useful for derive users
Changelog

Sourced from clap's changelog.

[4.4.6] - 2023-09-28

Internal

  • Upgrade anstream

[4.4.5] - 2023-09-25

Fixes

  • (parser) When inferring subcommand name or long_flag, allow ambiguous-looking matches that unambiguously map back to the same command
  • (parser) When inferring subcommand long_flag, don't panic
  • (assert) Clarify what action is causing a positional that doesn't set values which is especially useful for derive users
Commits

Updates raw-window-handle from 0.5.2 to 0.6.0

Release notes

Sourced from raw-window-handle's releases.

v0.6.0

  • Breaking: Raw pointer handles now use NonNull where appropriate, to avoid null pointer dereferences.
  • Breaking: Renamed empty methods to new, and take parameters in most of those, to better match normal Rust semantics.
  • Breaking: HasRaw(Display/Window)Handle::raw_(display/window)_handle returns a result indicating if fetching the window handle failed (#122).
  • Breaking: Remove the Active/ActiveHandle types from the public API (#126).
  • Breaking: Remove AppKitWindowHandle::ns_window and UiKitWindowHandle::ui_window since they can be retrieved from the view (#129).
  • Breaking: Remove Copy derive from RawWindowHandle and WindowHandle (#140).
  • Implement PartialEq, Eq and Hash for WindowHandle too. (#128)
  • Implement the relevant traits for &mut T where T: <trait>. (#130)
  • Add web handles for wasm-bindgen v0.2. They are locked behind the wasm-bindgen-0-2 feature. (#134)
  • Deprecate the raw window/display handle traits. They will be removed at the next stable release. (#139)
Changelog

Sourced from raw-window-handle's changelog.

0.6.0 (2023-09-30)

  • Breaking: Raw pointer handles now use NonNull where appropriate, to avoid null pointer dereferences.
  • Breaking: Renamed empty methods to new, and take parameters in most of those, to better match normal Rust semantics.
  • Breaking: HasRaw(Display/Window)Handle::raw_(display/window)_handle returns a result indicating if fetching the window handle failed (#122).
  • Breaking: Remove the Active/ActiveHandle types from the public API (#126).
  • Breaking: Remove AppKitWindowHandle::ns_window and UiKitWindowHandle::ui_window since they can be retrieved from the view (#129).
  • Breaking: Remove Copy derive from RawWindowHandle and WindowHandle (#140).
  • Implement PartialEq, Eq and Hash for WindowHandle too. (#128)
  • Implement the relevant traits for &mut T where T: <trait>. (#130)
  • Add web handles for wasm-bindgen v0.2. They are locked behind the wasm-bindgen-0-2 feature. (#134)
  • Deprecate the raw window/display handle traits. They will be removed at the next stable release. (#139)
Commits
  • 2c2aaa9 final changelog date.
  • af04e3b v0.6.0 (#132)
  • e3f68a7 breaking: Deprecate the HasRaw*Handle traits
  • 809b130 Add wasm-bindgen v0.2 handles for web_sys::HtmlCanvasElement and web_sys::Off...
  • 69d9eac Change how handles are constructed, so that we can ensure non-null handles (#...
  • 4611ee8 breaking: Remove Copy for RawWindowHandle/WindowHandle
  • 880b305 Remove window handles from Apple handles (#129)
  • 64d2269 Implement traits for &mut T (#133)
  • e3d2e69 Incorrect changelog PR number (#130)
  • 59d3ad2 m: Make sure traits are uniform across WindowHandle and DisplayHandle
  • Additional commits viewable in compare view

Updates wgpu from 0.17.0 to 0.17.1

Release notes

Sourced from wgpu's releases.

v0.17.1

This release includes the crate wgpu, wgpu-core, and wgpu-hal. The crate wgpu-types is still at 0.17.0.

Added/New Features

  • Add get_mapped_range_as_array_buffer for faster buffer read-backs in wasm builds. By @​ryankaplan in #4042.

Bug Fixes

DX12

Vulkan

Changelog

Sourced from wgpu's changelog.

v0.17.1 (2023-09-27)

Added/New Features

Bug Fixes

DX12

Vulkan

Commits

Updates winit from 0.28.6 to 0.28.7

Release notes

Sourced from winit's releases.

Winit Version 0.28.7

  • Fix window size sometimes being invalid when resizing on macOS 14 Sonoma.
Changelog

Sourced from winit's changelog.

0.28.7

  • Fix window size sometimes being invalid when resizing on macOS 14 Sonoma.
Commits

Updates regex from 1.9.5 to 1.9.6

Changelog

Sourced from regex's changelog.

1.9.6 (2023-09-30)

This is a patch release that fixes a panic that can occur when the default regex size limit is increased to a large number.

  • BUG aa4e4c71: Fix a bug where computing the maximum haystack length for the bounded backtracker could result underflow and thus provoke a panic later in a search due to a broken invariant.
Commits
  • 11b4443 1.9.6
  • 3dda425 deps: bump regex-automata to 0.3.9
  • 03f00bd regex-automata-0.3.9
  • e467408 changelog: 1.9.6
  • aa4e4c7 automata: fix unintended panic in max_haystack_len
  • 27a2538 automata: add some #[inline] annotations
  • 061ee81 readme: visually emphasize performance criteria difference
  • 8275c1b doc: fix a few typos
  • cdc0dbd readme: add section about performance and benchmarks
  • 4aaf389 ci: pin to memchr 2.6.2 for MSRV CI job
  • See full diff in compare view

Updates octocrab from 0.30.1 to 0.31.0

Release notes

Sourced from octocrab's releases.

v0.31.0

Other

  • Add WatchEvent (#462)
  • Checks API (#461)
  • Fix github_app_authentication.rs (#458)
Changelog

Sourced from octocrab's changelog.

0.31.0 - 2023-10-02

Other

  • Add WatchEvent (#462)
  • Checks API (#461)
  • Fix github_app_authentication.rs (#458)
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

@dependabot dependabot bot requested a review from hannobraun as a code owner October 2, 2023 12:51
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Oct 2, 2023
dependabot bot and others added 2 commits October 3, 2023 21:18
(Amended by @hannobraun to keep back the `raw-window-handle` upgrade.
`wgpu` hasn't upgraded yet, so we can't either.)

Bumps the cargo group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` |
| [clap](https://github.com/clap-rs/clap) | `4.4.4` | `4.4.6` |
| [raw-window-handle](https://github.com/rust-windowing/raw-window-handle) | `0.5.2` | `0.6.0` |
| [wgpu](https://github.com/gfx-rs/wgpu) | `0.17.0` | `0.17.1` |
| [winit](https://github.com/rust-windowing/winit) | `0.28.6` | `0.28.7` |
| [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` |
| [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` |

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

Updates `clap` from 4.4.4 to 4.4.6
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.4.4...v4.4.6)

Updates `raw-window-handle` from 0.5.2 to 0.6.0
- [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.5.2...v0.6.0)

Updates `wgpu` from 0.17.0 to 0.17.1
- [Release notes](https://github.com/gfx-rs/wgpu/releases)
- [Changelog](https://github.com/gfx-rs/wgpu/blob/v0.17.1/CHANGELOG.md)
- [Commits](gfx-rs/wgpu@v0.17.0...v0.17.1)

Updates `winit` from 0.28.6 to 0.28.7
- [Release notes](https://github.com/rust-windowing/winit/releases)
- [Changelog](https://github.com/rust-windowing/winit/blob/master/CHANGELOG.md)
- [Commits](rust-windowing/winit@v0.28.6...v0.28.7)

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

Updates `octocrab` from 0.30.1 to 0.31.0
- [Release notes](https://github.com/XAMPPRocky/octocrab/releases)
- [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md)
- [Commits](XAMPPRocky/octocrab@v0.30.1...v0.31.0)

---
updated-dependencies:
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: raw-window-handle
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: wgpu
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: winit
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: octocrab
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
@hannobraun hannobraun force-pushed the dependabot/cargo/cargo-49a59f58ea branch from 281fbdc to 0c7845b Compare October 3, 2023 19:30
@hannobraun hannobraun merged commit 45a75cd into main Oct 3, 2023
4 checks passed
@hannobraun hannobraun deleted the dependabot/cargo/cargo-49a59f58ea branch October 3, 2023 19:37
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.

1 participant