json
Advanced tools
+5
-1
@@ -5,4 +5,8 @@ # Changes | ||
| ### 2026-03-08 (2.19.2) | ||
| ### 2026-03-25 (2.19.3) | ||
| * Fix handling of unescaped control characters preceeded by a backslash. | ||
| ### 2026-03-18 (2.19.2) | ||
| * Fix a format string injection vulnerability in `JSON.parse(doc, allow_duplicate_key: false)`. | ||
@@ -9,0 +13,0 @@ |
@@ -761,3 +761,5 @@ #include "../json.h" | ||
| } | ||
| } else if (config->allow_invalid_escape) { | ||
| } | ||
| if (config->allow_invalid_escape) { | ||
| APPEND_CHAR(*pe); | ||
@@ -764,0 +766,0 @@ } else { |
| # frozen_string_literal: true | ||
| module JSON | ||
| VERSION = '2.19.2' | ||
| VERSION = '2.19.3' | ||
| end |