Skip to content

Commit 85b41dd

Browse files
committed
Update docs metadata
1 parent ab5823c commit 85b41dd

2 files changed

Lines changed: 20 additions & 20 deletions

File tree

api/overview/azure/latest/core-readme.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ title: Azure Core shared client library for .NET
33
keywords: Azure, dotnet, SDK, API, Azure.Core, core
44
author: JoshLove-msft
55
ms.author: jolov
6-
ms.date: 07/12/2023
6+
ms.date: 09/07/2023
77
ms.topic: reference
88
ms.devlang: dotnet
99
ms.service: core
1010
---
11-
# Azure Core shared client library for .NET - version 1.34.0
11+
# Azure Core shared client library for .NET - version 1.35.0
1212

1313

1414
Azure.Core provides shared primitives, abstractions, and helpers for modern .NET Azure SDK client libraries.
@@ -48,12 +48,12 @@ We guarantee that all client instance methods are thread-safe and independent of
4848

4949
### Additional concepts
5050
<!-- CLIENT COMMON BAR -->
51-
[Client options](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.34.0/sdk/core/Azure.Core/README.md#configuring-service-clients-using-clientoptions) |
52-
[Accessing the response](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.34.0/sdk/core/Azure.Core/README.md#accessing-http-response-details-using-responset) |
53-
[Long-running operations](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.34.0/sdk/core/Azure.Core/README.md#consuming-long-running-operations-using-operationt) |
54-
[Handling failures](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.34.0/sdk/core/Azure.Core/README.md#reporting-errors-requestfailedexception) |
55-
[Diagnostics](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.34.0/sdk/core/Azure.Core/samples/Diagnostics.md) |
56-
[Mocking](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.34.0/sdk/core/Azure.Core/README.md#mocking) |
51+
[Client options](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.35.0/sdk/core/Azure.Core/README.md#configuring-service-clients-using-clientoptions) |
52+
[Accessing the response](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.35.0/sdk/core/Azure.Core/README.md#accessing-http-response-details-using-responset) |
53+
[Long-running operations](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.35.0/sdk/core/Azure.Core/README.md#consuming-long-running-operations-using-operationt) |
54+
[Handling failures](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.35.0/sdk/core/Azure.Core/README.md#reporting-errors-requestfailedexception) |
55+
[Diagnostics](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.35.0/sdk/core/Azure.Core/samples/Diagnostics.md) |
56+
[Mocking](https://learn.microsoft.com/dotnet/azure/sdk/unit-testing-mocking) |
5757
[Client lifetime](https://devblogs.microsoft.com/azure-sdk/lifetime-management-and-thread-safety-guarantees-of-azure-sdk-net-clients/)
5858
<!-- CLIENT COMMON BAR -->
5959

@@ -94,7 +94,7 @@ SecretClientOptions options = new SecretClientOptions()
9494
SecretClient client = new SecretClient(new Uri("http://example.com"), new DefaultAzureCredential(), options);
9595
```
9696

97-
More on client configuration in [client configuration samples](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.34.0/sdk/core/Azure.Core/samples/Configuration.md).
97+
More on client configuration in [client configuration samples](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.35.0/sdk/core/Azure.Core/samples/Configuration.md).
9898

9999
### Accessing HTTP Response Details Using `Response<T>`
100100

@@ -127,7 +127,7 @@ foreach (HttpHeader header in http.Headers)
127127
}
128128
```
129129

130-
More on response types in [response samples](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.34.0/sdk/core/Azure.Core/samples/Response.md).
130+
More on response types in [response samples](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.35.0/sdk/core/Azure.Core/samples/Response.md).
131131

132132
### Setting up console logging
133133

@@ -138,7 +138,7 @@ To create an Azure SDK log listener that outputs messages to console use `AzureE
138138
using AzureEventSourceListener listener = AzureEventSourceListener.CreateConsoleLogger();
139139
```
140140

141-
More on logging in [diagnostics samples](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.34.0/sdk/core/Azure.Core/samples/Diagnostics.md).
141+
More on logging in [diagnostics samples](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.35.0/sdk/core/Azure.Core/samples/Diagnostics.md).
142142

143143
### Reporting Errors `RequestFailedException`
144144

@@ -157,7 +157,7 @@ catch (RequestFailedException e) when (e.Status == 404)
157157
}
158158
```
159159

160-
More on handling responses in [response samples](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.34.0/sdk/core/Azure.Core/samples/Response.md).
160+
More on handling responses in [response samples](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.35.0/sdk/core/Azure.Core/samples/Response.md).
161161

162162
### Consuming Service Methods Returning `AsyncPageable<T>`
163163

@@ -195,7 +195,7 @@ Console.WriteLine(value.Name);
195195
Console.WriteLine(value.ScheduledPurgeDate);
196196
```
197197

198-
More on long-running operations in [long-running operation samples](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.34.0/sdk/core/Azure.Core/samples/LongRunningOperations.md).
198+
More on long-running operations in [long-running operation samples](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.35.0/sdk/core/Azure.Core/samples/LongRunningOperations.md).
199199

200200
### Customizing Requests Using `RequestContext`
201201

@@ -209,7 +209,7 @@ context.AddClassifier(404, isError: false);
209209
Response response = await client.GetPetAsync("pet1", context);
210210
```
211211

212-
More on request customization in [RequestContext samples](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.34.0/sdk/core/Azure.Core/samples/RequestContext.md).
212+
More on request customization in [RequestContext samples](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.35.0/sdk/core/Azure.Core/samples/RequestContext.md).
213213

214214
### Mocking
215215

@@ -243,7 +243,7 @@ SecretClient client = mock.Object;
243243
KeyVaultSecret secret = client.GetSecret("Name");
244244
```
245245

246-
More on mocking in [mocking samples](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.34.0/sdk/core/Azure.Core/samples/Mocking.md).
246+
More on mocking in [Unit testing and mocking with the Azure SDK for .NET](https://learn.microsoft.com/dotnet/azure/sdk/unit-testing-mocking).
247247

248248
## Distributed tracing with Application Insights
249249

@@ -253,11 +253,11 @@ If your application already uses ApplicationInsights, automatic collection of Az
253253

254254
To setup ApplicationInsights tracking for your application follow the [Start Monitoring Application](/azure/azure-monitor/learn/dotnetcore-quick-start) guide.
255255

256-
More on diagnostics in [diagnostics samples](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.34.0/sdk/core/Azure.Core/samples/Diagnostics.md).
256+
More on diagnostics in [diagnostics samples](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.35.0/sdk/core/Azure.Core/samples/Diagnostics.md).
257257

258258
## Troubleshooting
259259

260-
Three main ways of troubleshooting failures are [inspecting exceptions](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.34.0/sdk/core/Azure.Core/samples/Response.md#handling-exceptions), enabling [logging](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.34.0/sdk/core/Azure.Core/samples/Diagnostics.md#Logging), and [distributed tracing](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.34.0/sdk/core/Azure.Core/samples/Diagnostics.md#Distributed-tracing)
260+
Three main ways of troubleshooting failures are [inspecting exceptions](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.35.0/sdk/core/Azure.Core/samples/Response.md#handling-exceptions), enabling [logging](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.35.0/sdk/core/Azure.Core/samples/Diagnostics.md#Logging), and [distributed tracing](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Core_1.35.0/sdk/core/Azure.Core/samples/Diagnostics.md#Distributed-tracing)
261261

262262
## Next steps
263263

@@ -273,7 +273,7 @@ This project has adopted the [Microsoft Open Source Code of Conduct][code_of_con
273273

274274
![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-net%2Fsdk%2Fcore%2FAzure.Core%2FREADME.png)
275275

276-
[source]: https://github.com/Azure/azure-sdk-for-net/tree/Azure.Core_1.34.0/sdk/core/Azure.Core/src
276+
[source]: https://github.com/Azure/azure-sdk-for-net/tree/Azure.Core_1.35.0/sdk/core/Azure.Core/src
277277
[package]: https://www.nuget.org/packages/Azure.Core/
278278
[docs]: /dotnet/api/azure.core
279279
[code_of_conduct]: https://opensource.microsoft.com/codeofconduct

metadata/latest/Azure.Core.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Name": "Azure.Core",
3-
"Version": "1.34.0",
3+
"Version": "1.35.0",
44
"DevVersion": null,
55
"DirectoryPath": "sdk/core/Azure.Core",
66
"ServiceDirectory": "core",
@@ -10,7 +10,7 @@
1010
"SdkType": "client",
1111
"IsNewSdk": true,
1212
"ArtifactName": "Azure.Core",
13-
"ReleaseStatus": "2023-07-11",
13+
"ReleaseStatus": "2023-09-07",
1414
"Namespaces": [
1515
"Azure",
1616
"Azure.Core",

0 commit comments

Comments
 (0)