# Release History ## 1.1.0 (2023-08-04) ### Features Added - Added `getRawText` method to `JsonReader` ## 1.0.1 (2023-05-04) ### Other Changes - Changed `UncheckedIOException` to `IOException` in `JsonReader.reset` method as it's checked with `IOException`. - Changed max nesting depth in `JsonReader.readUntyped` from 1000 to 999. ## 1.0.0 (2023-04-07) - Initial GA. Please see the README for more information. ### Breaking Changes - Renamed `JsonReader.resetSupported` to `JsonReader.isResetSupported`. - Removed all overloads in `JsonProvider` that didn't accept `JsonOptions`. ## 1.0.0-beta.3 (2023-03-02) ### Bugs Fixed - Fixed a bug when buffering JSON where text fields weren't maintaining proper encoding. ([#33406](https://github.com/Azure/azure-sdk-for-java/pull/33406)) ## 1.0.0-beta.2 (2023-02-01) ### Features Added - Add `JsonReader.readRemainingFieldsAsJsonObject` to support reading the remainder of a JSON object from a field starting point. ### Bugs Fixed - Fixed a bug where the default `JsonReader` would throw an exception if the starting `JsonToken` was a field name not followed by a start object when calling `bufferObject`. Buffering now supports field starting points. ## 1.0.0-beta.1 (2022-09-22) - Initial release. Please see the README for more information.