Releases: mariazevedo88/json-formatter-validator
Releases · mariazevedo88/json-formatter-validator
v.2.0.5
- Fixing bugs related to formatting an empty String;
- Fixing JSONArray format and validation;
- Fixing format and validation to evaluate a JsonElement and not only a JsonObject;
- Improving tests coverage;
- Separating object definition into a model;
- Separating formatter and validation/filter functions into a service package;
- Updating project plugins;
- Correcting project javadoc.
v.2.0.3
- Refactoring to reduce cyclomatic complexity on methods.
- Update README.md
v.2.0.2
- Correcting mute logs and mute exceptions behavior.
- Update README.md
v.2.0.1
- Implementing flag to muteException and return a null object if the JSON is malformatted.
- Update README.md
v.2.0.0
This release contains three awesome new features:
- Remove one or more specific parameters from the string before formatting it as a valid JSON.
- Filter one or more string-specific parameters and create a new string from the filter result before formatting it as a valid JSON.
- You can also mute the logs. Thus, the formatting of the results doesn't show up on your terminal or console of your IDE.
v.1.1.9
- Adding treatment to cases with double commas, parentheses, and colon wrongly placed.
- Adding test cases related.
v.1.1.8
- Code improvements
v.1.1.7
- Verification improvements when the string is an empty string.
- Code improvements: a new class named DelimitersEnum, to map all characters that are used as a reference to format the string as a valid JSON.
- Increasing new test cases for JSON files, JSON values, and invalid characters.
- Increasing badges on the repository.
v.1.1.6
- Improvements on pom.xml to be able to upload project on https://oss.sonatype.org/#json-formatter-validator
v.1.1.5
- Improvements after implementing unit tests