Skip to content

Commit

Permalink
Updated ChangeLog
Browse files Browse the repository at this point in the history
  • Loading branch information
rebelinux committed Feb 17, 2024
1 parent 7df770f commit 644fc20
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# :arrows_counterclockwise: Microsoft Windows As Built Report Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.5.2] - 2024-02-18

### Added
Expand All @@ -15,6 +20,7 @@

- Fix CodeQL security alerts
- Fix FailOver Cluster section
- Fix issue in Get-AbrWinOSHotfix install date logic

## [0.5.1] - 2023-05-16

Expand Down
2 changes: 1 addition & 1 deletion Src/Private/Get-AbrWinLocalGroup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function Get-AbrWinLocalGroup {
'Group Name' = $LocalGroup.GroupName
'Description' = Switch ([string]::IsNullOrEmpty($LocalGroup.Description)) {
$true { "--" }
$false { $LocalGroup.Members }
$false { $LocalGroup.Description }
default { "Unknown" }
}
'Members' = Switch ([string]::IsNullOrEmpty($LocalGroup.Members)) {
Expand Down

0 comments on commit 644fc20

Please sign in to comment.