Skip to content
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

Bump System.Management.Automation from 7.3.7 to 7.3.12 #2868

Merged
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
2 changes: 2 additions & 0 deletions docs/CHANGELOG-v1.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ What's changed since pre-release v1.37.0-B0009:
- Engineering:
- Bump xunit to v2.8.0.
[#2870](https://github.com/Azure/PSRule.Rules.Azure/pull/2870)
- Bump System.Management.Automation to 7.3.12.
[#2868](https://github.com/Azure/PSRule.Rules.Azure/pull/2868)
- Bug fixed:
- Fixed `union` does not perform deep merge or keep property order by @BernieWhite.
[#2885](https://github.com/Azure/PSRule.Rules.Azure/issues/2885)
Expand Down
11 changes: 5 additions & 6 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,10 +138,10 @@ You can also use this option to install on CI workers that are not natively supp

### Prerequisites

| Operating System | Tool | Installation Link |
| ---------------- | ---- | ----------------- |
| Windows | Windows PowerShell 5.1 with .NET Framework 4.7.2 or greater. | [link](https://dotnet.microsoft.com/download/dotnet-framework/net48) |
| Windows, MacOS, Linux | PowerShell version 7.2.x or greater. | [link](https://github.com/PowerShell/PowerShell#get-powershell) |
Operating System | Tool | Installation Link
---------------- | ---- | -----------------
Windows | Windows PowerShell 5.1 with .NET Framework 4.7.2 or greater. | [link](https://dotnet.microsoft.com/download/dotnet-framework/net48)
Windows, MacOS, Linux | PowerShell version 7.3.x or greater. | [link](https://github.com/PowerShell/PowerShell#get-powershell)

To use PSRule for Azure, PSRule a separate PowerShell module must be installed.
The required version will automatically be installed along-side PSRule for Azure.
Expand All @@ -163,7 +163,7 @@ PowerShell modules:
### Installing PowerShell

PowerShell 7.x can be installed on MacOS, Linux, and Windows but is not installed by default.
For a list of platforms that PowerShell 7.2 is supported on and install instructions see [Get PowerShell][4].
For a list of platforms that PowerShell 7.3 is supported on and install instructions see [Get PowerShell][4].

[4]: https://github.com/PowerShell/PowerShell#get-powershell

Expand Down Expand Up @@ -320,4 +320,3 @@ After downloading the modules, copy the module directories to devices with restr
*[CI]: continuous integration

[module]: https://www.powershellgallery.com/packages/PSRule.Rules.Azure
[dotnet]: https://dotnet.microsoft.com/download/dotnet/7.0
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.3.7" />
<PackageReference Include="System.Management.Automation" Version="7.3.7" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.3.12" />
<PackageReference Include="System.Management.Automation" Version="7.3.12" />
<PackageReference Include="Microsoft.Extensions.CommandLineUtils" Version="1.1.1" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.3.7" />
<PackageReference Include="System.Management.Automation" Version="7.3.7" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.3.12" />
<PackageReference Include="System.Management.Automation" Version="7.3.12" />
<PackageReference Include="xunit" Version="2.8.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7">
<PrivateAssets>all</PrivateAssets>
Expand Down
Loading