Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare azure-search-documents for August Beta Release #23486

Merged
Merged
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
8 changes: 4 additions & 4 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -96,13 +96,13 @@
/sdk/remoterendering/ @MalcolmTyrrell

# PRLabel: %Schema Registry
/sdk/schemaregistry/ @arerlend @sjkwak
/sdk/schemaregistry/ @sjkwak @srnagar
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add @conniey as the primary owner of Schema Registry.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll do this in a follow-up PR

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


# 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
Expand Down
12 changes: 11 additions & 1 deletion sdk/search/azure-search-documents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
4 changes: 3 additions & 1 deletion sdk/search/azure-search-documents/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.

Expand All @@ -71,7 +73,7 @@ add the direct dependency to your project as follows.
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-search-documents</artifactId>
<version>11.5.0-beta.1</version>
<version>11.5.0-beta.2</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
45 changes: 38 additions & 7 deletions sdk/search/azure-search-documents/src/samples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-sdk-bom</artifactId>
<version>{bom_version_to_target}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
```
and then include the direct dependency in the dependencies section without the version tag.

```xml
<dependencies>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-search-documents</artifactId>
</dependency>
</dependencies>
```

#### 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
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-search-documents</artifactId>
<version>11.5.0-beta.1</version>
<version>11.5.0-beta.2</version>
</dependency>
```

[//]: # {x-version-update-end}
[//]: # ({x-version-update-end})

## How to run
These sample can be run in your IDE with default JDK.
Expand Down