Skip to content

Commit

Permalink
[Identity] Mark German cloud as deprecated (Azure#31519)
Browse files Browse the repository at this point in the history
Closes Azure#31276 

- [x] Mark German cloud as deprecated
- [x] Fix links in Changelog entry
  • Loading branch information
minhanh-phan authored Oct 28, 2024
1 parent bf21e26 commit 7e47aa2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
10 changes: 6 additions & 4 deletions sdk/identity/identity/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,29 @@

### Features Added

- Added `subscription` property in `AzureCliCredentialOptions`
- Added `subscription` property in `AzureCliCredentialOptions` [#31451](https://github.com/Azure/azure-sdk-for-js/pull/31451).

### Breaking Changes

### Bugs Fixed

### Other Changes

- Mark `AzureAuthorityHosts.AZURE_GERMANY` deprecated as the Germany cloud closed in 2021. [#31519](https://github.com/Azure/azure-sdk-for-js/pull/31519)

## 4.5.0 (2024-10-15)

### Features Added

- Added Proof-of-Possession via Signed HTTP Request (SHR) support to `AccessToken` and `GetTokenOptions` for native broker scenarios in `InteractiveBrowserCredential` to be used with plugin `@azure/identity-broker` #30961.
- Added Proof-of-Possession via Signed HTTP Request (SHR) support to `AccessToken` and `GetTokenOptions` for native broker scenarios in `InteractiveBrowserCredential` to be used with plugin `@azure/identity-broker` [#30961](https://github.com/Azure/azure-sdk-for-js/pull/30961).

### Bugs Fixed

- Fixed the request sent in AzurePipelinesCredential so it doesn't result in a redirect response when an invalid system access token is provided #31209.
- Fixed the request sent in AzurePipelinesCredential so it doesn't result in a redirect response when an invalid system access token is provided [#31209](https://github.com/Azure/azure-sdk-for-js/pull/31209).

### Other Changes

- Allow certain response headers to be logged in `AzurePipelinesCredential` for diagnostics and include them in the error message #31209.
- Allow certain response headers to be logged in `AzurePipelinesCredential` for diagnostics and include them in the error message [#31209](https://github.com/Azure/azure-sdk-for-js/pull/31209)

<!-- dev-tool snippets ignore -->

Expand Down
1 change: 1 addition & 0 deletions sdk/identity/identity/review/identity.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ export interface AuthorizationCodeCredentialOptions extends MultiTenantTokenCred
// @public
export enum AzureAuthorityHosts {
AzureChina = "https://login.chinacloudapi.cn",
// @deprecated
AzureGermany = "https://login.microsoftonline.de",
AzureGovernment = "https://login.microsoftonline.us",
AzurePublicCloud = "https://login.microsoftonline.com"
Expand Down
5 changes: 4 additions & 1 deletion sdk/identity/identity/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ export enum AzureAuthorityHosts {
AzureChina = "https://login.chinacloudapi.cn",
/**
* Germany-based Azure Authority Host
*/
*
* @deprecated Microsoft Cloud Germany was closed on October 29th, 2021.
*
* */
AzureGermany = "https://login.microsoftonline.de",
/**
* US Government Azure Authority Host
Expand Down

0 comments on commit 7e47aa2

Please sign in to comment.