Skip to content

Commit c901599

Browse files
dingmeng-xueerich-wangdcaro
authored
Update doc around supportability (#15075)
Force merge it due to timeout of macOS * release-2021-05-25 * Update changelog * update changelog * Updated document to remove unsupported platform PowerShell Core 6 * Refined document * Added support for PowerShell 7.1.3 Co-authored-by: Erich(Renyong) Wang <[email protected]> Co-authored-by: Damien Caro <[email protected]>
1 parent 0f2af36 commit c901599

6 files changed

+19
-18
lines changed

ChangeLog.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
## 6.0.0 - May 2021
2+
Az 6.0.0 (Az.Accounts 2.3.0) is only supported on Windows PowerShell 5.1, PowerShell 7.0 version 7.0.6 or greater and PowerShell 7.1 version 7.1.3 or greater, open https://aka.ms/install-powershell to learn how to upgrade. For further information, go to http://aka.ms/azpslifecyle.
3+
24
#### Az.Accounts
35
* Upgraded Azure.Identity to 1.4 and MSAL to 4.30.1
46
* Removed obsolete parameters 'ManagedServiceHostName', 'ManagedServicePort' and 'ManagedServiceSecret' of cmdlet 'Connect-AzAccount', environment variables 'MSI_ENDPOINT' and 'MSI_SECRET' could be used instead

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Run the following command in an elevated PowerShell session to install the rollu
2525
Install-Module -Name Az
2626
```
2727

28-
This module runs on Windows PowerShell with [.NET Framework 4.7.2][DotNetFramework] or greater, or [PowerShell Core][PowerShellCore]. The `Az` module replaces `AzureRM`. You should not install `Az` side-by-side with `AzureRM`.
28+
This module runs on Windows PowerShell with [.NET Framework 4.7.2][DotNetFramework] or greater, or [the latest version of PowerShell 7][PowerShellCore]. The `Az` module replaces `AzureRM`. You should not install `Az` side-by-side with `AzureRM`.
2929

3030
If you have an earlier version of the Azure PowerShell modules installed from the PowerShell Gallery and would like to update to the latest version, run the following commands in an elevated PowerShell session:
3131

documentation/announcing-az-module.md

+8-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Announcing New Module 'Az'
2-
In August 2018 we released a new module, 'Az' which combines the functionality of the AzureRM and AzureRM.Netcore modules. Az will go to version 1.0 on 12/18/2018. Az runs on both Windows PowerShell 5.1 and PowerShell Core. 'Az' ensures that the Windows PowerShell and PowerShell Core cmdlets for managing Azure resources will always be in sync and up to date. In addition, Az will simplify and regularize the naming of Azure cmdlets, and the organization of Azure modules. Az is intended as a replacement for the AzureRM.Netcore and AzureRM modules.
2+
In August 2018 we released a new module, 'Az' which combines the functionality of the AzureRM and AzureRM.Netcore modules. Az goes to version 1.0 on 12/18/2018. Az runs on both Windows PowerShell 5.1 and PowerShell 7. 'Az' ensures that the Windows PowerShell and PowerShell 7 cmdlets for managing Azure resources will always be in sync and up to date. In addition, Az will simplify and regularize the naming of Azure cmdlets, and the organization of Azure modules. Az is intended as a replacement for the AzureRM.Netcore and AzureRM modules.
33

44
Az currently ships in Cloud Shell, and can be found on the PowerShell Gallery [here](https://www.powershellgallery.com/packages/Az/)
55

66
Az is a new module, and reorganizing and simplifying cmdlet names involves breaking changes, so we have [added features to Az to make it easier to transition to the simplified, normalized names in your existing scripts](#migrating-from-azurerm).
77

88
## New Features
9-
- Windows PowerShell 5.1 and PowerShell Core support in the same module
10-
- PowerShell Core and Windows PowerShell cmdlets are always in sync and up to date with latest Azure capabilities
9+
- Windows PowerShell 5.1 and PowerShell 7 support in the same module
10+
- PowerShell 7 and Windows PowerShell cmdlets are always in sync and up to date with latest Azure capabilities
1111
- Shortened and normalized cmdlet names - all cmdlets use the noun prefix 'Az'
1212
- Simplified and normalized module organization - data plane and management plane cmdlets in the same module for each service
1313
- Enhanced authentication for Netcore
@@ -17,8 +17,7 @@ Az is a new module, and reorganizing and simplifying cmdlet names involves break
1717

1818
## Supported Platforms
1919
- PowerShell 5.1 with .Net Framework 4.7.2 or later [Windows only]
20-
- PowerShell Core 6.0 - Windows, Linux, macOS
21-
- PowerShell Core 6.1 - Windows, Linux, macOS
20+
- PowerShell 7 - Windows, Linux, macOS
2221

2322
## Timeline
2423

@@ -170,12 +169,12 @@ For scripts that import modules directly, or use ```#Requires``` statements to s
170169
### Installing Az and AzureRM Side-by-Side
171170

172171
Az and AzureRM cannot be imported side-by-side into the same PowerShell session. If you do not want to migrate your scripts from AzureRM to Az right away, there are two main options:
173-
- Install Az in PowerShell Core, and leave AzureRM in Windows PowerShell
172+
- Install Az in PowerShell 7, and leave AzureRM in Windows PowerShell
174173
- Install Az and AzureRM side-by-side in Windows PowerShell and ensure scripts do not mix the modules
175174

176-
#### Install Az in PowerShell Core
177-
You can follow the instructions in [Installing PowerShell Core on Windows](https://docs.microsoft.com/powershell/scripting/install/installing-powershell-core-on-windows?view=powershell-6
178-
) to install PowerShell Core, then use ```Install-Module Az``` in PowerShell Core to acquire the Az module. Since Windows PowerShell and PowerShell Core can exist side-by-side and do not share module directories, this will effectively isolate the two modules.
175+
#### Install Az in PowerShell 7
176+
You can follow the instructions in [Installing PowerShell 7 on Windows](https://docs.microsoft.com/powershell/scripting/install/installing-powershell-core-on-windows
177+
) to install PowerShell 7, then use ```Install-Module Az``` in PowerShell 7 to acquire the Az module. Since Windows PowerShell and PowerShell 7 can exist side-by-side and do not share module directories, this will effectively isolate the two modules.
179178

180179
#### Install Az and AzureRM Side-by-Side
181180
If you need to have both modules installed:

documentation/development-docs/azure-powershell-developer-guide.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The following prerequisites should be completed before contributing to the Azure
4848
- Install the latest version of [Git](https://git-scm.com/downloads)
4949
- Install the [`platyPS` module](help-generation.md#Installing-platyPS)
5050
- Install the latest [**.NET Core SDK** and **.NET Framework Dev Pack 4.7.2**](https://dotnet.microsoft.com/download) or greater
51-
- Install [PowerShell Core](https://github.com/PowerShell/PowerShell/releases/latest)
51+
- Install [PowerShell 7](https://github.com/PowerShell/PowerShell/releases/latest)
5252
- Set the PowerShell [execution policy](https://technet.microsoft.com/en-us/library/ee176961.aspx) to **Unrestricted** for the following versions of PowerShell:
5353
- `C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe`
5454
- `C:\Windows\SysWOW64\WindowsPowerShell\v1.0\powershell.exe`
@@ -92,7 +92,7 @@ After cloning the repository to your local machine, you want to ensure that you
9292
msbuild build.proj
9393
```
9494

95-
Alternatively, you can open any command prompt (Command Prompt, Windows PowerShell, or PowerShell Core), navigate to the root of the repository, and run:
95+
Alternatively, you can open any command prompt (Command Prompt, Windows PowerShell, or PowerShell 7), navigate to the root of the repository, and run:
9696

9797
```powershell
9898
PS C:\azure-powershell> dotnet msbuild build.proj
@@ -124,7 +124,7 @@ Launch `VS Developer Command Prompt` and run the following command (from the roo
124124
msbuild build.proj /t:Test
125125
```
126126

127-
Alternatively, you can open any command prompt (Command Prompt, Windows PowerShell, or PowerShell Core), navigate to the root of the repository, and run:
127+
Alternatively, you can open any command prompt (Command Prompt, Windows PowerShell, or PowerShell 7), navigate to the root of the repository, and run:
128128

129129
```powershell
130130
PS C:\azure-powershell> dotnet msbuild build.proj /t:Test

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ RequiredModules = @(@{ModuleName="Az.Accounts"; ModuleVersion="1.0.0"})
142142
The tooling for these services are no longer actively supported. Customers are encouraged to move to alternative services as soon as it is convenient.
143143

144144
### Windows PowerShell 5.1 and .NET Framework 4.7.2
145-
- Using Az with Windows PowerShell 5.1 requires the installation of .NET Framework 4.7.2. However, using Az with PowerShell Core does not require .NET Framework 4.7.2.
145+
- Using Az with Windows PowerShell 5.1 requires the installation of .NET Framework 4.7.2. However, using Az with PowerShell 7 does not require .NET Framework 4.7.2.
146146

147147
### Temporary removal of User login using PSCredential
148148
- Due to changes in the authentication flow for .NET Standard, we are temporarily removing user login via PSCredential. This capability will be re-introduced in the 1/15/2019 release for Windows PowerShell 5.1. This is discussed in detail in [this issue.](https://github.com/Azure/azure-powershell/issues/7430)

documentation/troubleshoot-module-load.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ At line:1 char:1
3838

3939
If you are receiving type loading errors when trying to import/run Az modules in Windows PowerShell, you'll need to install [.NET Framework 4.7.2](https://dotnet.microsoft.com/download) or greater. This is required as Windows PowerShell does not natively support .NET Standard.
4040

41-
You can also avoid this issue by using [PowerShell Core](https://github.com/PowerShell/PowerShell/releases/latest). PowerShell Core natively supports .NET Standard assemblies. PowerShell Core also works cross platform, so Linux and Mac can use Az modules in PowerShell Core.
41+
You can also avoid this issue by using [PowerShell 7](https://github.com/PowerShell/PowerShell/releases/latest). PowerShell 7 natively supports .NET Standard assemblies. PowerShell 7 also works cross platform, so Linux and Mac can use Az modules in PowerShell 7.
4242

4343
## Symptom: Prompt for Login When a Cmdlet is Executed After a Previous Login
4444

@@ -162,6 +162,6 @@ This underlying problem is solved in Az by requiring all authentication types us
162162

163163
The library `Newtonsoft.Json` is used throughout our cmdlets to handle JSON information. However, we do not have control of the version of this library that is loaded in PowerShell. To troubleshoot serialization issues, here is a table of the versions of `Newtonsoft.Json` that are loaded by the various editions of PowerShell.
164164

165-
| | Windows PowerShell 5.1 | PowerShell Core 6.0 | PowerShell Core 6.1 | PowerShell Core 6.2
166-
| - | - | - | - | - |
167-
| **Newtonsoft.Json** | 6.0.8 | 10.0.3 | 11.0.2 | 12.0.1
165+
| | Windows PowerShell 5.1 | PowerShell 7.0 | PowerShell 7.1
166+
| - | - | - | - |
167+
| **Newtonsoft.Json** | 6.0.8 | 12.0.0 | 12.0.0

0 commit comments

Comments
 (0)