Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
e5b5e43
Fix escape single quoted text in manifest
MariusStorhaug Jan 28, 2025
da18c11
🩹 [Refactor]: Replace Invoke-RecurseEscapeFix with ConvertTo-EscapedH…
MariusStorhaug Jan 28, 2025
1dfe9a4
🩹 [Enhancement]: Add verbose logging to ConvertTo-EscapedHashtableStr…
MariusStorhaug Jan 28, 2025
f1ffce3
🩹 [Enhancement]: Add verbose flag to ConvertTo-EscapedHashtableString…
MariusStorhaug Jan 28, 2025
d8c8674
🩹 [Enhancement]: Add null and empty string handling to Invoke-Recurse…
MariusStorhaug Jan 28, 2025
edf629d
🩹 [Fix]: Correctly assign output of ConvertTo-EscapedHashtableString …
MariusStorhaug Jan 28, 2025
3e58fb0
🩹 [Fix]: Escape single quotes in module manifest description to preve…
MariusStorhaug Jan 28, 2025
257e5af
🩹 [Fix]: Remove redundant single quote escaping in module manifest de…
MariusStorhaug Jan 28, 2025
0500cf1
🩹 [Enhancement]: Add verbose flag to Set-ModuleManifest for improved …
MariusStorhaug Jan 28, 2025
d98cbb9
🩹 [Feature]: Add multiple PowerShell utility functions for module man…
MariusStorhaug Jan 28, 2025
b64a89b
🩹 [Refactor]: Replace Write-Verbose with Write-Host for improved outp…
MariusStorhaug Jan 28, 2025
a2be9de
🩹 [Fix]: Escape single quotes in module manifest description assignme…
MariusStorhaug Jan 28, 2025
a637a3b
🩹 [Fix]: Correctly escape single quotes in module manifest descriptio…
MariusStorhaug Jan 28, 2025
3bd0cf7
🩹 [Fix]: Escape single quotes in module manifest description and add …
MariusStorhaug Jan 28, 2025
bcbf475
🩹 [Fix]: Correctly escape single quotes in hashtable string conversio…
MariusStorhaug Jan 28, 2025
38a9fae
🩹 [Fix]: Correctly escape single quotes in hashtable string conversio…
MariusStorhaug Jan 28, 2025
30220be
🩹 [Fix]: Correctly escape single quotes in hashtable string conversio…
MariusStorhaug Jan 28, 2025
3baa5d7
🩹 [Fix]: Comment out the Format-ModuleManifest call in Export-PowerSh…
MariusStorhaug Jan 28, 2025
249ae18
🩹 [Fix]: Re-enable Format-ModuleManifest call in Export-PowerShellDat…
MariusStorhaug Jan 28, 2025
d93b4cb
🩹 [Fix]: Add verbose logging to Set-ModuleManifest in Update-PSModule…
MariusStorhaug Jan 28, 2025
33627f7
🩹 [Fix]: Add verbose logging for escaped values in Convert-HashtableT…
MariusStorhaug Jan 28, 2025
0f94041
🩹 [Fix]: Improve escaping of single quotes in Convert-HashtableToStri…
MariusStorhaug Jan 28, 2025
8a7799d
🩹 [Fix]: Update module requirements in Get-PSModuleTest.ps1 to use 'S…
MariusStorhaug Jan 28, 2025
c5bdb96
🩹 [Cleanup]: Remove obsolete PowerShell module functions to streamlin…
MariusStorhaug Jan 28, 2025
53bce57
🩹 [Refactor]: Replace Write-Verbose with Write-Host for improved outp…
MariusStorhaug Jan 28, 2025
4aa4555
🩹 [Refactor]: Replace Write-Host with Write-Verbose for consistent lo…
MariusStorhaug Jan 28, 2025
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
3 changes: 1 addition & 2 deletions tests/src/functions/public/PSModule/Get-PSModuleTest.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#Requires -Modules Utilities
#Requires -Modules Store
#Requires -Modules @{ ModuleName = 'PSSemVer'; RequiredVersion = '1.0.0' }
#Requires -Modules @{ ModuleName = 'DynamicParams'; ModuleVersion = '1.1.8' }
#Requires -Modules @{ ModuleName = 'Store'; ModuleVersion = '0.3.1' }

function Get-PSModuleTest {
<#
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#Requires -Modules Utilities
#Requires -Modules Store
#Requires -Modules @{ ModuleName = 'PSSemVer'; RequiredVersion = '1.0.0' }
#Requires -Modules @{ ModuleName = 'DynamicParams'; ModuleVersion = '1.1.8' }
#Requires -Modules @{ ModuleName = 'Store'; ModuleVersion = '0.3.1' }

function Get-PSModuleTest {
<#
Expand Down