Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .autover/changes/1916e292-d131-4c9a-8036-0d7b68f0ce7a.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"Projects": [
{
"Name": "Amazon.Lambda.CognitoEvents",
"Type": "Patch",
"ChangelogMessages": [
"[Breaking Change] Fix issue around not handling null value during deserialization for `ForceAliasCreation` by making it nullable."
]
}
]
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using System.Runtime.Serialization;

namespace Amazon.Lambda.CognitoEvents
Expand Down Expand Up @@ -51,6 +51,6 @@ public class CognitoMigrateUserResponse : CognitoTriggerResponse
#if NETCOREAPP3_1_OR_GREATER
[System.Text.Json.Serialization.JsonPropertyName("forceAliasCreation")]
#endif
public bool ForceAliasCreation { get; set; }
public bool? ForceAliasCreation { get; set; }
}
}