Skip to content

Commit 20ef321

Browse files
committed
This is PSAppDeployToolkit.Tools 0.3.0
1 parent 509f770 commit 20ef321

File tree

2 files changed

+36
-5
lines changed

2 files changed

+36
-5
lines changed

CHANGELOG.txt

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,32 @@
1-

1+
PSAppDeployToolkit.Tools Change Log
2+
=====================================
3+
4+
## [0.3.0] - 2025-10-02
5+
6+
- Resolved numerous conversion issues (#11, #15, #16, #17)
7+
- Added support for updating variable assignments and splats when used in function inputs (still problematic under certain conditions, see #12)
8+
- Added support for setting AppProcessesToClose in $adtSession hashtable definition
9+
- Fixed UTF8 with BOM encoding in PowerShell 6+ (#14)
10+
- Updated PSAppDeployToolkit required version to 4.1.5
11+
12+
## [0.2.3] - 2025-01-24
13+
14+
- Fix processing of CloseProcesses in Show-ADTInstallationWelcome (#6)
15+
- Replace text to ensure converted InstallPhase declarations and MARKS match the style of the v4 template (#7)
16+
17+
## [0.2.2] - 2024-12-23
18+
19+
- Support for positional parameters (resolves #2)
20+
- Support for relative paths
21+
- Resolve unhandled exception when -CloseApps $variable is used
22+
23+
## [0.2.1] - 2024-12-16
24+
25+
- Fixed bug in file handing when input is a script file
26+
- Removed deployAppScriptDate from mapped variables
27+
28+
## [0.2.0] - 2024-12-09
29+
30+
This initial release provides two commands:
31+
- Test-ADTCompatibility - Test your PSAppDeployToolkit v3 scripts to get a full report on which functions and variables have changed in v4.
32+
- Convert-ADTDeployment - Convert a PSAppDeployToolkit v3 script or an entire package folder to v4 standards.

src/PSAppDeployToolkit.Tools/PSAppDeployToolkit.Tools.psd1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#
22
# Module manifest for module 'PSAppDeployToolkit.Tools'
33
#
4-
# Last modified: 2025-01-24
4+
# Last modified: 2025-10-02
55
#
66

77
@{
88
# Script module or binary module file associated with this manifest.
99
RootModule = 'PSAppDeployToolkit.Tools.psm1'
1010

1111
# Version number of this module.
12-
ModuleVersion = '0.2.3'
12+
ModuleVersion = '0.3.0'
1313

1414
# Supported PSEditions
1515
# CompatiblePSEditions = @()
@@ -39,7 +39,7 @@
3939
PowerShellHostVersion = '5.1.14393.0'
4040

4141
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
42-
DotNetFrameworkVersion = '4.6.2.0'
42+
DotNetFrameworkVersion = '4.7.2.0'
4343

4444
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
4545
CLRVersion = '4.0.30319.42000'
@@ -98,7 +98,7 @@
9898
PSData = @{
9999

100100
# Tag to indicate pre-release status
101-
Prerelease = 'beta'
101+
#Prerelease = ''
102102

103103
# Tags applied to this module. These help with module discovery in online galleries.
104104
Tags = 'psappdeploytoolkit', 'adt', 'psadt', 'appdeployment', 'appdeploytoolkit', 'appdeploy', 'deployment', 'toolkit'

0 commit comments

Comments
 (0)