From 992b0549326923c84f8ffea5fde67a9b1b685184 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Tue, 10 Oct 2023 13:54:25 -0400 Subject: [PATCH] version bump to v2.21.4 --- CHANGELOG.md | 9 +++++++++ lib/loofah/version.rb | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6ad377..4ec8ec2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,16 @@ # Changelog +## 2.21.4 / 2023-10-10 + +### Fixed + +* `Loofah::HTML5::Scrub.scrub_css` is more consistent in preserving whitespace (and lack of whitespace) in CSS property values. In particular, `.scrub_css` no longer inserts whitespace between tokens that did not already have whitespace between them. [[#273](https://github.com/flavorjones/loofah/issues/273), fixes [#271](https://github.com/flavorjones/loofah/issues/271)] + + ## 2.21.3 / 2023-05-15 +### Fixed + * Quash "instance variable not initialized" warning in Ruby < 3.0. [[#268](https://github.com/flavorjones/loofah/issues/268)] (Thanks, [@dharamgollapudi](https://github.com/dharamgollapudi)!) diff --git a/lib/loofah/version.rb b/lib/loofah/version.rb index ba480c3..fd26694 100644 --- a/lib/loofah/version.rb +++ b/lib/loofah/version.rb @@ -2,5 +2,5 @@ module Loofah # The version of Loofah you are using - VERSION = "2.21.3" + VERSION = "2.21.4" end