Skip to content

Commit 6b20c20

Browse files
prepare release 1.4.0 (#34057)
1 parent 9d09eb6 commit 6b20c20

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

sdk/resourcemanager/Azure.ResourceManager/CHANGELOG.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,28 @@
11
# Release History
22

3-
## 1.4.0-beta.1 (Unreleased)
3+
## 1.4.0 (2023-02-10)
44

55
### Features Added
66

7-
### Breaking Changes
7+
- Added `SetApiVersionsFromProfile` method in `ArmClientOptions` to support setting resource API versions from an Azure Stack Profile.
88

99
### Bugs Fixed
1010

11+
- Fixed the exception in `GenericResource` operations caused by case-sensitive comparison of resource types between user input and service results.
12+
1113
### Other Changes
1214

15+
- Upgraded dependent `Azure.Core` to `1.28.0`.
16+
- Upgraded resources API version to `2022-09-01`.
17+
- The `GetAll` methods of `ResourceProviderCollection`, `GetTenantResourceProviders` methods of `ArmClient` removed the `top` parameter as it's never supported by service. We added back overloaded methods with the `top` parameter, but made it with `expand` parameter both as required. It is compatible with most previous method usages but still breaks a few cases such as (take `GetAll` as an example):
18+
- GetAll(10)
19+
- GetAll(top: 10)
20+
- GetAll(top: null)
21+
- GetAll(10, cancellationToken: token)
22+
- GetAll(top: 10, cancellationToken: token)
23+
- GetAll(top: null, cancellationToken: token)
24+
- The `Update` methods of `TagResource` became LRO and added a `waitUntil` parameter in the beginning. The old methods without the `waitUntil` parameter is kept with obsolete warnings to keep backward-compatibility.
25+
1326
## 1.3.2 (2022-11-11)
1427

1528
### Other Changes

sdk/resourcemanager/Azure.ResourceManager/src/Azure.ResourceManager.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Version>1.4.0-beta.1</Version>
4+
<Version>1.4.0</Version>
55
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
66
<ApiCompatVersion>1.3.2</ApiCompatVersion>
77
<PackageId>Azure.ResourceManager</PackageId>

0 commit comments

Comments
 (0)