Skip to content
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: 2 additions & 6 deletions sdk/core/azure-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
# Release History

## 1.38.4 (Unreleased)

### Features Added
## 1.39.0 (2026-03-18)

### Breaking Changes

### Bugs Fixed

### Other Changes
- Changed the previously undocumented `azure_cloud` setting environment variable from `AZURE_CLOUD` to `AZURE_SDK_CLOUD_CONF`.

## 1.38.3 (2026-03-12)

Expand Down
2 changes: 1 addition & 1 deletion sdk/core/azure-core/azure/core/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "1.38.4"
VERSION = "1.39.0"
2 changes: 1 addition & 1 deletion sdk/core/azure-core/azure/core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ def _config(self, props: Mapping[str, Any]) -> Tuple[Any, ...]:

azure_cloud: PrioritizedSetting[Union[str, AzureClouds], AzureClouds] = PrioritizedSetting(
"azure_cloud",
env_var="AZURE_CLOUD",
env_var="AZURE_SDK_CLOUD_CONF",
convert=convert_azure_cloud,
default=AzureClouds.AZURE_PUBLIC_CLOUD,
)
Expand Down
4 changes: 2 additions & 2 deletions sdk/core/azure-core/tests/test_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,8 @@ def test_current(self):
assert isinstance(val, tuple)
assert val.log_level == 10
del os.environ["AZURE_LOG_LEVEL"]
os.environ["AZURE_CLOUD"] = "AZURE_CHINA_CLOUD"
os.environ["AZURE_SDK_CLOUD_CONF"] = "AZURE_CHINA_CLOUD"
val = m.settings.current
assert isinstance(val, tuple)
assert val.azure_cloud == AzureClouds.AZURE_CHINA_CLOUD
del os.environ["AZURE_CLOUD"]
del os.environ["AZURE_SDK_CLOUD_CONF"]
Loading