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 5 updates #2251

Merged
merged 3 commits into from
Mar 4, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 4, 2024

Bumps the cargo group with 5 updates:

Package From To
wgpu 0.19.1 0.19.3
winit 0.29.11 0.29.13
log 0.4.20 0.4.21
octocrab 0.34.1 0.34.2
tempfile 3.10.0 3.10.1

Updates wgpu from 0.19.1 to 0.19.3

Release notes

Sourced from wgpu's releases.

v0.19.3

This release includes wgpu, wgpu-core, and wgpu-hal. All other crates are unchanged.

Major Changes

Vendored WebGPU Bindings from web_sys

--cfg=web_sys_unstable_apis is no longer needed in your RUSTFLAGS to compile for WebGPU!!!

While WebGPU's javascript api is stable in the browsers, the web_sys bindings for WebGPU are still improving. As such they are hidden behind the special cfg --cfg=web_sys_unstable_apis and are not available by default. Everyone who wanted to use our WebGPU backend needed to enable this cfg in their RUSTFLAGS. This was very inconvenient and made it hard to use WebGPU, especially when WebGPU is enabled by default. Additionally, the unstable APIs don't adhere to semver, so there were repeated breakages.

To combat this problem we have decided to vendor the web_sys bindings for WebGPU within the crate. Notably we are not forking the bindings, merely vendoring, so any improvements we make to the bindings will be contributed directly to upstream web_sys.

By @​cwfitzgerald in #5325.

Bug Fixes

General

  • Fix an issue where command encoders weren't properly freed if an error occurred during command encoding. By @​ErichDonGubler in #5251.

Android

v0.19.2

This release includes wgpu, wgpu-core, wgpu-hal, wgpu-types, and naga. All other crates are unchanged.

Added/New Features

General

OpenGL

wgsl-out

  • Learned to generate acceleration structure types. By @​JMS55 in #5261

Documentation

  • Fix link in wgpu::Instance::create_surface documentation. By @​HexoKnight in #5280.
  • Fix typo in wgpu::CommandEncoder::clear_buffer documentation. By @​PWhiddy in #5281.
  • Surface configuration incorrectly claimed that wgpu::Instance::create_surface was unsafe. By @​hackaugusto in #5265.

Bug Fixes

General

... (truncated)

Changelog

Sourced from wgpu's changelog.

v0.19.3 (2024-03-01)

Major Changes

Vendored WebGPU Bindings from web_sys

--cfg=web_sys_unstable_apis is no longer needed in your RUSTFLAGS to compile for WebGPU!!!

While WebGPU's javascript api is stable in the browsers, the web_sys bindings for WebGPU are still improving. As such they are hidden behind the special cfg --cfg=web_sys_unstable_apis and are not available by default. Everyone who wanted to use our WebGPU backend needed to enable this cfg in their RUSTFLAGS. This was very inconvenient and made it hard to use WebGPU, especially when WebGPU is enabled by default. Additionally, the unstable APIs don't adhere to semver, so there were repeated breakages.

To combat this problem we have decided to vendor the web_sys bindings for WebGPU within the crate. Notably we are not forking the bindings, merely vendoring, so any improvements we make to the bindings will be contributed directly to upstream web_sys.

By @​cwfitzgerald in #5325.

Bug Fixes

General

  • Fix an issue where command encoders weren't properly freed if an error occurred during command encoding. By @​ErichDonGubler in #5251.

Android

v0.19.2 (2024-02-29)

Added/New Features

General

OpenGL

wgsl-out

  • Learned to generate acceleration structure types. By @​JMS55 in #5261

Documentation

  • Fix link in wgpu::Instance::create_surface documentation. By @​HexoKnight in #5280.
  • Fix typo in wgpu::CommandEncoder::clear_buffer documentation. By @​PWhiddy in #5281.
  • Surface configuration incorrectly claimed that wgpu::Instance::create_surface was unsafe. By @​hackaugusto in #5265.

Bug Fixes

General

  • Device lost callbacks are invoked when replaced and when global is dropped. By @​bradwerth in #5168
  • Fix performance regression when allocating a large amount of resources of the same type. By @​nical in #5229
  • Fix docs.rs wasm32 builds. By @​cwfitzgerald in #5310
  • Improve error message when binding count limit hit. By @​hackaugusto in #5298
  • Remove an unnecessary clone during GLSL shader injestion. By @​a1phyr in #5118.
  • Fix missing validation for Device::clear_buffer where offset + size > buffer.size was not checked when size was omitted. By @​ErichDonGubler in #5282.

... (truncated)

