Closed normj closed 3 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 62.35%. Comparing base (
b390e37
) to head (e2ed984
). Report is 2 commits behind head on dev.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Issue #, if available: https://github.com/aws/aws-toolkit-visual-studio/issues/462
Description of changes: The generated CDK projects have
TreatWarningsAsErrors
as true which makes deployments start failing immediately when a dependency has a listed vulnerability. In this case System.Text.Json has a listed failure which causes the generated CDK project fail to build preventing deployment.This PR updates the version of
System.Text.Json
which was actually coming in as a transitive dependency fromMicrosoft.Extensions.Configuration.Json
. It also removes theTreatWarningsAsErrors
property from the generated projects because we have no control when a package might be listed as vulnerable and we don't one deployments to just start failing when that happens.By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.