diff --git a/serde_json_path/CHANGELOG.md b/serde_json_path/CHANGELOG.md index 92b0ec4..3948610 100644 --- a/serde_json_path/CHANGELOG.md +++ b/serde_json_path/CHANGELOG.md @@ -10,8 +10,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - **fixed**: edge case where `.` in regexes for `match` and `search` functions was matching `\r\n` properly ([#92]) - **breaking**: added `regex` feature flag that gates regex functions `match` and `search` - Feature is enabled by default, but if you have `default-features = false` you'll need to explicitly add it to retain access to these functions +- **fixed**(`serde_json_path_core`): ensure integers used as indices are within the [valid range for I-JSON][i-json-range] ([#98]) [#92]: https://github.com/hiltontj/serde_json_path/pull/92 +[#98]: https://github.com/hiltontj/serde_json_path/pull/98 +[i-json-range]: https://www.rfc-editor.org/rfc/rfc9535.html#section-2.1-4.1 # 0.6.7 (3 March 2024) diff --git a/serde_json_path_core/CHANGELOG.md b/serde_json_path_core/CHANGELOG.md index 0467a4e..8961cf8 100644 --- a/serde_json_path_core/CHANGELOG.md +++ b/serde_json_path_core/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +- **fixed**: ensure integers used as indices are within the [valid range for I-JSON][i-json-range] ([#98]) + +[#98]: https://github.com/hiltontj/serde_json_path/pull/98 +[i-json-range]: https://www.rfc-editor.org/rfc/rfc9535.html#section-2.1-4.1 + # 0.1.6 (3 March 2024) - **testing**: support tests for non-determinism in compliance test suite ([#85])