Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions sdk/search/search-documents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Release History

## 12.2.0 (Unreleased)

### Features Added

- Added support for `2025-09-01` service version.
- Support for running `VectorQuery`s against sub-fields of complex fields.
- Support for reranker boosted scores in search results and the ability to sort results on either reranker or reranker
boosted scores in `SemanticConfiguration.rankingOrder`.
- Support for `VectorSearchCompression.RescoringOptions` to configure how vector compression handles the original
vector when indexing and how vectors are used during rescoring.
- Added `SearchIndex.description` to provide a textual description of the index.
- Support for `LexicalNormalizer` when defining `SearchIndex`, `SimpleField`, and `SearchableField` and the ability to
use it when analyzing text with `SearchIndexClient.analyzeText` and `SearchIndexAsyncClient.analyzeText`.
- Support `DocumentIntelligenceLayoutSkill` skillset skill and `OneLake` `SearchIndexerDataSourceConnection` data source.

### Other Changes

- Native ESM support has been added, and this package will now emit both CommonJS and ESM.

## 12.2.0-beta.2 (2024-11-25)

### Features Added
Expand Down
3 changes: 3 additions & 0 deletions sdk/search/search-documents/eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ import azsdkEslint from "@azure/eslint-plugin-azure-sdk";

export default azsdkEslint.config([
{
rules: {
"@azure/azure-sdk/ts-naming-options": "warn",
},
files: ["**/*.ts", "**/*.cts", "**/*.mts"],
languageOptions: {
parserOptions: {
Expand Down
4 changes: 2 additions & 2 deletions sdk/search/search-documents/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@azure/search-documents",
"version": "12.2.0-beta.2",
"version": "12.2.0",
"description": "Azure client library to use Cognitive Search for node.js and browser.",
"sdk-type": "client",
"main": "./dist/commonjs/index.js",
Expand All @@ -22,7 +22,7 @@
"test": "npm run test:node && npm run test:browser",
"test:browser": "npm run clean && dev-tool run build-package && dev-tool run build-test && dev-tool run test:vitest --browser",
"test:node": "dev-tool run test:vitest --test-proxy-debug",
"update-snippets": "dev-tool run update-snippets"
"update-snippets": "echo Skipped."
},
"files": [
"dist/",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ For the complete API surface, see the corresponding -node.api.md file.
===================================================================
--- NodeJS
+++ browser
@@ -450,9 +450,9 @@
@@ -359,9 +359,9 @@
// @public
export type CreateSkillsetOptions = OperationOptions;

Expand Down
Loading
Loading