CHANGES.md in json-2.7.6-java vs CHANGES.md in json-2.8.0.alpha1
- old
+ new
@@ -1,6 +1,14 @@
# Changes
+### UNRELEASED
+
+* Emit a deprecation warning when `JSON.load` create custom types without the `create_additions` option being explictly enabled.
+ * Prefer to use `JSON.unsafe_load(string)` or `JSON.load(string, create_additions: true)`.
+* Emit a deprecation warning when serializing valid UTF-8 strings encoded in `ASCII_8BIT` aka `BINARY`.
+* Bump required_ruby_version to 2.7.
+* More performance improvments to `JSON.dump` and `JSON.generate`.
+
### 2024-11-04 (2.7.6)
* Fix a regression in JSON.generate when dealing with Hash keys that are string subclasses, call `to_json` on them.
### 2024-10-25 (2.7.5)