Skip to content

Commit

Permalink
Fix missing release note and try using fregante/setup-git-user@v2.0.2…
Browse files Browse the repository at this point in the history
… to ensure publish build and commit gets pushed

 - publish build for 2408.9.3
  • Loading branch information
github-actions[bot] committed Aug 30, 2024
1 parent 822e420 commit 3630556
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 28 deletions.
27 changes: 8 additions & 19 deletions FogApi/FogApi.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: JJ Fullmer
#
# Generated on: 8/22/2024
# Generated on: 8/30/2024
#

@{
Expand All @@ -12,7 +12,7 @@
RootModule = 'FogApi.psm1'

# Version number of this module.
ModuleVersion = '2408.9.2'
ModuleVersion = '2408.9.3'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -146,7 +146,7 @@ FunctionsToExport = 'Add-FogHostMac', 'Add-FogResultData', 'Approve-FogPendingMa
CmdletsToExport = @()

# Variables to export from this module
VariablesToExport = '*'
VariablesToExport = @()

# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
AliasesToExport = 'Add-FogHost', 'Add-FogObject', 'Add-FogSnapins', 'Capture-FogImage',
Expand Down Expand Up @@ -187,22 +187,11 @@ PrivateData = @{

# ReleaseNotes of this module
ReleaseNotes = '
# 2408.9.2
Release Commit of Major Changes (some changes in other commits)
- Handled Auto add aliases on build #9 so added aliases are available to users.
- Implemented Add foghost name tab completion #8
- Added github actions for testing build and releasing versions
- Fixed issue with getting fog inventory in 1.6
- Implemented #16 for getting and setting fog global settings in fog 1.6
- Implemented #14 for getting the fog version
- Implemented #13 for invoking wol task for a host
- Added basic pipeline functionality for foghost objects in all applicable functions.
- Made it possible to send multiple specified snapins in a single start-fogsnapin call
- Added tab completion of server specific host names and snapin names in various functions like get-foghost, start-fogsnapin. set-fogsnapins, remove-usbmac
- removed advanced function begin/end blocks where they weren''t being used as such, kept things in process block
- implemented Add https option to fog server settings #15 by making it so you can put http://fogserver or https://fogserver or fogserver as the fogserver property in settings to implement that change with minimal issues with existing setting configs. Added an enable-FogApiHTTPS funcction as well as a disable to easily enable that.
- Implemented Add function for attempting to set windows machine to boot to pxe from within windows #17'
# 2408.9.3
Fix missing release note and try using fregante/setup-git-user@v2.0.2 to ensure publish build and commit gets pushed
'

# Prerelease string of this module
# Prerelease = ''
Expand Down
8 changes: 8 additions & 0 deletions docs/ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## 9.x

### 2408.9.3

Fix missing release note and try using fregante/setup-git-user@v2.0.2 to ensure publish build and commit gets pushed




### 2408.9.2

# 2408.9.2
Expand Down Expand Up @@ -372,4 +379,5 @@





6 changes: 3 additions & 3 deletions docs/commands/Set-FogSnapins.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ Sets a list of snapins to a host, appends to existing ones

### byObject
```
Set-FogSnapins [-hostObj <Object>] [-pkgList <String>] [-exactNames] [-repairBeforeAdd]
Set-FogSnapins [-hostObj <Object>] [-pkgList <String[]>] [-exactNames] [-repairBeforeAdd]
[-ProgressAction <ActionPreference>] [<CommonParameters>]
```

### byId
```
Set-FogSnapins [-hostid <Object>] [-pkgList <String>] [-exactNames] [-repairBeforeAdd]
Set-FogSnapins [-hostid <Object>] [-pkgList <String[]>] [-exactNames] [-repairBeforeAdd]
[-ProgressAction <ActionPreference>] [<CommonParameters>]
```

Expand Down Expand Up @@ -74,7 +74,7 @@ Accept wildcard characters: False
String array list of snapins to add to the host, supports tab completion.
```yaml
Type: String
Type: String[]
Parameter Sets: (All)
Aliases:

Expand Down
12 changes: 6 additions & 6 deletions docs/en-us/FogApi-help.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5996,9 +5996,9 @@ $mods</dev:code>
<maml:description>
<maml:para>String array list of snapins to add to the host, supports tab completion.</maml:para>
</maml:description>
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
<dev:type>
<maml:name>String</maml:name>
<maml:name>String[]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>None</dev:defaultValue>
Expand Down Expand Up @@ -6057,9 +6057,9 @@ $mods</dev:code>
<maml:description>
<maml:para>String array list of snapins to add to the host, supports tab completion.</maml:para>
</maml:description>
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
<dev:type>
<maml:name>String</maml:name>
<maml:name>String[]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>None</dev:defaultValue>
Expand Down Expand Up @@ -6130,9 +6130,9 @@ $mods</dev:code>
<maml:description>
<maml:para>String array list of snapins to add to the host, supports tab completion.</maml:para>
</maml:description>
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
<dev:type>
<maml:name>String</maml:name>
<maml:name>String[]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>None</dev:defaultValue>
Expand Down

0 comments on commit 3630556

Please sign in to comment.