Skip to content

Commit 2bd5767

Browse files
authored
Merge pull request #14546 from Azure/wyunchi/merge/network-november
[Network] Sync from master branch
2 parents 02139d2 + 9181ba9 commit 2bd5767

File tree

3,427 files changed

+456669
-235940
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,427 files changed

+456669
-235940
lines changed

.azure-pipelines/sign-tool-predictor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ steps:
4141
inputs:
4242
command: custom
4343
custom: msbuild
44-
arguments: 'tools\Az.Tools.Predictor\build.proj /target:"Clean;Build" /p:Configuration=Release'
44+
arguments: 'tools\Az.Tools.Predictor\build.proj /target:"Clean;Build;GenerateHelp" /p:Configuration=Release /p:PowerShellCoreCommandPrefix="$(Pipeline.Workspace)\\PowerShell-7.2.0-preview.3\\pwsh.exe -NonInteractive -NoLogo -NoProfile -Command"'
4545

4646
- task: UseDotNet@2
4747
displayName: 'Install DotNet 2.1 Runtime for Signing'

.ci-config.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
{
2020
"patterns": [
21-
"src/*.props"
21+
"src/*.props$"
2222
],
2323
"phases": [
2424
"build:all",
@@ -65,7 +65,7 @@
6565
},
6666
{
6767
"patterns": [
68-
"src/{ModuleName}/**/*.md"
68+
"src/{ModuleName}/**/*.md$"
6969
],
7070
"phases": [
7171
"build:module",
@@ -74,7 +74,7 @@
7474
},
7575
{
7676
"patterns": [
77-
"src/{ModuleName}/**/*.csproj"
77+
"src/{ModuleName}/**/*.csproj$"
7878
],
7979
"phases": [
8080
"build:related-module",

ChangeLog.md

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,97 @@
1+
## 5.6.0 - March 2021
2+
#### Az.Accounts
3+
* Upgrade Azure.Identity to fix the issue that Connect-AzAccount fails when ADFS credential is used [#13560]
4+
5+
#### Az.Automation
6+
* Fixed the issue that string cannot be serialized correctly. [#14215]
7+
* Added Support for Python3 Runbook Type
8+
9+
#### Az.Compute
10+
* Added parameter '-EnableHotpatching' to the 'Set-AzVMOperatingSystem' cmdlet for Windows machines.
11+
* Added parameter '-PatchMode' to the Linux parameter sets in the cmdlet 'Set-AzVMOperatingSystem'.
12+
* [Breaking Change] Breaking changes for users in the public preview for the VM Guest Patching feature.
13+
- Removed property 'RebootStatus' from the 'Microsoft.Azure.Management.Compute.Models.LastPatchInstallationSummary' object.
14+
- Removed property 'StartedBy' from the 'Microsoft.Azure.Management.Compute.Models.LastPatchInstallationSummary' object.
15+
- Renamed property 'Kbid' to 'KbId' in the 'Microsoft.Azure.Management.Compute.Models.VirtualMachineSoftwarePatchProperties' object.
16+
- Renamed property 'patches' to 'availablePatches' in the 'Microsoft.Azure.Management.Compute.Models.VirtualMachineAssessPatchesResult' object.
17+
- Renamed object 'Microsoft.Azure.Management.Compute.Models.SoftwareUpdateRebootBehavior' to 'Microsoft.Azure.Management.Compute.Models.VMGuestPatchRebootBehavior'.
18+
- Renamed object 'Microsoft.Azure.Management.Compute.Models.InGuestPatchMode' to 'Microsoft.Azure.Management.Compute.Models.WindowsVMGuestPatchMode'.
19+
* [Breaking Change] Removed all 'ContainerService' cmdlets. The Container Service API was deprecated in January 2020.
20+
- 'Add-AzContainerServiceAgentPoolProfile'
21+
- 'Get-AzContainerService'
22+
- 'New-AzContainerService'
23+
- 'New-AzContainerServiceConfig'
24+
- 'Remove-AzContainerService'
25+
- 'Remove-AzContainerServiceAgentPoolProfile'
26+
- 'Update-AzContainerService'
27+
28+
#### Az.ContainerRegistry
29+
* Fixed authentication for `Connect-AzContainerRegistry`
30+
31+
#### Az.CosmosDB
32+
* Introduced NetworkAclBypass and NetworkAclBypassResourceIds for Database Account cmdlets.
33+
* Introduced ServerVersion parameter to Update-AzCosmosDBAccount.
34+
* Introduced BackupInterval and BackupRetention for Database Account cmdlets
35+
36+
#### Az.DataFactory
37+
* Updated ADF .Net SDK version to 4.14.0
38+
39+
#### Az.Migrate
40+
* Az.Migrate GA
41+
* Incorporated Initialize-AzMigrateReplicationInfrastructure as a cmdlet in the Az.Migrate module, from the external script that is run currently today.
42+
* Made some parameters of New-AzMigrateServerReplication, New-AzMigrateDiskMapping case insensitive.
43+
* Added support for scale appliance change, to handle new V3 keys.
44+
45+
#### Az.RecoveryServices
46+
* Added null check for target storage account in FileShare restore.
47+
48+
#### Az.Resources
49+
* Added support for Azure resources deployment in Bicep language
50+
* Fixed issues with TemplateSpec deployments in 'New-AzTenantDeployment' and 'New-AzManagementGroupDeployment'
51+
* Added support for '-QueryString' parameter in 'Test-Az*Deployments' cmdlets
52+
* Fixed issue with dynamic parameters when 'New-Az*Deployments' is used with '-QueryString'
53+
* Added support for '-TemplateParameterObject' parameter while using '-TemplateSpecId' parameter in 'New-Az*Deployments' cmdlets
54+
* Fixed the inaccurate error message received on trying to deploy a non-existent template spec
55+
56+
#### Az.Storage
57+
* Upgraded to Microsoft.Azure.Management.Storage 19.0.0, to support new API version 2021-01-01.
58+
* Supported resource access rule in NetworkRuleSet
59+
- 'Update-AzStorageAccountNetworkRuleSet'
60+
- 'Add-AzStorageAccountNetworkRule'
61+
- 'Remove-AzStorageAccountNetworkRule'
62+
* Supported Blob version and Append Blob type in Management Policy
63+
- 'Add-AzStorageAccountManagementPolicyAction'
64+
- 'New-AzStorageAccountManagementPolicyFilter'
65+
- 'Set-AzStorageAccountManagementPolicy'
66+
* Supported create/update account with AllowSharedKeyAccess
67+
- 'New-AzStorageAccount'
68+
- 'Set-AzStorageAccount'
69+
* Supported create Encryption Scope with RequireInfrastructureEncryption
70+
- 'New-AzStorageEncryptionScope'
71+
* Supported copy block blob synchronously, with encryption scope
72+
- 'Copy-AzStorageBlob'
73+
* Fixed issue that Get-AzStorageBlobContent use wrong directory separator char on Linux and MacOS [#14234]
74+
75+
#### Az.Websites
76+
* Introduced an option to give custom timeout for 'Publish-AzWebApp'
77+
* Added support for App Service Environment
78+
- 'New-AzAppServiceEnvironment'
79+
- 'Remove-AzAppServiceEnvironment'
80+
- 'Get-AzAppServiceEnvironment'
81+
- 'New-AzAppServiceEnvironmentInboundServices'
82+
83+
### Thanks to our community contributors
84+
* @alunmj, Small spelling, formatting changes (#14155)
85+
* @chakra146, Update Add-AzLoadBalancerInboundNatPoolConfig.md (#14231)
86+
* Martin Ehrnst (@ehrnst), Fixed a typo in the cmdlet (#14112)
87+
* Jan David Narkiewicz (@jdnark)
88+
* Examples used New-AzAks which is legacy cmdlet and the alias for New-AzAksCluster. Changed examples to use New-AzAksCluster which is the cmdlet this documentation page targets. (#14088)
89+
* Type fox: changed SshKeyVaule to SshKeyValue (#14087)
90+
* Ivan Kulezic (@kukislav), Add sql mi maintenance configuration examples (#14216)
91+
* @webguynj, Update Set-AzNetworkSecurityRuleConfig.md (#14176)
92+
* Yannick Dils (@yannickdils), Added an additional cmdline to the example which applies the changes to the load balancer (#14185)
93+
94+
195
## 5.5.0 - February 2021
296
#### Az.Accounts
397
* Tracked CloudError code in exception

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ branches:
55
- master
66
environment:
77
github_access_token:
8-
secure: VMFbecLLHzDq/09YDPbcM0VDDSwwgY57vr5GXK6cZZ4Ti/Xs5RZoylzV8MMr1350
8+
secure: HIJXIKgTzYsRJu2WfSlzBzunQd8dgrXu4Dm8GeYfdiDFwYQzyr4Aj8is5UCd9Oia
99

1010
before_build:
1111
- git config --global credential.helper store

build.proj

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -140,12 +140,6 @@
140140
TaskParameter="Value"
141141
PropertyName="SubTasks" />
142142
</CreateProperty>
143-
<CreateProperty
144-
Value="@(TestCsprojList->Split(`;`)->Count())">
145-
<Output
146-
TaskParameter="Value"
147-
PropertyName="IsTestListEmpty" />
148-
</CreateProperty>
149143
</Target>
150144

151145
<!-- Build all flavors of the Cmdlets -->
@@ -314,10 +308,9 @@
314308
<Target Name="Test" DependsOnTargets="FilterBuild">
315309
<Message Importance="high" Text="Running check in tests..." />
316310
<MakeDir Directories="$(TestOutputDirectory)" ContinueOnError="false" />
317-
318311
<!-- https://github.com/Microsoft/msbuild/issues/3157#issuecomment-378002971 -->
319312
<!-- https://github.com/xunit/xunit/issues/1154#issuecomment-405366373 -->
320-
<Exec Command="dotnet test $(RepoArtifacts)Azure.PowerShell.sln --filter &quot;AcceptanceType=CheckIn%26RunType!=DesktopOnly&quot; --configuration $(Configuration) --framework $(TestFramework) --logger trx --results-directory &quot;$(TestOutputDirectory)&quot;" Condition="'$(IsTestListEmpty)' == 'false'" />
313+
<Exec Command="dotnet test $(RepoArtifacts)Azure.PowerShell.sln --filter &quot;AcceptanceType=CheckIn%26RunType!=DesktopOnly&quot; --configuration $(Configuration) --framework $(TestFramework) --logger trx --results-directory &quot;$(TestOutputDirectory)&quot;" Condition="'$(TestCsprojList)' != ''" />
321314
<Message Importance="high" Text="Finish running tests..." />
322315
<OnError ExecuteTargets="TestFailureErrorMessage" />
323316
</Target>

documentation/azure-powershell-modules.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Cloud Service | `Az.CloudService`
3131
Cognitive Services | `Az.CognitiveServices` | [![CognitiveServices]][CognitiveServicesGallery]
3232
Compute | `Az.Compute` | [![Compute]][ComputeGallery]
3333
Communication | `Az.Communication` | [![Communication]][CommunicationGallery]
34+
Confluent | `Az.Confluent` | [![Confluent]][ConfluentGallery]
3435
Connected Kubernetes | `Az.ConnectedKubernetes` | [![ConnectedKubernetes]][ConnectedKubernetesGallery]
3536
Connected Machine | `Az.ConnectedMachine` | [![ConnectedMachine]][ConnectedMachineGallery]
3637
Container Instance | `Az.ContainerInstance` | [![ContainerInstance]][ContainerInstanceGallery]
@@ -153,6 +154,7 @@ Windows Iot Services | `Az.WindowsIotServices`
153154
[CognitiveServices]: https://img.shields.io/powershellgallery/v/Az.CognitiveServices.svg?style=flat-square&label=Az.CognitiveServices
154155
[Compute]: https://img.shields.io/powershellgallery/v/Az.Compute.svg?style=flat-square&label=Az.Compute
155156
[Communication]: https://img.shields.io/powershellgallery/v/Az.Communication.svg?style=flat-square&label=Az.Communication
157+
[Confluent]: https://img.shields.io/powershellgallery/v/Az.Confluent.svg?style=flat-square&label=Az.Confluent
156158
[ConnectedKubernetes]: https://img.shields.io/powershellgallery/v/Az.ConnectedKubernetes.svg?style=flat-square&label=Az.ConnectedKubernetes
157159
[ConnectedMachine]: https://img.shields.io/powershellgallery/v/Az.ConnectedMachine.svg?style=flat-square&label=Az.ConnectedMachine
158160
[ContainerInstance]: https://img.shields.io/powershellgallery/v/Az.ContainerInstance.svg?style=flat-square&label=Az.ContainerInstance
@@ -273,6 +275,7 @@ Windows Iot Services | `Az.WindowsIotServices`
273275
[CognitiveServicesGallery]: https://www.powershellgallery.com/packages/Az.CognitiveServices/
274276
[ComputeGallery]: https://www.powershellgallery.com/packages/Az.Compute/
275277
[CommunicationGallery]: https://www.powershellgallery.com/packages/Az.Communication/
278+
[ConfluentGallery]: https://www.powershellgallery.com/packages/Az.Confluent/
276279
[ConnectedKubernetesGallery]: https://www.powershellgallery.com/packages/Az.ConnectedKubernetes/
277280
[ConnectedMachineGallery]: https://www.powershellgallery.com/packages/Az.ConnectedMachine/
278281
[ContainerInstanceGallery]: https://www.powershellgallery.com/packages/Az.ContainerInstance/

documentation/migration-guides/Az.5.0.0-migration-guide.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,8 @@ The ability to update soft-delete setting is deprecated in Az.KeyVault 3.0.0. Re
237237
### Get-AzKeyVaultSecret
238238

239239
The property `SecretValueText` of type `Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret`
240-
has been removed. The `SecretValueText` property has been replaced with `SecretValue`.
240+
has been removed. Either apply a `-AsPlainText` to the call to get the plain text secret,
241+
or use `$secret.SecretValue` of type `SecureString` in your script.
241242

242243
#### Before
243244

@@ -249,13 +250,7 @@ $secretInPlainText = $secret.SecretValueText
249250
#### After
250251

251252
```powershell
252-
# PowerShell 7 or newer
253-
$secret = Get-AzKeyVaultSecret -VaultName myVault -Name mySecret
254-
$secretInPlainText = ConvertFrom-SecureString -SecureString $secret.SecretValue -AsPlainText
255-
256-
# Prior to PowerShell 7, or Windows PowerShell
257-
$secret = Get-AzKeyVaultSecret -VaultName myVault -Name mySecret
258-
$secretInPlainText = [System.Runtime.InteropServices.Marshal]::PtrToStringBSTR([System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($secret.SecretValue))
253+
$secretInPlainText = Get-AzKeyVaultSecret -VaultName myVault -Name mySecret -AsPlainText
259254
```
260255

261256
## Az.ManagedServices

documentation/testing-docs/test-matrix-for-az-accounts.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ Each test scenario is marked with one priority P0, P1, P2 based on two factors:
1313

1414
|Scenario\AuthN Method|Interactive|Device Code (`-DeviceCode`)|User Name+Password (`-Credential`)|Access Token (`-AccessToken`)|SP Secret (`-ServicePrincipal -Credential`)|SP Cert (`-ServicePrincipal -CertificateThumbprint`)|System MSI (`-Identity`)|User MSI (`-Identity -AccountId`)|User MSI-Func App published by VS Code (`-Identity -AccountId`)|
1515
|----|----|----|----|----|----|----|----|----|----|
16-
|`No Subscrption/Tenant`|P0 (SemiAuto)|P0|P0 (Auto-No)|P0 (SemiAuto-No)|P0 (Auto-No)|P0 (SemiAuto-No)|P0|P0|P0|
17-
|`-Subscription sub-id`|P0 (SemiAuto)|P1|P1 (Auto-No)|P1 (SemiAuto-No)|P1 (Auto-No)|P2 (SemiAuto-No)|P1|P1|P1|
18-
|`-Subscription sub-name`|P1 (SemiAuto)|P2|P2 (Auto-No)|P2 (SemiAuto-No)|P2 (Auto-No)|P2 (SemiAuto-No)|P2|P2|P2|
19-
|`-Subscription sub-id-in-2nd-tenant`|P0 (SemiAuto-No)|P2|P2 (Auto-No)|P2 (SemiAuto-No)|P2 (Auto-No)|P2 (SemiAuto-No)|NA|NA|NA|
20-
|`-Tenant tenant-id`|P0 (SemiAuto)|P1|P1 (Auto-No)|P1 (SemiAuto-No)|P1 (Auto-No)|P2 (SemiAuto-No)|P1|P1|P1|
21-
|`-Tenant 2nd-tenant-id`|P1 (SemiAuto-No)|P1|P1 (Auto-No)|P1 (SemiAuto-No)|P1 (Auto-No)|P1 (SemiAuto-No)|NA|NA|NA|
16+
|`No Subscrption/Tenant`|P0 (SemiAuto)|P0|P0 (Auto-No)|P0 (SemiAuto-No)|NA|NA|P0|P0|P0|
17+
|`-Subscription sub-id`|P0 (SemiAuto)|P1|P1 (Auto-No)|P1 (SemiAuto-No)|NA|NA|P1|P1|P1|
18+
|`-Subscription sub-name`|P1 (SemiAuto)|P2|P2 (Auto-No)|P2 (SemiAuto-No)|NA|NA|P2|P2|P2|
19+
|`-Subscription sub-id-in-2nd-tenant`|P0 (SemiAuto-No)|P2|P2 (Auto-No)|NA|NA|NA|NA|NA|NA|
20+
|`-Tenant tenant-id`|P0 (SemiAuto)|P1|P1 (Auto-No)|P1 (SemiAuto-No)|P0 (Auto-No)|P0 (SemiAuto-No)|P1|P1|P1|
21+
|`-Tenant 2nd-tenant-id`|P1 (SemiAuto-No)|P1|P1 (Auto-No)|NA|P2 (Auto-No)|P2 (SemiAuto-No)|NA|NA|NA|
2222
|`-Tenant tenant-id -Subscription sub-id`|P0 (SemiAuto)|P1|P1 (Auto-No)|P1 (SemiAuto-No)|P1 (Auto-No)|P1 (SemiAuto-No)|P1|P1|P1|
23-
|`-Tenant 2nd-tenant-id -Subscription sub-id-in-2nd-tenant`|P1 (SemiAuto-No)|P2|P2 (Auto-No)|P2 (SemiAuto-No)|P2 (Auto-No)|P2 (SemiAuto-No)|NA|NA|NA|
23+
|`-Tenant 2nd-tenant-id -Subscription sub-id-in-2nd-tenant`|P1 (SemiAuto-No)|P2|P2 (Auto-No)|NA|P2 (Auto-No)|P2 (SemiAuto-No)|NA|NA|NA|
2424
|`No Parameter` Click back button before inputing password(Negative)|P2|P2|NA|NA|NA|NA|NA|NA|NA|
2525
|`-Subscripiton -sub-id-no-permission`(Negative)|P2|P2|P2|P2|P2|P2|P2|P2|P2|
2626
|`-Tenant -tenant-id-no-permission`(Negative)|P2|P2|P2|P2|P2|P2|P2|P2|P2|

setup/generate.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ if( (-not (get-command -ea 0 light)) -or (-not (get-command -ea 0 heat)) -or (-n
3737
$outputName ="Az-Cmdlets"
3838

3939
# generate the product name from the current month/year.
40-
$productName = "Microsoft Azure PowerShell - February 2021"
40+
$productName = "Microsoft Azure PowerShell - March 2021"
4141

4242
# where to put temp files
4343
$tmp = Join-Path $env:temp azure-cmdlets-tmp

src/ADDomainServices/Az.ADDomainServices.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.5'; })
54+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.6'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = './bin/Az.ADDomainServices.private.dll'

src/Accounts/Accounts/Az.Accounts.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: 2/5/2021
6+
# Generated on: 2/26/2021
77
#
88

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

1414
# Version number of this module.
15-
ModuleVersion = '2.2.5'
15+
ModuleVersion = '2.2.6'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -143,8 +143,7 @@ PrivateData = @{
143143
# IconUri = ''
144144

145145
# ReleaseNotes of this module
146-
ReleaseNotes = '* Tracked CloudError code in exception
147-
* Raised ''ContextCleared'' event when ''Clear-AzContext'' was executed'
146+
ReleaseNotes = '* Upgrade Azure.Identity to fix the issue that Connect-AzAccount fails when ADFS credential is used [#13560]'
148147

149148
# Prerelease string of this module
150149
# Prerelease = ''

src/Accounts/Accounts/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
-->
2020
## Upcoming Release
2121

22+
## Version 2.2.6
23+
* Upgrade Azure.Identity to fix the issue that Connect-AzAccount fails when ADFS credential is used [#13560]
24+
2225
## Version 2.2.5
2326
* Tracked CloudError code in exception
2427
* Raised 'ContextCleared' event when `Clear-AzContext` was executed

src/Accounts/Accounts/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
// You can specify all the values or you can default the Build and Revision Numbers
4444
// by using the '*' as shown below:
4545

46-
[assembly: AssemblyVersion("2.2.5")]
47-
[assembly: AssemblyFileVersion("2.2.5")]
46+
[assembly: AssemblyVersion("2.2.6")]
47+
[assembly: AssemblyFileVersion("2.2.6")]
4848
#if !SIGN
4949
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Accounts.Test")]
5050
#endif

src/Accounts/Authentication.ResourceManager/Properties/Resources.Designer.cs

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

src/Accounts/Authentication/Authentication.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="Azure.Identity" Version="1.4.0-beta.1" />
15+
<PackageReference Include="Azure.Identity" Version="1.4.0-beta.3" />
1616
</ItemGroup>
1717

1818
<ItemGroup>

src/Accounts/Authentication/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@
4343
// You can specify all the values or you can default the Build and Revision Numbers
4444
// by using the '*' as shown below:
4545
// [assembly: AssemblyVersion("1.0.*")]
46-
[assembly: AssemblyVersion("2.2.5")]
47-
[assembly: AssemblyFileVersion("2.2.5")]
46+
[assembly: AssemblyVersion("2.2.6")]
47+
[assembly: AssemblyFileVersion("2.2.6")]

src/Accounts/Authentication/Utilities/CustomAssemblyResolver.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ public static class CustomAssemblyResolver
2424
private static IDictionary<string, Version> NetFxPreloadAssemblies =
2525
new Dictionary<string, Version>(StringComparer.InvariantCultureIgnoreCase)
2626
{
27-
{"Azure.Core", new Version("1.8.1.0")},
27+
{"Azure.Core", new Version("1.9.0.0")},
2828
{"Microsoft.Bcl.AsyncInterfaces", new Version("1.0.0.0")},
29-
{"Microsoft.Identity.Client", new Version("4.21.0.0") },
30-
{"Microsoft.Identity.Client.Extensions.Msal", new Version("2.16.2.0") },
29+
{"Microsoft.Identity.Client", new Version("4.23.0.0") },
30+
{"Microsoft.Identity.Client.Extensions.Msal", new Version("2.16.6.0") },
3131
{"Microsoft.IdentityModel.Clients.ActiveDirectory", new Version("3.19.2.6005")},
3232
{"Microsoft.IdentityModel.Clients.ActiveDirectory.Platform", new Version("3.19.2.6005")},
3333
{"Newtonsoft.Json", new Version("10.0.0.0")},

src/Accounts/Authenticators/Authenticators.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
</PropertyGroup>
2424

2525
<ItemGroup>
26-
<PackageReference Include="Azure.Identity" Version="1.4.0-beta.1" />
26+
<PackageReference Include="Azure.Identity" Version="1.4.0-beta.3" />
2727
</ItemGroup>
2828

2929
<ItemGroup>

src/Accounts/Authenticators/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@
4848
// You can specify all the values or you can default the Build and Revision Numbers
4949
// by using the '*' as shown below:
5050
// [assembly: AssemblyVersion("1.0.*")]
51-
[assembly: AssemblyVersion("2.2.5")]
52-
[assembly: AssemblyFileVersion("2.2.5")]
51+
[assembly: AssemblyVersion("2.2.6")]
52+
[assembly: AssemblyFileVersion("2.2.6")]

0 commit comments

Comments
 (0)