Skip to content

release-2020-08-28 #12801

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 28, 2020
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
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.6.1 - August 2020
#### Az.Compute
* Patched '-EncryptionAtHost' parameter in 'New-AzVm' to remove default value of false [#12776]

## 4.6.0 - August 2020
#### Az.Accounts
* Loaded all public cloud environments when discovery endpoint doesn't return default AzureCloud or other public environments [#12633]
Expand Down
9 changes: 3 additions & 6 deletions src/Compute/Compute/Az.Compute.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 8/21/2020
# Generated on: 8/28/2020
#

@{
Expand All @@ -12,7 +12,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '4.3.0'
ModuleVersion = '4.3.1'

# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
Expand Down Expand Up @@ -205,10 +205,7 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '* Added ''-EncryptionAtHost'' parameter to ''New-AzVm'', ''New-AzVmss'', ''New-AzVMConfig'', ''New-AzVmssConfig'', ''Update-AzVM'', and ''Update-AzVmss''
* Added ''SecurityProfile'' to ''Get-AzVM'' and ''Get-AzVmss'' return object
* Added ''-InstanceView'' switch as optional parameter to ''Get-AzHostGroup''
* Added new cmdlet ''Invoke-AzVmPatchAssessment'''
ReleaseNotes = '* Patched ''-EncryptionAtHost'' parameter in ''New-AzVm'' to remove default value of false [#12776]'

# Prerelease string of this module
# Prerelease = ''
Expand Down
4 changes: 3 additions & 1 deletion src/Compute/Compute/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
- Additional information about change #1
-->
## Upcoming Release
* Patched -EncryptionAtHost parameter to remove default value of false

## Version 4.3.1
* Patched `-EncryptionAtHost` parameter in `New-AzVm` to remove default value of false [#12776]

## Version 4.3.0
* Added `-EncryptionAtHost` parameter to `New-AzVm`, `New-AzVmss`, `New-AzVMConfig`, `New-AzVmssConfig`, `Update-AzVM`, and `Update-AzVmss`
Expand Down
4 changes: 2 additions & 2 deletions src/Compute/Compute/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("91792853-487B-4DC2-BE6C-DD09A0A1BC10")]
[assembly: AssemblyVersion("4.3.0")]
[assembly: AssemblyFileVersion("4.3.0")]
[assembly: AssemblyVersion("4.3.1")]
[assembly: AssemblyFileVersion("4.3.1")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Compute.Test")]
#endif
4 changes: 2 additions & 2 deletions tools/Az/Az.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '4.6.0'
ModuleVersion = '4.6.1'

# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
Expand Down Expand Up @@ -63,7 +63,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.9.3'; },
@{ModuleName = 'Az.Billing'; RequiredVersion = '1.0.3'; },
@{ModuleName = 'Az.Cdn'; RequiredVersion = '1.4.3'; },
@{ModuleName = 'Az.CognitiveServices'; RequiredVersion = '1.5.1'; },
@{ModuleName = 'Az.Compute'; RequiredVersion = '4.3.0'; },
@{ModuleName = 'Az.Compute'; RequiredVersion = '4.3.1'; },
@{ModuleName = 'Az.ContainerInstance'; RequiredVersion = '1.0.3'; },
@{ModuleName = 'Az.ContainerRegistry'; RequiredVersion = '1.1.1'; },
@{ModuleName = 'Az.DataBoxEdge'; RequiredVersion = '1.1.0'; },
Expand Down
Loading