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
### Packages impacted by this PR
`@azure/ai-form-recognizer`
### Describe the problem that is addressed by this PR
Moving in the `azure-sdk-for-js-pr`
code(https://github.com/Azure/azure-sdk-for-js-pr/tree/ai-form-recognizer/2023-07-31)
to the `azure-sdk-for-js` repo
---------
Co-authored-by: Will Temple <witemple@microsoft.com>
Co-authored-by: Will Temple <will@wtemple.net>
Copy file name to clipboardExpand all lines: sdk/formrecognizer/ai-form-recognizer/CHANGELOG.md
+23Lines changed: 23 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,28 @@
1
1
# Release History
2
2
3
+
## 4.1.0 (Unreleased)
4
+
5
+
### Features Added
6
+
7
+
-`AnalyzeDocumentOptions.features` allows three new features compared to the last beta version:
8
+
-`barcodes`: enables the detection of barcodes in the document.
9
+
-`keyValuePairs`: enable the detection of general key value pairs (form fields) in the document.
10
+
-`languages`: enables the detection of the text content language.
11
+
-`beginBuildDocumentModel` has a new overload that accepts a `DocumentModelContentSource` in place of a raw `containerUrl`. This allows training document models using the new Azure Blob file list source (that is already supported by document classifiers). The `DocumentModelContentSource` is an object that contains a `containerUrl` property, and if a `fileList` property is also provided it is interpreted as an Azure Blob file list source. Otherwise it is interpreted as an Azure Blob content source with an optional `prefix` property.
12
+
13
+
### Breaking Changes
14
+
15
+
-`DocumentAnalysisClient` and `DocumentModelAdministrationClient` now target service API version `2023-07-31` by default. Version `2023-02-28-preview` is not supported.
16
+
-`AnalyzeDocumentOptions.features` changed the following feature names:
17
+
-`ocr.highResolution` renamed to `ocrHighResolution`.
18
+
-`ocr.formula` renamed to `formulas`.
19
+
-`ocr.font` renamed to `styleFont`.
20
+
- The following fields have been removed
21
+
-`AnalyzeDocumentOptions.queryFields`
22
+
-`DocumentPage.kind` and `DocumentPage.images` (`DocumentPageKind` and `DocumentImage` types have been removed too.)
23
+
-`DocumentKeyValuePair.commonName`
24
+
- Changed how content sources are provided when creating document classifiers. The type of content source (`azureBlobContentSource` or `azureBlobFileListSource`) is no longer required in the content source input, and the type is now inferred automatically. If a `fileList` property is provided, it is interpreted as a file list source, and otherwise it is interpreted as a blob content source with optional `prefix`.
0 commit comments