diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index a399e75851de..821c7b9fbd5c 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -40,7 +40,7 @@
/sdk/containerregistry/ @pallavit @alzimmermsft @jianghaolu
# PRLabel: %Azure.Core
-/sdk/core/ @alzimmermsft @jianghaolu @srnagar @anuchandy @lmolkova
+/sdk/core/ @alzimmermsft @jianghaolu @srnagar @anuchandy @lmolkova @pallavit @vcolin7 @mssfang
# PRLabel: %Azure.Core.AMQP
/sdk/core/azure-core-amqp/ @conniey @anuchandy @ki1729 @srnagar
@@ -96,13 +96,13 @@
/sdk/remoterendering/ @MalcolmTyrrell
# PRLabel: %Schema Registry
-/sdk/schemaregistry/ @arerlend @sjkwak
+/sdk/schemaregistry/ @sjkwak @srnagar
# PRLabel: %Search
-/sdk/search/ @alzimmermsft @mssfang @samvaity @conniey
+/sdk/search/ @alzimmermsft @pallavit @mssfang @samvaity @conniey
# PRLabel: %Service Bus
-/sdk/servicebus/ @yvgopal @nemakam @anuchandy @ki1729 @conniey
+/sdk/servicebus/ @yvgopal @nemakam @anuchandy @ki1729 @conniey
# PRLabel: %Storage
/sdk/storage/ @amishra-dev @rickle-msft @jaschrep-msft @alzimmermsft @kasobol-msft
diff --git a/sdk/search/azure-search-documents/CHANGELOG.md b/sdk/search/azure-search-documents/CHANGELOG.md
index fad7cde93385..f8dbaf46f039 100644
--- a/sdk/search/azure-search-documents/CHANGELOG.md
+++ b/sdk/search/azure-search-documents/CHANGELOG.md
@@ -1,6 +1,16 @@
# Release History
-## 11.5.0-beta.2 (Unreleased)
+## 11.5.0-beta.2 (2021-08-11)
+
+### Features Added
+
+- Added support for indexer caching.
+
+### Dependency Updates
+
+- Updated `azure-core` from `1.18.0` to `1.19.0`.
+- Updated `azure-core-http-netty` from `1.10.1` to `1.10.2`.
+- Updated `azure-core-serializer-json-jackson` from `1.2.5` to `1.2.6`.
## 11.4.1 (2021-08-06)
diff --git a/sdk/search/azure-search-documents/README.md b/sdk/search/azure-search-documents/README.md
index 1b5ed8df06a6..eeac525548b9 100644
--- a/sdk/search/azure-search-documents/README.md
+++ b/sdk/search/azure-search-documents/README.md
@@ -32,6 +32,7 @@ Use the Azure Cognitive Search client library to:
## Getting started
### Include the package
+
#### Include the BOM file
Please include the azure-sdk-bom to your project to take dependency on the General Availability (GA) version of the library. In the following snippet, replace the {bom_version_to_target} placeholder with the version number.
@@ -62,6 +63,7 @@ and then include the direct dependency in the dependencies section without the v
```
#### Include direct dependency
+
If you want to take dependency on a particular version of the library that is not present in the BOM,
add the direct dependency to your project as follows.
@@ -71,7 +73,7 @@ add the direct dependency to your project as follows.
com.azure
azure-search-documents
- 11.5.0-beta.1
+ 11.5.0-beta.2
```
[//]: # ({x-version-update-end})
diff --git a/sdk/search/azure-search-documents/src/samples/README.md b/sdk/search/azure-search-documents/src/samples/README.md
index fc6256278242..ad3af422bd42 100644
--- a/sdk/search/azure-search-documents/src/samples/README.md
+++ b/sdk/search/azure-search-documents/src/samples/README.md
@@ -18,22 +18,53 @@ This document describes how to use samples and what is done in each sample.
## Getting started
Getting started explained in detail [here][SDK_README_GETTING_STARTED].
-
-### Adding the package to your project
-Maven dependency for Azure Cognitive Search Client library. Add it to your project's pom file.
+### Include the package
-[//]: # {x-version-update-start;com.azure:azure-search-documents;current}
+#### Include the BOM file
+
+Please include the azure-sdk-bom to your project to take dependency on the General Availability (GA) version of the library. In the following snippet, replace the {bom_version_to_target} placeholder with the version number.
+To learn more about the BOM, see the [AZURE SDK BOM README](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/boms/azure-sdk-bom/README.md).
+
+```xml
+
+
+
+ com.azure
+ azure-sdk-bom
+ {bom_version_to_target}
+ pom
+ import
+
+
+
+```
+and then include the direct dependency in the dependencies section without the version tag.
+```xml
+
+
+ com.azure
+ azure-search-documents
+
+
+```
+
+#### Include direct dependency
+
+If you want to take dependency on a particular version of the library that is not present in the BOM,
+add the direct dependency to your project as follows.
+
+
+[//]: # ({x-version-update-start;com.azure:azure-search-documents;current})
```xml
com.azure
azure-search-documents
- 11.5.0-beta.1
+ 11.5.0-beta.2
```
-
-[//]: # {x-version-update-end}
+[//]: # ({x-version-update-end})
## How to run
These sample can be run in your IDE with default JDK.