Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
6 changes: 6 additions & 0 deletions sdk/azcore/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History

## 1.20.1 (Unreleased)

### Bugs Fixed

* Fixed `cloud.AzureGovernment` and `cloud.AzureChina` audience values so they align with Azure CLI and other SDKs.

## 1.20.0 (2025-11-06)

### Features Added
Expand Down
4 changes: 2 additions & 2 deletions sdk/azcore/arm/runtime/runtime.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import "github.com/Azure/azure-sdk-for-go/sdk/azcore/cloud"

func init() {
cloud.AzureChina.Services[cloud.ResourceManager] = cloud.ServiceConfiguration{
Audience: "https://management.core.chinacloudapi.cn",
Audience: "https://management.core.chinacloudapi.cn/",
Endpoint: "https://management.chinacloudapi.cn",
}
cloud.AzureGovernment.Services[cloud.ResourceManager] = cloud.ServiceConfiguration{
Audience: "https://management.core.usgovcloudapi.net",
Audience: "https://management.core.usgovcloudapi.net/",
Endpoint: "https://management.usgovcloudapi.net",
}
cloud.AzurePublic.Services[cloud.ResourceManager] = cloud.ServiceConfiguration{
Expand Down
Loading