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

fix(kernel): json deserialization fails on null value #4000

Merged
merged 2 commits into from
Mar 13, 2023

Commits on Mar 13, 2023

  1. fix(kernel): json deserialization fails on null value

    The JSON serialization class is a quasi-synonym for `Map<string, any>`,
    except it is meant to accept any valid JSON object, including one with
    `null` values. The serializer was however interpreting these as
    `Map<string, JSON>` when wired as a `$jsii.map` envelope, and this
    serialization class does NOT allow for null values.
    RomainMuller committed Mar 13, 2023
    Configuration menu
    Copy the full SHA
    18b25f3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7fd7819 View commit details
    Browse the repository at this point in the history