Skip to content

Commit 49a512d

Browse files
authored
Az 10.4.1 hotfix (#22866)
2 parents 81a6417 + 921a051 commit 49a512d

File tree

21 files changed

+1835
-1912
lines changed

21 files changed

+1835
-1912
lines changed

ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 10.4.1 - September 2023
2+
#### Az.Resources 6.11.1
3+
* Reverted commits that caused regression in 'Get-AzRoleAssignment'. [#22863]
4+
15
## 10.4.0 - September 2023
26
#### Az.Accounts 2.13.1
37
* Added the module name in breaking change messages

src/Resources/Authorization.Autorest/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
[assembly: ComVisible(false)]
2525
[assembly: CLSCompliant(false)]
2626
[assembly: Guid("b2f7fb23-24cf-4e26-840e-db4360603829")]
27-
[assembly: AssemblyVersion("6.11.0")]
28-
[assembly: AssemblyFileVersion("6.11.0")]
27+
[assembly: AssemblyVersion("6.11.1")]
28+
[assembly: AssemblyFileVersion("6.11.1")]

src/Resources/MSGraph.Autorest/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
[assembly: ComVisible(false)]
2525
[assembly: CLSCompliant(false)]
2626
[assembly: Guid("113AD566-7045-45C4-8D01-BCFF72F4CE7B")]
27-
[assembly: AssemblyVersion("6.11.0")]
28-
[assembly: AssemblyFileVersion("6.11.0")]
27+
[assembly: AssemblyVersion("6.11.1")]
28+
[assembly: AssemblyFileVersion("6.11.1")]

src/Resources/ResourceManager/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
[assembly: ComVisible(false)]
2626
[assembly: CLSCompliant(false)]
2727
[assembly: Guid("e8f34267-c461-4eae-b156-5f3528553d10")]
28-
[assembly: AssemblyVersion("6.11.0")]
29-
[assembly: AssemblyFileVersion("6.11.0")]
28+
[assembly: AssemblyVersion("6.11.1")]
29+
[assembly: AssemblyFileVersion("6.11.1")]
3030
#if !SIGN
3131
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Resources.Test")]
3232
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.MachineLearning.Test")]

src/Resources/Resources.Sdk/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
[assembly: AssemblyTitle("Microsoft Azure Resource Management Library")]
88
[assembly: AssemblyDescription("Provides Microsoft Azure resource management operations including Resource Groups.")]
99

10-
[assembly: AssemblyVersion("6.11.0")]
11-
[assembly: AssemblyFileVersion("6.11.0")]
10+
[assembly: AssemblyVersion("6.11.1")]
11+
[assembly: AssemblyFileVersion("6.11.1")]
1212
[assembly: AssemblyConfiguration("")]
1313
[assembly: AssemblyCompany("Microsoft")]
1414
[assembly: AssemblyProduct("Azure .NET SDK")]

src/Resources/Resources/Az.Resources.psd1

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 9/20/2023
6+
# Generated on: 9/27/2023
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '6.11.0'
15+
ModuleVersion = '6.11.1'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -252,8 +252,7 @@ PrivateData = @{
252252
# IconUri = ''
253253

254254
# ReleaseNotes of this module
255-
ReleaseNotes = '* Supported ''TemplateParameterFile'' to accept a ''.bicepparam'' file.
256-
* Fixed inexplicable error message when subscription and scope are neither provided in ''Get-AzRoleDefinition''. [#22716]'
255+
ReleaseNotes = '* Reverted commits that caused regression in ''Get-AzRoleAssignment''. [#22863]'
257256

258257
# Prerelease string of this module
259258
# Prerelease = ''

src/Resources/Resources/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020

2121
## Upcoming Release
2222

23+
## Version 6.11.1
24+
* Reverted commits that caused regression in `Get-AzRoleAssignment`. [#22863]
25+
2326
## Version 6.11.0
2427
* Supported `TemplateParameterFile` to accept a `.bicepparam` file.
2528
* Fixed inexplicable error message when subscription and scope are neither provided in `Get-AzRoleDefinition`. [#22716]

src/Resources/Resources/Models.ResourceGroups/ResourcesBaseCmdlet.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ namespace Microsoft.Azure.Commands.Resources.Models
1717
{
1818
using Authorization;
1919
using ResourceManager.Common;
20-
using System.Management.Automation;
21-
using System;
2220

2321
/// <summary>
2422
/// Base class for all resources cmdlets
@@ -116,10 +114,5 @@ public virtual string DetermineParameterSetName()
116114
{
117115
return ParameterSetName;
118116
}
119-
120-
protected void WriteTerminatingError(string message, params object[] args)
121-
{
122-
ThrowTerminatingError(new ErrorRecord(new Exception(String.Format(message, args)), "Error", ErrorCategory.NotSpecified, null));
123-
}
124117
}
125118
}

src/Resources/Resources/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
[assembly: ComVisible(false)]
2626
[assembly: CLSCompliant(false)]
2727
[assembly: Guid("e386b843-f3f0-4db3-8664-37d16b860dde")]
28-
[assembly: AssemblyVersion("6.11.0")]
29-
[assembly: AssemblyFileVersion("6.11.0")]
28+
[assembly: AssemblyVersion("6.11.1")]
29+
[assembly: AssemblyFileVersion("6.11.1")]
3030
#if !SIGN
3131
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Resources.Test")]
3232
#endif

src/Resources/Resources/Properties/Resources.Designer.cs

Lines changed: 0 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)