Skip to content

Bump wgpu from 29.0.4 to 30.0.1 - #1

Merged
stoatworks-labs merged 1 commit into
mainfrom
dependabot/cargo/wgpu-30.0.0
Aug 27, 2026
Merged

Bump wgpu from 29.0.4 to 30.0.1#1
stoatworks-labs merged 1 commit into
mainfrom
dependabot/cargo/wgpu-30.0.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 4, 2026

Copy link
Copy Markdown
Contributor

Bumps wgpu from 29.0.4 to 30.0.1.

Changelog

Sourced from wgpu's changelog.

v30.0.1 (2026-08-21)

Bug Fixes

Vulkan

  • Stop passing an un-waited fence to vkAcquireNextImageKHR on non-Windows platforms, which triggered VUID-vkAcquireNextImageKHR-fence-10066 validation errors every frame since v30.0.0. By @​ErichDonGubler in #9855.

Metal

WebGPU

  • Upgrade vendored WebGPU bindings and wasm-bindgen to 0.2.127. This fixes a panic “can't access property "info", arg0 is null” when using the WebGPU backend and requestAdapter() fails. By @​beicause in #10034, backported in #10105.

v30.0.0 (2026-07-01)

Major changes

Optional vertex buffer slots

This allows gaps in VertexState's buffers and adds support for unbinding vertex buffers, bringing us in compliance with the WebGPU spec. As a result of this, VertexState's buffers field now has type of &[Option<VertexBufferLayout>]. To migrate, wrap vertex buffer layouts in Some:

  let vertex_state = wgpu::VertexState {
      module: &vs_module,
      entry_point: Some("vs_main"),
      compilation_options: wgpu::PipelineCompilationOptions::default(),
      buffers: &[
-         &vertex_buffer_layout
+         Some(&vertex_buffer_layout)
      ],
  };

By @​teoxoy in #9351.

Integer shader I/O no longer defaults to @interpolate(flat)

To align with the shading language specifications, naga no longer assumes that integer-typed shader I/O should have flat interpolation, i.e., should not be interpolated. Even though flat interpolation is the only choice for integer I/O, it must be still specified explicitly.

WGSL:

 struct FragmentInput {
     @location(0) tex_coord: vec2<f32>,
-    @location(1) index: i32,
+    @location(1) @interpolate(flat) index: i32,
 }
</tr></table> 

... (truncated)

Commits
  • 40f4a34 Release v30.0.1
  • 5e1084c fix(metal): Resolve some color space constants dynamically (#9819)
  • 8bc5e2b Backport "Re-vendor WebGPU bindings (#10034)" to v30. (#10105)
  • 42738aa backport: fix: use vk::Fence::null on non-Windows swapchain (#9918)
  • 1464540 Remove example warning
  • 8bf3e5f Update to v30 (#9790)
  • aa2b790 [core] filter native-only features and limits if
  • 2ea3a1d [vulkan] advertise DownlevelFlags::SURFACE_VIEW_FORMATS if `VK_KHR_swapchai...
  • 69e66d8 add DENO_WEBGPU_STRICT_COMPLIANCE and set it for the CTS job
  • 995ee7b add Limits::max_buffers_and_acceleration_structures_per_shader_stage
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Aug 4, 2026
Bumps [wgpu](https://github.com/gfx-rs/wgpu) from 29.0.4 to 30.0.1.
- [Release notes](https://github.com/gfx-rs/wgpu/releases)
- [Changelog](https://github.com/gfx-rs/wgpu/blob/trunk/CHANGELOG.md)
- [Commits](gfx-rs/wgpu@v29.0.4...v30.0.1)

---
updated-dependencies:
- dependency-name: wgpu
  dependency-version: 30.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title Bump wgpu from 29.0.4 to 30.0.0 Bump wgpu from 29.0.4 to 30.0.1 Aug 27, 2026
@dependabot
dependabot Bot force-pushed the dependabot/cargo/wgpu-30.0.0 branch from f74da58 to 229ec33 Compare August 27, 2026 14:13
@stoatworks-labs
stoatworks-labs merged commit 842626f into main Aug 27, 2026
1 check failed
@stoatworks-labs
stoatworks-labs deleted the dependabot/cargo/wgpu-30.0.0 branch August 27, 2026 14:23
stoatworks-labs added a commit that referenced this pull request Aug 27, 2026
wgpu 29.0.4 -> 30.0.1 (#1) was merged on the strength of a local build check
that was silently broken -- the check piped cargo through tail, so it read
tail's exit status and reported success unconditionally. main has not
compiled since:

  error[E0063]: missing field `apply_limit_buckets` in initializer of
                `RequestAdapterOptions`
  error[E0608]: cannot index into a value of type `Result<BufferView, ...>`

wgpu 30 changes RequestAdapterOptions and the buffer-mapping API; taking it
needs real source work. Reverting to get main building again.

pollster (#2) and roxmltree (#4) are untouched -- they were not the problem.

Verified after revert: cargo build --all-targets clean, cargo test clean.
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