Skip to content

Commit 8a6df7f

Browse files
authored
Merge pull request #42 from rebelinux/dev
v0.5.7
2 parents ab62864 + 2e7ede9 commit 8a6df7f

7 files changed

Lines changed: 195 additions & 79 deletions

File tree

.github/workflows/PSScriptAnalyzerSettings.psd1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
'PSUseToExportFieldsInManifest',
44
'PSReviewUnusedParameter',
55
'PSUseDeclaredVarsMoreThanAssignments',
6-
'PSAvoidGlobalVars'
7-
'PSUseSingularNouns'
6+
'PSAvoidGlobalVars',
7+
'PSUseSingularNouns',
8+
'PSAvoidUsingWriteHost'
89
)
910
}

.github/workflows/Release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
publish-to-gallery:
9-
runs-on: windows-2019
9+
runs-on: windows-2022
1010
steps:
1111
- uses: actions/checkout@v4
1212
- name: Set PSRepository to Trusted for PowerShell Gallery

AsBuiltReport.Microsoft.Windows.psd1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'AsBuiltReport.Microsoft.Windows.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.5.6'
15+
ModuleVersion = '0.5.7'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -54,11 +54,11 @@
5454
RequiredModules = @(
5555
@{
5656
ModuleName = 'AsBuiltReport.Core';
57-
ModuleVersion = '1.4.0'
57+
ModuleVersion = '1.4.3'
5858
},
5959
@{
6060
ModuleName = 'dbatools';
61-
ModuleVersion = '2.1.27'
61+
ModuleVersion = '2.5.1'
6262
}
6363
)
6464

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.5.7] - 2025-07-30
9+
10+
### Changed
11+
12+
- Increase Dbatools module requirement v2.5.1
13+
- Update Release.yml to migrate from 2019 to 2022
14+
15+
### Fixed
16+
17+
- Fix [#41](https://github.com/AsBuiltReport/AsBuiltReport.Microsoft.Windows/issues/41)
18+
- Fix [#26](https://github.com/AsBuiltReport/AsBuiltReport.Microsoft.Windows/issues/26)
19+
820
## [0.5.6] - 2024-11-20
921

1022
### Added

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,5 +255,3 @@ PS C:\> New-AsBuiltReport -Report Microsoft.Windows -Target 'win-server-01v.cont
255255

256256
- Issues with WinRM when using the IP address instead of the "Fully Qualified Domain Name".
257257
- The report provides the ability to extract the configuration of the DNS/DHCP/Hyper-V/IIS/FailOver-Cluster services. In order to obtain this information it is required that the servers running these services have the corresponding powershell modules installed.
258-
- Issues when running the report against Windows Server 2012 and 2012 R2.
259-
- Error: "Exception calling Save with 1 argument(s): hexadecimal value 0x00, is an invalid character."

0 commit comments

Comments
 (0)