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 6 updates #2395

Merged
merged 2 commits into from
Jun 24, 2024
Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 24, 2024

Bumps the cargo group with 6 updates:

Package From To
nalgebra 0.32.6 0.33.0
parry2d-f64 0.15.1 0.16.0
parry3d-f64 0.15.1 0.16.0
bytemuck 1.16.0 1.16.1
winit 0.30.2 0.30.3
url 2.5.1 2.5.2

Updates nalgebra from 0.32.6 to 0.33.0

Changelog

Sourced from nalgebra's changelog.

[0.33.0] (23 June 2024)

Fixed

  • Fix a memory leak in Matrix::generic_resize.
  • Fix glm::is_null to check the vector magnitude instead of individual components.
  • Ensure that inverting a 4x4 matrix leaves it unchanged if the inversion fails.

Added

  • Add the glam-0.28 feature to enable conversion from/to types from glam v0.28.
  • Add a stack! macro for concatenating matrices. See #1375.

Modified

  • The cuda feature has been removed, as the toolchain it depends on is long abandoned.
  • Update to simba 0.9. See the changelog of simba for details.
  • Update the nalgebra-macros crate to syn 2.0.
  • Remove the scalar type T from the Allocator trait parameters. Instead of Allocator<T, R, C>, use the simpler Allocator<R, C>.
Commits

Updates parry2d-f64 from 0.15.1 to 0.16.0

Changelog

Sourced from parry2d-f64's changelog.

v0.16.0

Fix

  • Fix edge case where some of the principal angular inertia are clamped to zero for decimeter-sized objects.
  • Have ball-ball shape casting take into account the stop_on_penetration flags.
  • Don’t panic in EPA for a corner case that needs some additional debugging. Show a debug log instead.

Added

  • Implement concave polygons intersections: polygons_intersection_points, polygon_intersection.

Modified

  • Update bitflags to version ^2.3
  • Update nalgebra to 0.33.
  • Update indexmap to 2.
Commits

Updates parry3d-f64 from 0.15.1 to 0.16.0

Changelog

Sourced from parry3d-f64's changelog.

v0.16.0

Fix

  • Fix edge case where some of the principal angular inertia are clamped to zero for decimeter-sized objects.
  • Have ball-ball shape casting take into account the stop_on_penetration flags.
  • Don’t panic in EPA for a corner case that needs some additional debugging. Show a debug log instead.

Added

  • Implement concave polygons intersections: polygons_intersection_points, polygon_intersection.

Modified

  • Update bitflags to version ^2.3
  • Update nalgebra to 0.33.
  • Update indexmap to 2.
Commits

Updates bytemuck from 1.16.0 to 1.16.1

Changelog

Sourced from bytemuck's changelog.

1.16.1

  • NOT SEMVER SUPPORTED: Adds the nightly_float Cargo feature. This activates the f16 and f128 nightly features, and then provides Zeroable and Pod impls for those types.
Commits

Updates winit from 0.30.2 to 0.30.3

Release notes

Sourced from winit's releases.

Winit version 0.30.3

Added

  • On Web, add EventLoopExtWebSys::(set_)poll_strategy() to allow setting control flow strategies before starting the event loop.
  • On Web, add WaitUntilStrategy, which allows to set different strategies for ControlFlow::WaitUntil. By default the Prioritized Task Scheduling API is used, with a fallback to setTimeout() with a trick to circumvent throttling to 4ms. But an option to use a Web worker to schedule the timer is available as well, which commonly prevents any throttling when the window is not focused.

Changed

  • On macOS, set the window theme on the NSWindow instead of application-wide.

Fixed

  • On X11, build on arm platforms.
  • On macOS, fixed WindowBuilder::with_theme not having any effect on the window.
Commits

Updates url from 2.5.1 to 2.5.2

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 6 updates:

| Package | From | To |
| --- | --- | --- |
| [nalgebra](https://github.com/dimforge/nalgebra) | `0.32.6` | `0.33.0` |
| [parry2d-f64](https://github.com/dimforge/parry) | `0.15.1` | `0.16.0` |
| [parry3d-f64](https://github.com/dimforge/parry) | `0.15.1` | `0.16.0` |
| [bytemuck](https://github.com/Lokathor/bytemuck) | `1.16.0` | `1.16.1` |
| [winit](https://github.com/rust-windowing/winit) | `0.30.2` | `0.30.3` |
| [url](https://github.com/servo/rust-url) | `2.5.1` | `2.5.2` |


Updates `nalgebra` from 0.32.6 to 0.33.0
- [Changelog](https://github.com/dimforge/nalgebra/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dimforge/nalgebra/commits)

Updates `parry2d-f64` from 0.15.1 to 0.16.0
- [Changelog](https://github.com/dimforge/parry/blob/master/CHANGELOG.md)
- [Commits](https://github.com/dimforge/parry/commits/v0.16.0)

Updates `parry3d-f64` from 0.15.1 to 0.16.0
- [Changelog](https://github.com/dimforge/parry/blob/master/CHANGELOG.md)
- [Commits](https://github.com/dimforge/parry/commits/v0.16.0)

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

Updates `winit` from 0.30.2 to 0.30.3
- [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.30.2...v0.30.3)

Updates `url` from 2.5.1 to 2.5.2
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](servo/rust-url@v2.5.1...v2.5.2)

---
updated-dependencies:
- dependency-name: nalgebra
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: parry2d-f64
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: parry3d-f64
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: bytemuck
  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: url
  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 June 24, 2024 12:25
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jun 24, 2024
@hannobraun hannobraun merged commit 1c48948 into main Jun 24, 2024
3 checks passed
@hannobraun hannobraun deleted the dependabot/cargo/cargo-e40c48cbc3 branch June 24, 2024 13:05
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