🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

json

Package Overview
Dependencies
Maintainers
1
Versions
131
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

json - rubygems Package Compare versions

Comparing version
2.19.2
to
2.19.3
+5
-1
CHANGES.md

@@ -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 @@

+3
-1

@@ -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