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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
5.1.0 (2021-07-07)
New features
Added support for service version 3.0. This can be specified in the TextAnalyticsClientOptions object under the ServiceVersion enum. By default the SDK targets latest supported service version.
Added AAD support for the StartAnalyzeHealthcareEntities methods.
Added value None to enum PiiEntityDomainType to allow user to specify no domain.
Added new overload methods to all xxActions types that take a xxOptions object to facilitate a transition from a singular method to an actions method.
The parameter CategoriesFilter in RecognizePiiEntitiesActions has been enabled for StartAnalyzeActions methods.
Breaking changes
Changed behavior in StartAnalyzeActions and StartAnalyzeActionsAsync where now accepts a single action per action type. An ArgumentException is raised if duplicate actions are passed.
Changed type RecognizePiiEntitiesOptions.DomainFilter from PiiEntityDomainType? to PiiEntityDomainType.
Changed type AnalyzeActionsOptions.IncludeStatistics from bool to bool?.
Renamed StartAnalyzeBatchActions to StartAnalyzeActions.
Renamed AnalyzeBatchActionsOperation to AnalyzeActionsOperation.
Renamed AnalyzeBatchActionsResult to AnalyzeActionsResult.
Renamed AnalyzeBatchActionsOptions to AnalyzeActionsOptions.
TextAnalyticsActions now takes xxAction types, instead of xxOptions types. Renames and types are as follow:
ExtractKeyPhrasesOptions changed to new type ExtractKeyPhrasesActions.
RecognizeEntitiesOptions changed to new type RecognizeEntitiesActions.
RecognizePiiEntitiesOptions changed to new type RecognizePiiEntitiesActions.
RecognizeLinkedEntitiesOptions changed to new type RecognizeLinkedEntitiesActions.
AnalyzeSentimentOptions changed to new type AnalyzeSentimentActions.
Renamed type TextAnalyticsActionDetails to TextAnalyticsActionResult.
Renamed type PiiEntityDomainType to PiiEntityDomain.
Renamed type Results to DocumentsResults in AnalyzeSentimentActionResult, ExtractKeyPhrasesActionResult, RecognizeEntitiesActionResult, RecognizeLinkedEntitiesActionResult, and RecognizePiiEntitiesActionResult.
Renamed all types under AnalyzeActionsResult from xxActionsResults to ``xxResults`.
Removed property Statistics from AnalyzeActionsResult as it is not currently returned by the service even if the user passes IncludeStatistics = true.
Removed property StringIndexType from TextAnalyticsRequestOptions. This SDK will keep using UTF-16 code unit as the default encoding.
Removed type ExtractKeyPhrasesOptions and respective exposure.
Removed type RecognizeEntitiesOptions and respective exposure.
Removed type RecognizeLinkedEntitiesOptions and respective exposure.