Skip to content

Commit

Permalink
Merge pull request #693 from casperisfine/update-changelog
Browse files Browse the repository at this point in the history
Release 2.8.0
  • Loading branch information
byroot authored Nov 6, 2024
2 parents f5812d8 + 8071cc6 commit b9c8024
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
# Changes

### UNRELEASED
### 2024-11-06 (2.8.0)

* 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`.
* Bump required Ruby version to 2.7.
* Add support for optionally parsing trailing commas, via `allow_trailing_comma: true`, which in cunjunction with the
pre-existing support for comments, make it suitable to parse `jsonc` documents.
* Many performance improvements to `JSON.parse` and `JSON.load`, up to `1.7x` faster on real world documents.
* Some minor performance improvements to `JSON.dump` and `JSON.generate`.

### 2024-11-04 (2.7.6)

Expand Down
2 changes: 1 addition & 1 deletion lib/json/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module JSON
VERSION = '2.8.0.alpha1'
VERSION = '2.8.0'
end

0 comments on commit b9c8024

Please sign in to comment.