Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make Object and JsonElement deserialization iterative #1912

Merged

Commits on Jun 19, 2021

  1. Make Object and JsonElement deserialization iterative

    Often when Object and JsonElement are deserialized the format of the JSON
    data is unknown and it might come from an untrusted source. To avoid a
    StackOverflowError from maliciously crafted JSON, deserialize Object and
    JsonElement iteratively instead of recursively.
    
    Concept based on FasterXML/jackson-databind@51fd2fa
    But implementation is not based on it.
    Marcono1234 committed Jun 19, 2021
    Copy the full SHA
    539952e View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2022

  1. Copy the full SHA
    e35f674 View commit details
    Browse the repository at this point in the history
  2. Improve imports grouping

    Marcono1234 committed Feb 5, 2022
    Copy the full SHA
    dce0d06 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2022

  1. Copy the full SHA
    e1f5a59 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2022

  1. Address review feedback

    Marcono1234 committed May 22, 2022
    Copy the full SHA
    f7d3c18 View commit details
    Browse the repository at this point in the history