Commits
  • 9f505e7 Versions
  • 75fd689 wgpu-hal: add ndk-sys dependency to fix linking error. (#5326)
  • bb09828 Vendor WebGPU Bindings from web_sys (#5325)
  • d189cf2 fix: discard cmd. enc. buf. on wgpu_core::Global::command_encoder_drop
  • be8c7e6 fix(gles): discard cmd. enc. buf. on drop
  • 45ef175 fix(dx12): discard cmd. enc. buf. on drop
  • 61d779d Versions
  • f8355a8 [wgpu-hal.gles] Error log for failed GLES heuristics (#5266)
  • 7214da6 Fix missing validation for Device::clear_buffer where `offset + size > buff...
  • c27f743 Avoid a clone when creating a Glsl shader (#5118)
  • Additional commits viewable in compare view

Updates winit from 0.29.11 to 0.29.13

Release notes

Sourced from winit's releases.

Winit version 0.29.13

  • On Web, fix possible crash with ControlFlow::Wait and ControlFlow::WaitUntil.

Winit version 0.29.12

  • On X11, fix use after free during xinput2 handling.
  • On X11, filter close to zero values in mouse device events
Changelog

Sourced from winit's changelog.

0.29.13

  • On Web, fix possible crash with ControlFlow::Wait and ControlFlow::WaitUntil.

0.29.12

  • On X11, fix use after free during xinput2 handling.
  • On X11, filter close to zero values in mouse device events
Commits
  • b1dad45 Winit version 0.29.13
  • 8d66df7 Web: fix crash with ControlFlow::Wait|WaitUntil
  • 1c5fcf3 Winit version 0.29.12
  • 58c89c1 On X11, fix use after free during xinput2 processing
  • 2dae807 On X11, filter out tiny device mouse events
  • See full diff in compare view

Updates log from 0.4.20 to 0.4.21

Changelog

Sourced from log's changelog.

[0.4.21] - 2024-02-27

What's Changed

New Contributors

Commits
  • 3ccdc28 Merge pull request #617 from rust-lang/cargo/0.4.21
  • 6153cb2 prepare for 0.4.21 release
  • f0f7494 Merge pull request #613 from rust-lang/feat/kv-cleanup
  • 2b220bf clean up structured logging example
  • 646e9ab use original Visitor name for VisitValue
  • cf85c38 add needed subfeatures to kv_unstable
  • 73e9539 fix up capturing of :err
  • 31bb4b0 move error macros together
  • ad91711 support field shorthand in macros
  • 90a347b restore removed APIs as deprecated
  • Additional commits viewable in compare view

Updates octocrab from 0.34.1 to 0.34.2

Release notes

Sourced from octocrab's releases.

v0.34.2

Other

  • Update base64 requirement from 0.21.0 to 0.22.0 (#592)
  • Add Public and Release events (#589)
  • Adding tests for actions().remove_selected_repo_from_org_secret() (#586)
  • Fixed the `projects().delete_project().send() function (#587)
  • Added more tests, for repos().delete() (#585)
  • Adding test for actions().actions_delete_workflow_run_logs_test() (#584)
  • Fixing snafu version update (#580)
  • Fixing the test that [email protected] breaks. (#579)
  • Added some more tests (#578)
  • Added a test (#577)
Changelog

Sourced from octocrab's changelog.

0.34.2 - 2024-03-04

Other

  • Update base64 requirement from 0.21.0 to 0.22.0 (#592)
  • Add Public and Release events (#589)
  • Adding tests for actions().remove_selected_repo_from_org_secret() (#586)
  • Fixed the `projects().delete_project().send() function (#587)
  • Added more tests, for repos().delete() (#585)
  • Adding test for actions().actions_delete_workflow_run_logs_test() (#584)
  • Fixing snafu version update (#580)
  • Fixing the test that [email protected] breaks. (#579)
  • Added some more tests (#578)
  • Added a test (#577)
Commits

Updates tempfile from 3.10.0 to 3.10.1

Changelog

Sourced from tempfile's changelog.

3.10.1

  • Handle potential integer overflows in 32-bit systems when seeking/truncating "spooled" temporary files past 4GiB (2³²).
  • Handle a theoretical 32-bit overflow when generating a temporary file name larger than 4GiB. Now it'll panic (on allocation failure) rather than silently succeeding due to wraparound.

Thanks to @​stoeckmann for finding and fixing both of these issues.

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 cargo group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [wgpu](https://github.com/gfx-rs/wgpu) | `0.19.1` | `0.19.3` |
| [winit](https://github.com/rust-windowing/winit) | `0.29.11` | `0.29.13` |
| [log](https://github.com/rust-lang/log) | `0.4.20` | `0.4.21` |
| [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.34.1` | `0.34.2` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.10.0` | `3.10.1` |


Updates `wgpu` from 0.19.1 to 0.19.3
- [Release notes](https://github.com/gfx-rs/wgpu/releases)
- [Changelog](https://github.com/gfx-rs/wgpu/blob/v0.19.3/CHANGELOG.md)
- [Commits](gfx-rs/wgpu@v0.19.1...v0.19.3)

Updates `winit` from 0.29.11 to 0.29.13
- [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.29.11...v0.29.13)

Updates `log` from 0.4.20 to 0.4.21
- [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.20...0.4.21)

Updates `octocrab` from 0.34.1 to 0.34.2
- [Release notes](https://github.com/XAMPPRocky/octocrab/releases)
- [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md)
- [Commits](XAMPPRocky/octocrab@v0.34.1...v0.34.2)

Updates `tempfile` from 3.10.0 to 3.10.1
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.10.0...v3.10.1)

---
updated-dependencies:
- 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: log
  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-patch
  dependency-group: cargo
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from hannobraun as a code owner March 4, 2024 13:39
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Mar 4, 2024
As of wgpu 0.19.3, this is no longer required.
@hannobraun hannobraun enabled auto-merge March 4, 2024 13:48
@hannobraun hannobraun merged commit e099bdd into main Mar 4, 2024
4 checks passed
@hannobraun hannobraun deleted the dependabot/cargo/cargo-2e0cccf3b2 branch March 4, 2024 13:53
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