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
[TA] Healthcare recognition and Analyze LRO (Azure#17687)
* [TA] CodeGen based on 3.1-preview.3 (Azure#17182)
- only codegen and fixes after codegen, there is no new implementation added.
* [TA] Healthcare Analyze feature (Azure#17234)
* Added support for Healthcare Analyze and Cancellation endpoints
* [TA] Regenerate the swagger v3.1-Preview.3 with latest autorest version (Azure#17358)
* regenerate with latest autorest and swagger, use 4.0.4 autorest to codegen instead of v4.0.2
* [TA] Add analyze tasks feature support (Azure#17267)
* Add analyze multiple tasks and update healthcare features.
Copy file name to clipboardExpand all lines: sdk/textanalytics/azure-ai-textanalytics/CHANGELOG.md
+12-8Lines changed: 12 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,9 @@
1
1
# Release History
2
2
## 5.1.0-beta.3 (Unreleased)
3
+
### New features
4
+
- Added support for healthcare analysis feature. It is represented as a long-running operation. Cancellation supported.
5
+
- Added support for analyze tasks feature, It analyzes multiple tasks (such as, entity recognition, PII entity recognition
6
+
and key phrases extraction) simultaneously in a list of document.
3
7
4
8
## 5.0.1 (2020-11-12)
5
9
### Dependency updates
@@ -40,14 +44,14 @@ about the returned entity.
40
44
- First stable release of `azure-ai-textanalytics`.
41
45
42
46
## 1.0.0-beta.5 (2020-05-27)
43
-
**New features**
47
+
### New features
44
48
- Added Text property and `getText()` to `SentenceSentiment`.
45
49
-`Warnings` property added to each document-level response object returned from the endpoints. It is a list of `TextAnalyticsWarnings`.
46
50
- Added `CategorizedEntityCollection`, `KeyPhrasesCollection`, `LinkedEntityCollection` for having `getWarnings()` to retrieve warnings.
47
51
- Added a new enum value `ADDRESS` to `EntityCategory`.
48
52
- Text analytics SDK update the service to version `v3.0` from `v3.0-preview.1`.
49
53
50
-
**Breaking changes**
54
+
### Breaking changes
51
55
- Removed pagination feature, which removed `TextAnalyticsPagedIterable`, `TextAnalyticsPagedFlux` and `TextAnalyticsPagedResponse`
52
56
- Removed overload methods for API that takes a list of String, only keep max-overload API that has a list of String, language or country hint, and `TextAnalyticsRequestOption`.
53
57
- Renamed `apiKey()` to `credential()` on TextAnalyticsClientBuilder.
@@ -75,18 +79,18 @@ about the returned entity.
75
79
## 1.0.0-beta.4 (2020-04-07)
76
80
- Throws an illegal argument exception when the given list of documents is an empty list.
77
81
78
-
**Breaking changes**
82
+
### Breaking changes
79
83
- Renamed all input parameters `text` to `document`, and `inputTexts` to `documents`.
80
84
- Removed all PII endpoints and update with related changes, such as remove related models, samples, codesnippets, docstrings, etc from this library.
81
85
- Replaced `TextAnalyticsApiKeyCredential` with `AzureKeyCredential`.
82
86
83
87
## 1.0.0-beta.3 (2020-03-10)
84
-
**New features**
88
+
### New features
85
89
- Introduced `TextAnalyticsPagedFlux`, `TextAnalyticsPagedIterable`, and `TextAnalyticsPagedResponse` type. Moved `modelVersion` amd `TextDocumentBatchStatistics` into `TextAnalyticsPagedResponse`. All collection APIs are return `TextAnalyticsPagedFlux` and `TextAnalyticsPagedIterable` in the asynchronous and synchronous client, respectively. So `DocumentResultCollection` is no longer required. Most of existing API surface are changes. Please check up `TextAnalyticsAsyncClient` and `TextAnalyticsClient` for more detail.
86
90
- Introduced `EntityCategory` class to support major entity categories that the service supported.
87
91
- Added `getDefaultCountryHint()`, `getDefaultLanguage()` and `getServiceVersion()` to `TextAnalyticsClient`
88
92
89
-
**Breaking changes**
93
+
### Breaking changes
90
94
- Supported `Iterable<T>` instead of `List<T>` text inputs.
91
95
- Default language and country hint can only be assigned value when building a Text Analytics client.
92
96
- Renamed `showStatistics()` to `isIncludeStatistics()` in the `TextAnalyticsRequestOptions`.
@@ -99,7 +103,7 @@ about the returned entity.
99
103
100
104
## 1.0.0-beta.2 (2020-02-12)
101
105
102
-
**Breaking changes**
106
+
### Breaking changes
103
107
104
108
- The single text, module-level operations return an atomic type of the operation result. For example, `detectLanguage(String text)` returns a `DetectedLanguage` rather than a `DetectLanguageResult`.
105
109
@@ -139,11 +143,11 @@ about the returned entity.
139
143
-`getLinkedEntities()` to `getEntities()` and variable `linkedEntities` to `entities`.
140
144
- Added suffix of `batch` to all operations' method name that takes a collection of input.
141
145
142
-
**New features**
146
+
### New features
143
147
144
148
- Credential class `TextAnalyticsApiKeyCredential` provides an `updateCredential()` method which allows you to update the API key for long-lived clients.
145
149
146
-
**Fixes and improvements**
150
+
### Breaking changes
147
151
148
152
- If you try to access a result attribute on a `DocumentError` object, a `TextAnalyticsException` is raised with a custom error message that provides the document ID and error of the invalid document.
0 commit comments