From 7d74cedf275b684d8abd0c2ee281ff6a8adde8ef Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Mon, 21 Feb 2022 22:26:47 -0500 Subject: [PATCH] version bump to v1.13.3 --- CHANGELOG.md | 7 +++++++ lib/nokogiri/version/constant.rb | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e73ed4a5d..90ee0a4bab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ Nokogiri follows [Semantic Versioning](https://semver.org/), please see the [REA --- +## 1.13.3 / 2022-02-21 + +### Fixed + +* [CRuby] Revert a HTML4 parser bug in libxml 2.9.13 (introduced in Nokogiri v1.13.2). The bug causes libxml2's HTML4 parser to fail to recover when encountering a bare `<` character in some contexts. This version of Nokogiri restores the earlier behavior, which is to recover from the parse error and treat the `<` as normal character data (which will be serialized as `<` in a text node). The bug (and the fix) is only relevant when the `RECOVER` parse option is set, as it is by default. [[#2461](https://github.com/sparklemotion/nokogiri/issues/2461)] + + ## 1.13.2 / 2022-02-21 ### Security diff --git a/lib/nokogiri/version/constant.rb b/lib/nokogiri/version/constant.rb index ab6f8f5d92..99be373d5f 100644 --- a/lib/nokogiri/version/constant.rb +++ b/lib/nokogiri/version/constant.rb @@ -2,5 +2,5 @@ module Nokogiri # The version of Nokogiri you are using - VERSION = "1.13.2" + VERSION = "1.13.3" end