From 80b83948706614258989324a2eb35ef6b3b29469 Mon Sep 17 00:00:00 2001 From: Mark Baumgartner <42626826+mabaumgartner@users.noreply.github.com> Date: Wed, 24 Jun 2026 11:46:39 -0500 Subject: [PATCH 1/2] bugfix to allow function load in linux --- .github/workflows/pester.yml | 2 +- .github/workflows/publishtogallery.yml | 2 +- .github/workflows/scriptanalyzer.yml | 2 +- CHANGELOG.md | 8 ++++++++ src/UofISplunkCloud/UofISplunkCloud.psd1 | 2 +- src/UofISplunkCloud/UofISplunkCloud.psm1 | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pester.yml b/.github/workflows/pester.yml index 3cf4dc1..2f41f55 100644 --- a/.github/workflows/pester.yml +++ b/.github/workflows/pester.yml @@ -16,7 +16,7 @@ jobs: os: [macos-latest, windows-latest] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install dependencies run: Install-Module -Name 'Pester' -Force -SkipPublisherCheck shell: pwsh diff --git a/.github/workflows/publishtogallery.yml b/.github/workflows/publishtogallery.yml index e4fb35b..f919a99 100644 --- a/.github/workflows/publishtogallery.yml +++ b/.github/workflows/publishtogallery.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Run publish script env: NuGetApiKey: ${{ secrets.NuGetApiKey }} diff --git a/.github/workflows/scriptanalyzer.yml b/.github/workflows/scriptanalyzer.yml index 297f970..be246a9 100644 --- a/.github/workflows/scriptanalyzer.yml +++ b/.github/workflows/scriptanalyzer.yml @@ -16,7 +16,7 @@ jobs: os: [windows-latest] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install dependencies run: Install-Module -Name 'PSScriptAnalyzer' -Force -SkipPublisherCheck shell: pwsh diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fdcd28..0c3269f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed +## [1.1.8] - 2026-06-24 + +### Changed + +- Send-SplunkHECEvent.ps1 + - fixed path capitalization that was preventing the module from loading function in Linux +- Update GitHub actions for `checkout` + ## [1.1.7] - 2026-05-28 ### Changed diff --git a/src/UofISplunkCloud/UofISplunkCloud.psd1 b/src/UofISplunkCloud/UofISplunkCloud.psd1 index f6891b3..1dabfe8 100644 --- a/src/UofISplunkCloud/UofISplunkCloud.psd1 +++ b/src/UofISplunkCloud/UofISplunkCloud.psd1 @@ -10,7 +10,7 @@ RootModule = 'UofISplunkCloud.psm1' # Version number of this module. -ModuleVersion = '1.1.7' +ModuleVersion = '1.1.8' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/src/UofISplunkCloud/UofISplunkCloud.psm1 b/src/UofISplunkCloud/UofISplunkCloud.psm1 index 9714db3..4049771 100644 --- a/src/UofISplunkCloud/UofISplunkCloud.psm1 +++ b/src/UofISplunkCloud/UofISplunkCloud.psm1 @@ -1,4 +1,4 @@ -[String]$FunctionPath = Join-Path -Path $PSScriptRoot -ChildPath 'Functions' +[String]$FunctionPath = Join-Path -Path $PSScriptRoot -ChildPath 'functions' #All function files are executed while only public functions are exported to the shell. Get-ChildItem -Path $FunctionPath -Filter "*.ps1" -Recurse | ForEach-Object -Process { Write-Verbose -Message "Importing $($_.BaseName)" From ce4eaaeba473e25b1ae98a0c577d2269f6a4fa91 Mon Sep 17 00:00:00 2001 From: Mark Baumgartner <42626826+mabaumgartner@users.noreply.github.com> Date: Wed, 24 Jun 2026 11:49:47 -0500 Subject: [PATCH 2/2] fix changelog error --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c3269f..706e220 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,7 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -- Send-SplunkHECEvent.ps1 +- UofISplunkCloud.psm1 - fixed path capitalization that was preventing the module from loading function in Linux - Update GitHub actions for `checkout`