From ffe3b124a77a0c0c108d76419f8f4aa7ce1b54da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Fri, 3 Oct 2025 18:59:40 +0200 Subject: [PATCH 1/2] feat: update to rapier 0.30.0 --- builds/prepare_builds/templates/Cargo.toml.tera | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builds/prepare_builds/templates/Cargo.toml.tera b/builds/prepare_builds/templates/Cargo.toml.tera index 7a01f1b5..2ca7cb19 100644 --- a/builds/prepare_builds/templates/Cargo.toml.tera +++ b/builds/prepare_builds/templates/Cargo.toml.tera @@ -27,7 +27,7 @@ rust.unexpected_cfgs = { level = "warn", check-cfg = [ ] } [dependencies] -rapier{{ dimension }}d = { version = "0.29.0", features = [ +rapier{{ dimension }}d = { version = "0.30.0", features = [ "serde-serialize", "debug-render", "profiler", From 7b0beb6c6bfa5015a13ae1c5ce41d782de7cb8a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Fri, 3 Oct 2025 19:02:32 +0200 Subject: [PATCH 2/2] Release v0.19.1 --- CHANGELOG.md | 8 ++++++++ builds/prepare_builds/templates/Cargo.toml.tera | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eba5e2d5..360de005 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### 0.19.1 (03 Oct. 2025) + +### Modified + +- Update to Rapier 0.30.0. The only change is a [switch to a sparse storage](https://github.com/dimforge/parry/pull/380) + for the Voxels shapes. This allows support for orders of magnitudes larger maps without reaching the 4GB WASM memory + limit. + ### 0.19.0 (05 Sept. 2025) ### Modified diff --git a/builds/prepare_builds/templates/Cargo.toml.tera b/builds/prepare_builds/templates/Cargo.toml.tera index 2ca7cb19..c4b6569e 100644 --- a/builds/prepare_builds/templates/Cargo.toml.tera +++ b/builds/prepare_builds/templates/Cargo.toml.tera @@ -1,6 +1,6 @@ [package] name = "dimforge_{{ js_package_name }}" # Can't be named rapier{{ dimension }}d which conflicts with the dependency. -version = "0.19.0" +version = "0.19.1" authors = ["Sébastien Crozet "] description = "{{ dimension }}-dimensional physics engine in Rust - official JS bindings." documentation = "https://rapier.rs/rustdoc/rapier{{ dimension }}d/index.html"