From 7ea2b126f25389b3e87732d45d327abf5c93e15a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 10:05:02 +0000 Subject: [PATCH 1/3] Bump haml from 6.3.0 to 7.2.0 Bumps [haml](https://github.com/haml/haml) from 6.3.0 to 7.2.0. - [Release notes](https://github.com/haml/haml/releases) - [Changelog](https://github.com/haml/haml/blob/main/CHANGELOG.md) - [Commits](https://github.com/haml/haml/compare/v6.3.0...v7.2.0) --- updated-dependencies: - dependency-name: haml dependency-version: 7.2.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 414a40d779..2215a111db 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -385,7 +385,7 @@ GEM good_migrations (0.3.1) activerecord (>= 3.1) railties (>= 3.1) - haml (6.3.0) + haml (7.2.0) temple (>= 0.8.2) thor tilt From eff1ed4a5ef2617396b1138e951abc87c17c2fd1 Mon Sep 17 00:00:00 2001 From: Gaetan Craig-Riou Date: Tue, 24 Mar 2026 09:28:45 +1100 Subject: [PATCH 2/3] Upgrade `haml-lint` --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 2215a111db..cf854d0292 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -389,7 +389,7 @@ GEM temple (>= 0.8.2) thor tilt - haml_lint (0.68.0) + haml_lint (0.72.0) haml (>= 5.0) parallel (~> 1.10) rainbow From 6c4ae1d2c13d19b0e7675e7f78da1236d60d0829 Mon Sep 17 00:00:00 2001 From: Gaetan Craig-Riou Date: Tue, 24 Mar 2026 09:29:19 +1100 Subject: [PATCH 3/3] Fix spec --- spec/views/registration/steps/_details.html.haml_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/views/registration/steps/_details.html.haml_spec.rb b/spec/views/registration/steps/_details.html.haml_spec.rb index e1c5b4332d..1dc9e1a554 100644 --- a/spec/views/registration/steps/_details.html.haml_spec.rb +++ b/spec/views/registration/steps/_details.html.haml_spec.rb @@ -6,13 +6,13 @@ RSpec.describe "registration/steps/_details.html.haml" do it "uses Google Maps when it is enabled" do allow(view).to receive_messages(using_google_maps?: true) - is_expected.to match // + is_expected.to match // end it "uses OpenStreetMap when it is enabled" do ContentConfig.open_street_map_enabled = true allow(view).to receive_messages(using_google_maps?: false) - is_expected.to match /
/ + is_expected.to match /
/ end end