Skip to content

Commit 3737b69

Browse files
committed
Update docs metadata
1 parent e94b87a commit 3737b69

File tree

2 files changed

+25
-14
lines changed

2 files changed

+25
-14
lines changed

docs-ref-services/preview/aot-graalvm-support-netty-readme.md

Lines changed: 23 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,60 +3,71 @@ title: Azure GraalVM Netty Support client library for Java
33
keywords: Azure, java, SDK, API, azure-aot-graalvm-support-netty, aot
44
author: joshfree
55
ms.author: jfree
6-
ms.date: 04/08/2022
6+
ms.date: 04/25/2022
77
ms.topic: reference
88
ms.prod: azure
99
ms.technology: azure
1010
ms.devlang: java
1111
ms.service: aot
1212
---
13-
# Azure GraalVM Netty Support client library for Java - Version 1.0.0-beta.1
13+
# Azure GraalVM Netty Support client library for Java - Version 1.0.0-beta.2
1414

1515

1616
The Azure GraalVM Netty Support client library provides support for applications using
1717
[Azure client libraries](https://azure.github.io/azure-sdk/releases/latest/java.html) that take a dependency on
18-
[azure-core-http-netty](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support-netty_1.0.0-beta.1/sdk/core/azure-core-http-netty) to be
19-
built as [GraalVM nativeimages](https://www.graalvm.org/22.0/reference-manual/native-image/). The library contains all the necessary
18+
[azure-core-http-netty](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support-netty_1.0.0-beta.2/sdk/core/azure-core-http-netty) to be
19+
built as [GraalVM native images](https://www.graalvm.org/22.0/reference-manual/native-image/). The library contains all the necessary
2020
[configuration files](https://www.graalvm.org/22.0/reference-manual/native-image/BuildConfiguration/) and [GraalVM
2121
features](https://www.graalvm.org/sdk/javadoc/index.html?org/graalvm/nativeimage/hosted/Feature.html) required to build
2222
a native image of an application that uses Azure client libraries.
2323

24+
**NOTE:**: This library is a preview and is intended to enable applications using Azure client libraries to quickly
25+
build and validate native images. However, this is not a stable, GA version and is not officially supported to use in production
26+
environments.
27+
2428
## Getting started
2529

2630
### Prerequisites
2731
- A [Java Development Kit (JDK)][jdk_link], version 8 or later.
2832
- [Azure Subscription][azure_subscription]
2933
- [GraalVM](https://www.graalvm.org/downloads/) version 22 or later.
3034
- [GraalVM Native Image](https://www.graalvm.org/22.0/reference-manual/native-image/)
31-
-
35+
3236
### Include the package
3337

34-
This package should be included in addition to `azure-aot-graalvm-support` library when using Azure client libraries
35-
that take a dependency on `azure-core-http-netty`.
38+
Include both the packages below:
3639

40+
[//]: # ({x-version-update-start;com.azure:azure-aot-graalvm-support;current})
41+
```xml
42+
<dependency>
43+
<groupId>com.azure</groupId>
44+
<artifactId>azure-aot-graalvm-support</artifactId>
45+
<version>1.0.0-beta.2</version>
46+
</dependency>
47+
```
3748
[//]: # ({x-version-update-start;com.azure:azure-aot-graalvm-support-netty;current})
3849
```xml
3950
<dependency>
4051
<groupId>com.azure</groupId>
4152
<artifactId>azure-aot-graalvm-support-netty</artifactId>
42-
<version>1.0.0-beta.1</version>
53+
<version>1.0.0-beta.2</version>
4354
</dependency>
4455
```
4556
## Key concepts
4657

47-
Please refer to the [Key Concepts](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support-netty_1.0.0-beta.1/sdk/aot/azure-aot-graalvm-support#key-concepts) section of the azure-aot-graalvm-support library.
58+
Please refer to the [Key Concepts](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support-netty_1.0.0-beta.2/sdk/aot/azure-aot-graalvm-support#key-concepts) section of the azure-aot-graalvm-support library.
4859

4960
## Examples
5061

51-
Please refer to the [Examples](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support-netty_1.0.0-beta.1/sdk/aot/azure-aot-graalvm-support#examples) section of the
62+
Please refer to the [Examples](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support-netty_1.0.0-beta.2/sdk/aot/azure-aot-graalvm-support#examples) section of the
5263
`azure-aot-graalvm-support` library.
5364

5465
## Troubleshooting
55-
Please refer to the [Troubleshooting](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support-netty_1.0.0-beta.1/sdk/aot/azure-aot-graalvm-support#troubleshooting) section of the
66+
Please refer to the [Troubleshooting](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support-netty_1.0.0-beta.2/sdk/aot/azure-aot-graalvm-support#troubleshooting) section of the
5667
`azure-aot-graalvm-support` library.
5768

5869
## Next steps
59-
Please refer to the [Next Steps](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support-netty_1.0.0-beta.1/sdk/aot/azure-aot-graalvm-support#next-steps) section of the
70+
Please refer to the [Next Steps](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support-netty_1.0.0-beta.2/sdk/aot/azure-aot-graalvm-support#next-steps) section of the
6071
`azure-aot-graalvm-support` library.
6172

6273
## Contributing
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Name": "azure-aot-graalvm-support-netty",
3-
"Version": "1.0.0-beta.1",
3+
"Version": "1.0.0-beta.2",
44
"DevVersion": null,
55
"DirectoryPath": "sdk/aot/azure-aot-graalvm-support-netty",
66
"ServiceDirectory": "aot",
@@ -10,5 +10,5 @@
1010
"SdkType": "client",
1111
"IsNewSdk": true,
1212
"ArtifactName": "azure-aot-graalvm-support-netty",
13-
"ReleaseStatus": "2022-04-08"
13+
"ReleaseStatus": "2022-04-25"
1414
}

0 commit comments

Comments
 (0)