Skip to content

Commit 058a5df

Browse files
Bump Version for 14.0.0
1 parent a20c6fd commit 058a5df

File tree

132 files changed

+177633
-82114
lines changed

Some content is hidden

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

132 files changed

+177633
-82114
lines changed

ChangeLog.md

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,70 @@
1+
## 14.0.0 - May 2025
2+
#### Az.Accounts 5.0.0
3+
* Changed the default output access token of 'Get-AzAccessToken' from plain text to 'SecureString'.
4+
* Removed the warning message about failing to initialize PSStyle in automation runbooks. [#26155]
5+
* Increased the timeout for tab-completion of location, resource group, etc. to 10 seconds.
6+
7+
#### Az.Aks 7.0.0
8+
* Introduced various new features by upgrading code generator. Please see detail [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md).
9+
* Updated the default value of '-NodeVmSize' parameter in 'New-AzAksCluster' and '-VmSize' parameter in 'New-AzAksNodePool' from 'Standard_D2_V2' to being dynamically selected by the AKS resource provider based on quota and capacity in the next major release.
10+
11+
#### Az.AppConfiguration 2.0.0
12+
* Introduced various new features by upgrading code generator. Please see detail [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md).
13+
14+
#### Az.Cdn 5.0.0
15+
* Upgraded Api version to 2025-04-15
16+
* Added support for cipher
17+
* Added support for migration from classic cdn to afdx
18+
19+
#### Az.Compute 10.0.0
20+
* Added new properties 'Architecture', 'HyperVGeneration', and 'ImageDeprecationStatus' to be returned in 'Get-AzVMImage' ListVMImage parameter set.
21+
* Deprecated 'Get-AzVMSize' 'List Virtual Machine Size' parameter set.
22+
* Added new parameters 'EnableAutomaticZoneRebalance', 'AutomaticZoneRebalanceStrategy' and 'AutomaticZoneRebalanceBehavior' to 'New-AzVmssConfig' and 'Update-AzVmss' cmdlets for VMSS Automatic Zone Rebalancing.
23+
24+
#### Az.EventHub 5.3.0
25+
* Added parameters 'MaxReplicationLagDurationInSeconds' and 'Replicalocation' in cmdlets 'New-AzEventHubNamespace' & 'Set-AzEventHubNamespace'
26+
* Added new cmdlets for doing namespace failover - 'Start-AzEventHubNamespaceFailOver'
27+
* Added new cmdlets for generating replication object for Replication parameter - 'New-AzEventHubLocationsNameObject'
28+
29+
#### Az.Functions 4.2.1
30+
* Updated API client to latest commit for version 2023-12-01
31+
* Refreshed stack definitions
32+
* Enforced runtime EOL policy for function app creation: block expired, warn if within 6 months
33+
34+
#### Az.ManagedServiceIdentity 2.0.0
35+
* Introduced various new features by upgrading code generator. Please see details [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md).
36+
37+
#### Az.Migrate 2.7.1
38+
* Added validation for Data.Replication
39+
- Added validation to protect virtual machines in 'New-AzMigrateLocalServerReplication'
40+
41+
#### Az.Network 7.16.2
42+
* Onboarded 'Microsoft.FluidRelay/fluidRelayServers' to private link cmdlets
43+
44+
#### Az.RecoveryServices 7.7.1
45+
* Updated 'GetAzureRmRecoveryServicesBackupSchedulePolicyObject' to default the 'PolicySubType' to 'Enhanced' for AzureVM.
46+
* Updated Azure Backup SDK version to support protecting TVM with standard policy.
47+
48+
#### Az.RedisEnterpriseCache 1.5.0
49+
* Added support for listing all SKUs a cluster can scale to.
50+
* Added a new enum: NoCluster for Clustering policy.
51+
52+
#### Az.Resources 8.0.0
53+
* [Breaking Change] Updated API version of resource types from latest to DefaultApiVersion for cmdlets '*-AzResource' and 'Invoke-AzResourceAction'.
54+
55+
#### Az.Sql 6.0.4
56+
* Added server level action groups in enum of action groups to be able to be configured via auditing.
57+
58+
#### Az.StackHCI 2.6.0
59+
* Added EOL Message for 22H2
60+
61+
#### Az.Storage 9.0.0
62+
* Removed MD5 from blob and file upload in some scenarios
63+
- 'Set-AzStorageFileContent'
64+
- 'Set-AzStorageBlobContent'
65+
* Added prompt for customer confirmation for long running account migration operation .
66+
- 'Start-AzStorageAccountMigration'
67+
168
## 13.5.0 - May 2025
269
#### Az.Accounts 4.2.0
370
* Updated warning message about MFA. For more details, see https://go.microsoft.com/fwlink/?linkid=2276314

documentation/SyntaxChangeLog/SyntaxChangeLog-Az14.md

Lines changed: 495 additions & 0 deletions
Large diffs are not rendered by default.

src/Accounts/Accounts/Az.Accounts.psd1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 4/30/2025
6+
# Generated on: 5/14/2025
77
#
88

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

1414
# Version number of this module.
15-
ModuleVersion = '4.2.0'
15+
ModuleVersion = '5.0.0'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -146,9 +146,9 @@ PrivateData = @{
146146
# IconUri = ''
147147

148148
# ReleaseNotes of this module
149-
ReleaseNotes = '* Updated warning message about MFA. For more details, see https://go.microsoft.com/fwlink/?linkid=2276314
150-
* Fixed token in auxiliary authentication header.
151-
* Collected authentication method for telemetry in end process of cmdlet.'
149+
ReleaseNotes = '* Changed the default output access token of ''Get-AzAccessToken'' from plain text to ''SecureString''.
150+
* Removed the warning message about failing to initialize PSStyle in automation runbooks. [#26155]
151+
* Increased the timeout for tab-completion of location, resource group, etc. to 10 seconds.'
152152

153153
# Prerelease string of this module
154154
# Prerelease = ''

src/Accounts/Accounts/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
-->
2020

2121
## Upcoming Release
22+
23+
## Version 5.0.0
2224
* Changed the default output access token of `Get-AzAccessToken` from plain text to `SecureString`.
2325
* Removed the warning message about failing to initialize PSStyle in automation runbooks. [#26155]
2426
* Increased the timeout for tab-completion of location, resource group, etc. to 10 seconds.

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("4.2.0")]
47-
[assembly: AssemblyFileVersion("4.2.0")]
46+
[assembly: AssemblyVersion("5.0.0")]
47+
[assembly: AssemblyFileVersion("5.0.0")]
4848
#if !SIGN
4949
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Accounts.Test")]
5050
#endif

src/Accounts/Accounts/Utilities/CommandMappings.json

Lines changed: 26 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@
101101
"Start-AzAksCluster": {},
102102
"Start-AzAksManagedClusterCommand": {},
103103
"Stop-AzAksCluster": {},
104+
"Update-AzAksMaintenanceConfiguration": {},
104105
"Get-AzAksClusterUpgradeProfile": {}
105106
},
106107
"Az.AksArc": {
@@ -814,6 +815,15 @@
814815
"Remove-AzBotService": {},
815816
"Update-AzBotService": {}
816817
},
818+
"Az.Carbon": {
819+
"Get-AzCarbonEmissionDataAvailableDateRange": {},
820+
"Get-AzCarbonEmissionReport": {},
821+
"New-AzCarbonItemDetailsQueryFilterObject": {},
822+
"New-AzCarbonMonthlySummaryReportQueryFilterObject": {},
823+
"New-AzCarbonOverallSummaryReportQueryFilterObject": {},
824+
"New-AzCarbonTopItemsMonthlySummaryReportQueryFilterObject": {},
825+
"New-AzCarbonTopItemsSummaryReportQueryFilterObject": {}
826+
},
817827
"Az.Cdn": {
818828
"Clear-AzCdnEndpointContent": {},
819829
"Clear-AzFrontDoorCdnEndpointContent": {},
@@ -845,6 +855,9 @@
845855
"Get-AzFrontDoorCdnSecret": {},
846856
"Get-AzFrontDoorCdnSecurityPolicy": {},
847857
"Import-AzCdnEndpointContent": {},
858+
"Invoke-AzCdnAbortProfileToAFDMigration": {},
859+
"Invoke-AzCdnCommitProfileToAFDMigration": {},
860+
"Move-AzCdnProfileToAFD": {},
848861
"New-AzCdnCustomDomain": {},
849862
"New-AzCdnDeliveryRuleCacheExpirationActionObject": {},
850863
"New-AzCdnDeliveryRuleCacheKeyQueryStringActionObject": {},
@@ -869,6 +882,7 @@
869882
"New-AzCdnHealthProbeParametersObject": {},
870883
"New-AzCdnLoadParametersObject": {},
871884
"New-AzCdnManagedHttpsParametersObject": {},
885+
"New-AzCdnMigrationEndpointMappingObject": {},
872886
"New-AzCdnOrigin": {},
873887
"New-AzCdnOriginGroup": {},
874888
"New-AzCdnOriginGroupOverrideActionObject": {},
@@ -954,6 +968,7 @@
954968
"Test-AzCdnEndpointCustomDomain": {},
955969
"Test-AzCdnNameAvailability": {},
956970
"Test-AzCdnProbe": {},
971+
"Test-AzCdnProfileMigrationCompatibility": {},
957972
"Test-AzFrontDoorCdnEndpointCustomDomain": {},
958973
"Test-AzFrontDoorCdnEndpointNameAvailability": {},
959974
"Test-AzFrontDoorCdnProfileHostNameAvailability": {},
@@ -971,6 +986,7 @@
971986
"Update-AzFrontDoorCdnProfileSku": {},
972987
"Update-AzFrontDoorCdnRoute": {},
973988
"Update-AzFrontDoorCdnRule": {},
989+
"Update-AzFrontDoorCdnSecret": {},
974990
"Update-AzFrontDoorCdnSecurityPolicy": {}
975991
},
976992
"Az.ChangeAnalysis": {
@@ -1481,7 +1497,11 @@
14811497
"Start-AzConnectedNetworkVendorFunctionRoleInstance": {},
14821498
"Stop-AzConnectedNetworkVendorFunctionRoleInstance": {},
14831499
"Update-AzConnectedNetworkDeviceTag": {},
1484-
"Update-AzConnectedNetworkFunctionTag": {}
1500+
"Update-AzConnectedNetworkFunctionTag": {},
1501+
"Update-AzConnectedNetworkVendor": {},
1502+
"Update-AzConnectedNetworkVendorFunction": {},
1503+
"Update-AzConnectedNetworkVendorSku": {},
1504+
"Update-AzConnectedNetworkVendorSkuPreview": {}
14851505
},
14861506
"Az.ConnectedVMware": {
14871507
"Get-AzConnectedVMwareCluster": {},
@@ -3024,6 +3044,7 @@
30243044
"New-AzEventHubIPRuleConfig": {},
30253045
"New-AzEventHubKey": {},
30263046
"New-AzEventHubKeyVaultPropertiesObject": {},
3047+
"New-AzEventHubLocationsNameObject": {},
30273048
"New-AzEventHubNamespace": {},
30283049
"New-AzEventHubSchemaGroup": {},
30293050
"New-AzEventHubThrottlingPolicyConfig": {},
@@ -3046,6 +3067,7 @@
30463067
"Set-AzEventHubGeoDRConfigurationFailOver": {},
30473068
"Set-AzEventHubNamespace": {},
30483069
"Set-AzEventHubNetworkRuleSet": {},
3070+
"Start-AzEventHubNamespaceFailOver": {},
30493071
"Test-AzEventHubName": {},
30503072
"Get-AzEventHubNamespaceV2": {},
30513073
"New-AzEventHubNamespaceV2": {},
@@ -3355,8 +3377,7 @@
33553377
"Remove-AzImageBuilderTemplate": {},
33563378
"Remove-AzImageBuilderTrigger": {},
33573379
"Start-AzImageBuilderTemplate": {},
3358-
"Stop-AzImageBuilderTemplate": {},
3359-
"Update-AzImageBuilderTemplate": {}
3380+
"Stop-AzImageBuilderTemplate": {}
33603381
},
33613382
"Az.ImportExport": {
33623383
"Get-AzImportExport": {},
@@ -4196,19 +4217,6 @@
41964217
"Remove-AzMdpPool": {},
41974218
"Update-AzMdpPool": {}
41984219
},
4199-
"Az.Media": {
4200-
"Get-AzMediaService": {},
4201-
"Get-AzMediaServiceKey": {},
4202-
"Get-AzMediaServiceNameAvailability": {},
4203-
"New-AzMediaService": {},
4204-
"New-AzMediaServiceStorageConfig": {},
4205-
"Remove-AzMediaService": {},
4206-
"Set-AzMediaService": {},
4207-
"Set-AzMediaServiceKey": {},
4208-
"Sync-AzMediaServiceStorageKey": {},
4209-
"Get-AzMediaServiceKeys": {},
4210-
"Sync-AzMediaServiceStorageKeys": {}
4211-
},
42124220
"Az.Migrate": {
42134221
"Get-AzMigrateDiscoveredServer": {},
42144222
"Get-AzMigrateJob": {},
@@ -6461,6 +6469,7 @@
64616469
"Get-AzRedisEnterpriseCacheDatabase": {},
64626470
"Get-AzRedisEnterpriseCacheKey": {},
64636471
"Get-AzRedisEnterpriseCacheOperationStatus": {},
6472+
"Get-AzRedisEnterpriseCacheSku": {},
64646473
"Import-AzRedisEnterpriseCache": {},
64656474
"Invoke-AzRedisEnterpriseCacheDatabaseFlush": {},
64666475
"Invoke-AzRedisEnterpriseCacheForceDatabaseLinkToReplicationGroup": {},
@@ -7889,6 +7898,7 @@
78897898
"New-AzStorageContext": {},
78907899
"New-AzStorageDirectory": {},
78917900
"New-AzStorageEncryptionScope": {},
7901+
"New-AzStorageFileHardLink": {},
78927902
"New-AzStorageFileSASToken": {},
78937903
"New-AzStorageLocalUserPermissionScope": {},
78947904
"New-AzStorageLocalUserSshPassword": {},
@@ -7973,7 +7983,6 @@
79737983
"Update-AzStorageEncryptionScope": {},
79747984
"Update-AzStorageFileServiceProperty": {},
79757985
"Update-AzStorageServiceProperty": {},
7976-
"New-AzStorageFileHardLink": {},
79777986
"Get-AzStorageAccountMigration": {},
79787987
"Get-AzStorageFileServiceUsage": {},
79797988
"Start-AzStorageAccountMigration": {},

src/Accounts/AssemblyLoading/Properties/AssemblyInfo.cs

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

src/Accounts/Authentication/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
// [assembly: AssemblyVersion("1.0.*")]
46-
[assembly: AssemblyVersion("4.2.0")]
47-
[assembly: AssemblyFileVersion("4.2.0")]
46+
[assembly: AssemblyVersion("5.0.0")]
47+
[assembly: AssemblyFileVersion("5.0.0")]
4848
#if !SIGN
4949
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Authentication.Test")]
5050
#endif

src/Accounts/AuthenticationAssemblyLoadContext/Properties/AssemblyInfo.cs

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

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("4.2.0")]
52-
[assembly: AssemblyFileVersion("4.2.0")]
51+
[assembly: AssemblyVersion("5.0.0")]
52+
[assembly: AssemblyFileVersion("5.0.0")]

src/Aks/Aks.Management.Sdk/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
[assembly: AssemblyTitle("Microsoft Azure Container Service Management Library")]
1010
[assembly: AssemblyDescription("Provides Container Service management capabilities for Microsoft Azure.")]
1111

12-
[assembly: AssemblyVersion("6.1.1")]
13-
[assembly: AssemblyFileVersion("6.1.1")]
12+
[assembly: AssemblyVersion("7.0.0")]
13+
[assembly: AssemblyFileVersion("7.0.0")]
1414
[assembly: AssemblyCompany("Microsoft")]
1515
[assembly: AssemblyProduct("Azure .NET SDK")]
1616
[assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")]

src/Aks/Aks/Az.Aks.psd1

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 2025-04-30
6+
# Generated on: 5/14/2025
77
#
88

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

1414
# Version number of this module.
15-
ModuleVersion = '6.1.1'
15+
ModuleVersion = '7.0.0'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -53,18 +53,18 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

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

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = 'Aks.Autorest/bin/Az.Aks.private.dll',
6060
'Microsoft.Azure.PowerShell.Aks.Management.Sdk.dll',
6161
'YamlDotNet.dll'
6262

6363
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
64-
ScriptsToProcess = @()
64+
# ScriptsToProcess = @()
6565

6666
# Type files (.ps1xml) to be loaded when importing this module
67-
TypesToProcess = @()
67+
# TypesToProcess = @()
6868

6969
# Format files (.ps1xml) to be loaded when importing this module
7070
FormatsToProcess = 'Aks.Autorest/Az.Aks.format.ps1xml'
@@ -118,8 +118,7 @@ PrivateData = @{
118118
PSData = @{
119119

120120
# Tags applied to this module. These help with module discovery in online galleries.
121-
Tags = 'Azure', 'ResourceManager', 'ARM', 'AKS', 'Kubernetes', 'Container',
122-
'Orchestrator', 'Containers', 'Docker'
121+
Tags = 'Azure','ResourceManager','ARM','AKS','Kubernetes','Container','Orchestrator','Containers','Docker'
123122

124123
# A URL to the license for this module.
125124
LicenseUri = 'https://aka.ms/azps-license'
@@ -131,15 +130,8 @@ PrivateData = @{
131130
# IconUri = ''
132131

133132
# ReleaseNotes of this module
134-
ReleaseNotes = '* Preannounced breaking change: The default value of ''-NodeVmSize'' parameter of ''New-AzAksCluster'' will be changing from ''Standard_DS2_V2 (Linux), Standard_DS2_V3 (Windows)'' to being dynamically selected by the AKS resource provider based on quota and capacity in the next major release.
135-
* The code base is going to be refactored, the following cmdlet adds a BreakingChange announcement:
136-
* ''Get-AzAksMaintenanceConfiguration''
137-
* ''Get-AzAksManagedClusterOSOption''
138-
* ''Get-AzAksManagedClusterOutboundNetworkDependencyEndpoint''
139-
* ''Get-AzAksNodePoolUpgradeProfile''
140-
* ''Get-AzAksUpgradeProfile''
141-
* ''Get-AzAksVersion''
142-
* ''New-AzAksMaintenanceConfiguration'''
133+
ReleaseNotes = '* Introduced various new features by upgrading code generator. Please see detail [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md).
134+
* Updated the default value of ''-NodeVmSize'' parameter in ''New-AzAksCluster'' and ''-VmSize'' parameter in ''New-AzAksNodePool'' from ''Standard_D2_V2'' to being dynamically selected by the AKS resource provider based on quota and capacity in the next major release.'
143135

144136
# Prerelease string of this module
145137
# Prerelease = ''
@@ -152,7 +144,7 @@ PrivateData = @{
152144

153145
} # End of PSData hashtable
154146

155-
} # End of PrivateData hashtable
147+
} # End of PrivateData hashtable
156148

157149
# HelpInfo URI of this module
158150
# HelpInfoURI = ''

src/Aks/Aks/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
22+
## Version 7.0.0
2123
* Introduced various new features by upgrading code generator. Please see detail [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md).
2224
* Updated the default value of `-NodeVmSize` parameter in `New-AzAksCluster` and `-VmSize` parameter in `New-AzAksNodePool` from 'Standard_D2_V2' to being dynamically selected by the AKS resource provider based on quota and capacity in the next major release.
2325

0 commit comments

Comments
 (0)