Skip to content

Commit 166c362

Browse files
author
Stefan Manea
committed
Merge branch 'network-october-release' into AzureFirewallIcmp
2 parents f672338 + 8a7236f commit 166c362

File tree

4 files changed

+10
-17
lines changed

4 files changed

+10
-17
lines changed

Azs.Update.Admin/Module/Azs.Update.Admin/Azs.Update.Admin.psd1

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Licensed under the MIT License. See License.txt in the project root for license
1717
RootModule = 'Azs.Update.Admin.psm1'
1818

1919
# Version number of this module.
20-
ModuleVersion = '0.2.0'
20+
ModuleVersion = '0.2.1'
2121

2222
# Supported PSEditions
2323
# CompatiblePSEditions = @()
@@ -114,20 +114,8 @@ Licensed under the MIT License. See License.txt in the project root for license
114114
# IconUri = ''
115115

116116
# ReleaseNotes of this module
117-
ReleaseNotes = '## 2018.9.10
118-
* Module dependencies updated
119-
* AzureRM.Profile
120-
* AzureRM.Resources
121-
* Support handling names of nested resources
122-
* Get-AzsUpdate
123-
* Get-UpdateRun
124-
* Install-AzsUpdate
125-
* Resume-AzsUpdate
126-
* Deprecations
127-
* Get-AzsUpdate, the parameter Update is now an alias for Name
128-
* Get-AzsUpdateLocation, the parameter Location is now an alias for Name
129-
* Bug fixes
130-
* Handle ErrrorAction correctly now
117+
ReleaseNotes = '## 2018.12
118+
* Added a warning to recommend running Test-AzureStack before Install-AzsUpdate
131119
'
132120

133121
} # End of PSData hashtable

Azs.Update.Admin/Module/Azs.Update.Admin/ChangeLog.md

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

22+
## Version 0.2.1
23+
* Added a warning to recommend running Test-AzureStack before Install-AzsUpdate
24+
2225
## Version 0.2.0
2326
* Module dependencies updated
2427
* AzureRM.Profile

Azs.Update.Admin/Module/Azs.Update.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Install-AzsUpdate.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,10 @@ function Install-AzsUpdate {
9595
$Name = Get-ResourceNameSuffix -ResourceName $Name
9696
}
9797

98+
Write-Warning -Message 'It is strongly recommended to run Test-AzureStack(https://aka.ms/testazurestack) before applying update.'
99+
98100
if ($PsCmdlet.ShouldProcess($Name, "Install the update")) {
99-
if ($Force.IsPresent -or $PsCmdlet.ShouldContinue("Install the update?", "Performing operation ApplyWithHttpMessagesAsync on $Name")) {
101+
if ($Force.IsPresent -or $PsCmdlet.ShouldContinue("It is strongly recommended to Test-AzureStack before applying update. Are you sure you want to continue?", "Performing Update $Name")) {
100102

101103
$NewServiceClient_params = @{
102104
FullClientTypeName = 'Microsoft.AzureStack.Management.Update.Admin.UpdateAdminClient'

AzureStack/AzureStack.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
@{ModuleName = 'Azs.Storage.Admin'; RequiredVersion = '0.2.0'; },
6666
@{ModuleName = 'Azs.Subscriptions'; RequiredVersion = '0.2.0'; },
6767
@{ModuleName = 'Azs.Subscriptions.Admin'; RequiredVersion = '0.3.0'; },
68-
@{ModuleName = 'Azs.Update.Admin'; RequiredVersion = '0.2.0'; })
68+
@{ModuleName = 'Azs.Update.Admin'; RequiredVersion = '0.2.1'; })
6969

7070
# Assemblies that must be loaded prior to importing this module
7171
# RequiredAssemblies = @()

0 commit comments

Comments
 (0)