You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Support writing directly into file in JsonRenderer (#388)
Previously, openapi-diff rendered the JSON output into a string and wrote the string representation into the designated output file.
This failed with an `OutOfMemoryError` for very large outputs.
This change set introduces a method in `JsonRenderer` to write the JSON output directly into a file and removes the verbatim copy of the old and new OpenAPI specs (`oldSpecOpenApi` and `newSpecOpenApi`) from the JSON output.
0 commit comments