You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
71
71
# NestedModules = @()
@@ -115,8 +115,7 @@ PrivateData = @{
115
115
# IconUri = ''
116
116
117
117
# ReleaseNotes of this module
118
-
ReleaseNotes='* Removed the ability to create v2 Functions in regions that do not support it.
119
-
* Deprecated PowerShell 6.2. Added a warning for when a user creates a PowerShell 6.2 function app that advises them to create a PowerShell 7.0 function app instead.'
118
+
ReleaseNotes='Implemented Functions Stacks API which describes what runtimes and runtime versions are available for function app creation'
$accountsModule=Import-Module-Name $accountsName-MinimumVersion 1.7.4-Scope Global -PassThru
29
+
$accountsModule=Import-Module-Name $accountsName-MinimumVersion 1.8.1-Scope Global -PassThru
30
30
}
31
31
}
32
32
}
33
33
34
34
if(-not$accountsModule) {
35
-
Write-Error"`nThis module requires $accountsName version 1.7.4 or greater. For installation instructions, please see: https://docs.microsoft.com/en-us/powershell/azure/install-az-ps"-ErrorAction Stop
Write-Error"`nThis module requires $accountsName version 1.7.4 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to remove '.PSSharedModules' in your home directory. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error"-ErrorAction Stop
35
+
Write-Error"`nThis module requires $accountsName version 1.8.1 or greater. For installation instructions, please see: https://docs.microsoft.com/en-us/powershell/azure/install-az-ps"-ErrorAction Stop
Write-Error"`nThis module requires $accountsName version 1.8.1 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to remove '.PSSharedModules' in your home directory. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error"-ErrorAction Stop
Copy file name to clipboardExpand all lines: src/Functions/ChangeLog.md
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,10 @@
19
19
-->
20
20
## Upcoming Release
21
21
22
+
## Version 2.0.0
23
+
* Implemented Functions Stacks API which describes what runtimes and runtime versions are available for function app creation
24
+
* Bug fixing
25
+
22
26
## Version 1.0.2
23
27
* Removed the ability to create v2 Functions in regions that do not support it.
24
28
* Deprecated PowerShell 6.2. Added a warning for when a user creates a PowerShell 6.2 function app that advises them to create a PowerShell 7.0 function app instead.
0 commit comments