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
Change the order of properties is breaking change in .net SDK.
Though we might somehow do customization to mitigate,
It looks so common. We don't want to do so many customizations.
If there is a new property added in XXXProperties (in this case, customer does add a new property to ExperimentProperties), it would be a disaster to mitigate.
Further, if identity is type of string, experimentProperties contains xxx: string. the order changes from (string identity, string xxx) to (string xxx, string identity). There is no solution to customize.
The text was updated successfully, but these errors were encountered:
Think about this case:
identity
is in front ofproperties
.Transform it into TypeSpec:
identity
goes afterproperties
.Change the order of properties is breaking change in .net SDK.
Though we might somehow do customization to mitigate,
identity
is type ofstring
,experimentProperties
containsxxx: string
. the order changes from(string identity, string xxx)
to(string xxx, string identity)
. There is no solution to customize.The text was updated successfully, but these errors were encountered: