Skip to content

Commit b190e9f

Browse files
Merge pull request #691 from PowershellFrameworkCollective/development
1.13.406
2 parents ca8d3bb + 02dbf37 commit b190e9f

File tree

109 files changed

+6746
-406
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+6746
-406
lines changed

.github/workflows/build.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
on:
2+
push:
3+
branches:
4+
- master
5+
- main
6+
7+
jobs:
8+
build:
9+
10+
runs-on: windows-latest
11+
permissions:
12+
contents: write
13+
14+
steps:
15+
- uses: actions/checkout@v1
16+
- name: Install Prerequisites
17+
run: .\build\psf-prerequisites.ps1
18+
shell: powershell
19+
- name: Install Prerequisites
20+
run: .\build\vsts-help.ps1
21+
shell: powershell
22+
- name: Validate
23+
run: .\build\vsts-validate.ps1
24+
shell: powershell
25+
- name: Build
26+
run: .\build\vsts-build.ps1 -ApiKey $env:APIKEY
27+
shell: powershell
28+
env:
29+
APIKEY: ${{ secrets.ApiKey }}
30+
- name: Release
31+
run: .\build\vsts-release.ps1
32+
shell: powershell
33+
env:
34+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/validate.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
on: [pull_request]
2+
3+
jobs:
4+
validate:
5+
6+
runs-on: windows-latest
7+
8+
steps:
9+
- uses: actions/checkout@v1
10+
- name: Install Prerequisites
11+
run: .\build\psf-prerequisites.ps1
12+
shell: powershell
13+
- name: Install Prerequisites
14+
run: .\build\vsts-help.ps1
15+
shell: powershell
16+
- name: Validate
17+
run: .\build\vsts-validate.ps1
18+
shell: powershell

PSFramework/PSFramework.psd1

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
RootModule = 'PSFramework.psm1'
55

66
# Version number of this module.
7-
ModuleVersion = '1.12.346'
7+
ModuleVersion = '1.13.406'
88

99
# ID used to uniquely identify this module
1010
GUID = '8028b914-132b-431f-baa9-94a6952f21ff'
@@ -38,25 +38,30 @@
3838
'Add-PSFFilterCondition'
3939
'Add-PSFLoggingProviderRunspace'
4040
'Add-PSFRunspaceWorker'
41+
'Add-PSFTeppCompletion'
4142
'Clear-PSFMessage'
4243
'Clear-PSFresultCache'
4344
'Compare-PSFArray'
4445
'ConvertFrom-PSFArray'
4546
'ConvertFrom-PSFClixml'
4647
'ConvertTo-PSFClixml'
48+
'ConvertTo-PSFPsd1'
4749
'Disable-PSFConsoleInterrupt'
4850
'Disable-PSFLoggingProvider'
4951
'Disable-PSFTaskEngineTask'
5052
'Enable-PSFConsoleInterrupt'
5153
'Enable-PSFTaskEngineTask'
5254
'Export-PSFClixml'
5355
'Export-PSFConfig'
56+
'Export-PSFJson'
5457
'Export-PSFModuleClass'
58+
'Export-PSFPowerShellDataFile'
5559
'Get-PSFCallback'
5660
'Get-PSFConfig'
5761
'Get-PSFConfigValue'
5862
'Get-PSFDynamicContentObject'
5963
'Get-PSFFeature'
64+
'Get-PSFFileContent'
6065
'Get-PSFFilterCondition'
6166
'Get-PSFFilterConditionSet'
6267
'Get-PSFLicense'
@@ -77,11 +82,13 @@
7782
'Get-PSFTaskEngineCache'
7883
'Get-PSFTaskEngineTask'
7984
'Get-PSFTempItem'
85+
'Get-PSFTeppCompletion'
8086
'Get-PSFTypeSerializationData'
8187
'Get-PSFUserChoice'
8288
'Import-PSFClixml'
8389
'Import-PSFCmdlet'
8490
'Import-PSFConfig'
91+
'Import-PSFJson'
8592
'Import-PSFLocalizedString'
8693
'Import-PSFLoggingProvider'
8794
'Import-PSFPowerShellDataFile'
@@ -115,6 +122,7 @@
115122
'Register-PSFMessageEvent'
116123
'Register-PSFMessageTransform'
117124
'Register-PSFParameterClassMapping'
125+
'Register-PSFPsd1Converter'
118126
'Register-PSFRunspace'
119127
'Register-PSFSessionObjectType'
120128
'Register-PSFSupportDataProvider'
@@ -131,6 +139,7 @@
131139
'Remove-PSFMessageLevelModifier'
132140
'Remove-PSFRunspaceWorkflow'
133141
'Remove-PSFTempItem'
142+
'Remove-PSFTeppCompletion'
134143
'Reset-PSFConfig'
135144
'Resolve-PSFDefaultParameterValue'
136145
'Resolve-PSFItem'
@@ -139,6 +148,7 @@
139148
'Select-PSFPropertyValue'
140149
'Set-PSFDynamicContentObject'
141150
'Set-PSFFeature'
151+
'Set-PSFFileContent'
142152
'Set-PSFLoggingProvider'
143153
'Set-PSFPath'
144154
'Set-PSFResultCache'
@@ -173,6 +183,7 @@
173183

174184
# Cmdlets to export from this module
175185
CmdletsToExport = @(
186+
'Assert-PSFInternalCommand'
176187
'ConvertTo-PSFHashtable'
177188
'Invoke-PSFCallback'
178189
'Invoke-PSFProtectedCommand'
@@ -181,6 +192,7 @@
181192
'Set-PSFConfig'
182193
'Set-PSFObjectOrder'
183194
'Test-PSFShouldProcess'
195+
'Update-PSFTeppCompletion'
184196
'Write-PSFMessage'
185197
)
186198

PSFramework/bin/PSFramework.dll

24.5 KB
Binary file not shown.

PSFramework/bin/PSFramework.pdb

112 KB
Binary file not shown.

0 commit comments

Comments
 (0)