Skip to content

Commit 8b45e62

Browse files
authored
[TA] Merge Novermber patch to master branch (Azure#17544)
* cherry-pick 16c8d5d and dfdc8c6
1 parent dd10cda commit 8b45e62

File tree

4 files changed

+31
-29
lines changed

4 files changed

+31
-29
lines changed

eng/versioning/version_client.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ com.azure:azure-client-sdk-parent;1.7.0;1.7.0
3939
com.azure:azure-ai-anomalydetector;3.0.0-beta.1;3.0.0-beta.2
4040
com.azure:azure-ai-formrecognizer;3.0.3;3.1.0-beta.1
4141
com.azure:azure-ai-metricsadvisor;1.0.0-beta.2;1.0.0-beta.3
42-
com.azure:azure-ai-textanalytics;5.0.0;5.1.0-beta.3
42+
com.azure:azure-ai-textanalytics;5.0.1;5.1.0-beta.3
4343
com.azure:azure-communication-chat;1.0.0-beta.2;1.0.0-beta.3
4444
com.azure:azure-communication-common;1.0.0-beta.2;1.0.0-beta.3
4545
com.azure:azure-communication-administration;1.0.0-beta.2;1.0.0-beta.3

sdk/textanalytics/azure-ai-textanalytics/CHANGELOG.md

Lines changed: 28 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,34 @@
11
# Release History
22
## 5.1.0-beta.3 (Unreleased)
33

4-
5-
## 5.1.0-beta.2 (2020-10-06)
6-
### Breaking changes
7-
- Removed property `length` from `CategorizedEntity`, `SentenceSentiment`, `LinkedEntityMatch`, `AspectSentiment`,
8-
`OpinionSentiment`, and `PiiEntity` because the length information can be accessed from the text property itself
9-
using the string's length property.
10-
11-
### Dependency updates
12-
- Update dependency version, `azure-core` to 1.9.0 and `azure-core-http-netty` to 1.6.2.
13-
14-
## 5.1.0-beta.1 (2020-09-17)
15-
- Added `offset` and `length` properties for `CategorizedEntity`, `LinkedEntityMatch` and `SentenceSentiment`
16-
- `length` is the number of characters in the text of these models
17-
- `offset` is the offset of the text from the start of the document
18-
19-
**New features**
20-
- Updated Text Analytics SDK's default service API version to `v3.1-preview.2` from `v3.0`.
21-
- Added support for Personally Identifiable Information(PII) entity recognition feature.
22-
To use this feature, you need to make sure you are using the service's v3.1-preview.1 API.
23-
- Added support for the Opinion Mining feature. To use this feature, you need to make sure you are using the
24-
service's v3.1-preview.1 and above API. To get this support pass `includeOpinionMining` as `true` in
25-
`AnalyzeSentimentOptions` when calling the sentiment analysis endpoints.
26-
- Add property `bingEntitySearchApiId` to the `LinkedEntity` class. This property is only available for v3.1-preview.2
27-
and up, and it is to be used in conjunction with the Bing Entity Search API to fetch additional relevant information
28-
about the returned entity.
4+
## 5.0.1 (2020-11-12)
5+
### Dependency updates
6+
- Update dependency version, `azure-core` to 1.10.0 and `azure-core-http-netty` to 1.6.3.
7+
8+
## 5.1.0-beta.2 (2020-10-06)
9+
### Breaking changes
10+
- Removed property `length` from `CategorizedEntity`, `SentenceSentiment`, `LinkedEntityMatch`, `AspectSentiment`,
11+
`OpinionSentiment`, and `PiiEntity` because the length information can be accessed from the text property itself
12+
using the string's length property.
13+
14+
### Dependency updates
15+
- Update dependency version, `azure-core` to 1.9.0 and `azure-core-http-netty` to 1.6.2.
16+
17+
## 5.1.0-beta.1 (2020-09-17)
18+
- Added `offset` and `length` properties for `CategorizedEntity`, `LinkedEntityMatch` and `SentenceSentiment`
19+
- `length` is the number of characters in the text of these models
20+
- `offset` is the offset of the text from the start of the document
21+
22+
**New features**
23+
- Updated Text Analytics SDK's default service API version to `v3.1-preview.2` from `v3.0`.
24+
- Added support for Personally Identifiable Information(PII) entity recognition feature.
25+
To use this feature, you need to make sure you are using the service's v3.1-preview.1 API.
26+
- Added support for the Opinion Mining feature. To use this feature, you need to make sure you are using the
27+
service's v3.1-preview.1 and above API. To get this support pass `includeOpinionMining` as `true` in
28+
`AnalyzeSentimentOptions` when calling the sentiment analysis endpoints.
29+
- Add property `bingEntitySearchApiId` to the `LinkedEntity` class. This property is only available for v3.1-preview.2
30+
and up, and it is to be used in conjunction with the Bing Entity Search API to fetch additional relevant information
31+
about the returned entity.
2932

3033
## 5.0.0 (2020-07-27)
3134
- Re-release of version `1.0.1` with updated version `5.0.0`.

sdk/textanalytics/azure-ai-textanalytics/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ az cognitiveservices account create \
5656
<dependency>
5757
<groupId>com.azure</groupId>
5858
<artifactId>azure-ai-textanalytics</artifactId>
59-
<version>5.1.0-beta.2</version>
59+
<version>5.1.0-beta.3</version>
6060
</dependency>
6161
```
6262
[//]: # ({x-version-update-end})
@@ -117,7 +117,7 @@ Authentication with AAD requires some initial setup:
117117
<dependency>
118118
<groupId>com.azure</groupId>
119119
<artifactId>azure-identity</artifactId>
120-
<version>1.1.3</version>
120+
<version>1.2.0</version>
121121
</dependency>
122122
```
123123
[//]: # ({x-version-update-end})

sdk/textanalytics/azure-ai-textanalytics/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@
114114
<configuration>
115115
<argLine>
116116
--add-exports com.azure.core/com.azure.core.implementation.http=ALL-UNNAMED
117-
118117
--add-opens com.azure.ai.textanalytics/com.azure.ai.textanalytics=ALL-UNNAMED
119118
--add-exports com.azure.core/com.azure.core.implementation.http=ALL-UNNAMED
120119
</argLine>

0 commit comments

Comments
 (0)