This has occurred at least once in Azure.AI.Translation.Document.
Changing a parameter type in a GAd library is a breaking change:
public virtual Azure.Response<Azure.AI.Translation.Document.SupportedFileFormats> GetSupportedFormats(Azure.AI.Translation.Document.FileFormatType? type = default(Azure.AI.Translation.Document.FileFormatType?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
to
public virtual Azure.Response<Azure.AI.Translation.Document.SupportedFileFormats> GetSupportedFormats(Azure.AI.Translation.Document.FileFormatType type, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
We should add back compat support to detect this scenario and avoid generating a breaking change.
This has occurred at least once in Azure.AI.Translation.Document.
Changing a parameter type in a GAd library is a breaking change:
to
We should add back compat support to detect this scenario and avoid generating a breaking change.