Skip to content

Releases: PSModule/Process-PSModule

v5.3.17

17 Jan 14:34
705af47

Choose a tag to compare

Bump super-linter/super-linter from 8.3.1 to 8.3.2 (#253)

Bumps super-linter/super-linter from 8.3.1 to 8.3.2.

Release notes

Sourced from super-linter/super-linter's releases.

v8.3.2

8.3.2 (2025-12-24)

🐛 Bugfixes

⬆️ Dependency updates

  • bundler: bump rubocop in /dependencies in the rubocop group (#7313) (7fab96c)
  • docker: bump clj-kondo/clj-kondo in the docker group (#7325) (fa23c54)
  • docker: bump the docker group with 4 updates (#7318) (dc49a6d)
  • java: bump com.puppycrawl.tools:checkstyle (#7312) (ab58437)
  • npm: bump next from 16.0.10 to 16.1.0 in /dependencies (#7316) (a8572e2)
  • npm: bump renovate (#7300) (191338a)
  • npm: bump the npm group across 1 directory with 10 updates (#7322) (24d9e00)
  • npm: bump the npm group across 1 directory with 2 updates (#7296) (0697485)
  • npm: bump the npm group across 1 directory with 2 updates (#7301) (4b2bf76)
  • npm: bump the npm group across 1 directory with 4 updates (#7327) (07e73d6)
  • python: bump ansible-lint (#7326) (47962ea)
  • python: bump snakemake (#7295) (3f92589)
  • python: bump the pip group across 1 directory with 2 updates (#7299) (0ca0315)
  • python: bump the pip group across 1 directory with 6 updates (#7317) (ae7e8d8)

🧰 Maintenance

Changelog

Sourced from super-linter/super-linter's changelog.

Changelog

8.3.2 (2025-12-24)

🐛 Bugfixes

⬆️ Dependency updates

  • bundler: bump rubocop in /dependencies in the rubocop group (#7313) (7fab96c)
  • docker: bump clj-kondo/clj-kondo in the docker group (#7325) (fa23c54)
  • docker: bump the docker group with 4 updates (#7318) (dc49a6d)
  • java: bump com.puppycrawl.tools:checkstyle (#7312) (ab58437)
  • npm: bump next from 16.0.10 to 16.1.0 in /dependencies (#7316) (a8572e2)
  • npm: bump renovate (#7300) (191338a)
  • npm:
Read more

v5.3.16

17 Jan 13:35
1ca649a

Choose a tag to compare

🩹 [Patch]: Bump Get-PSModuleSettings action to version 1.0.1 (#257)

Fixed

  • Bumped PSModule/Get-PSModuleSettings to v1.0.1.
  • Super-linter summary now reads super-linter outcome via an environment variable to avoid expression parsing quirks.
  • Workflow tests now pass explicit secrets instead of using secrets: inherit.

Changed

  • Dependabot update cadence is now daily with a 7-day cooldown.
  • Auto-Release now runs on pull_request and checks out with persist-credentials: false.
  • Removed unused linter env toggles for Biome lint and enabled Zizmor for GitHub Actions.

v5.3.15

12 Jan 22:57
9bf1a23

Choose a tag to compare

🩹 [Patch]: Make secrets available in BeforeAll and AfterAll jobs (#254)

This patch release makes test secrets available in the BeforeAll-ModuleLocal and AfterAll-ModuleLocal workflow jobs, enabling proper test setup and teardown operations that require authentication credentials.

Changes

v5.3.14

11 Jan 19:59
bf70b29

Choose a tag to compare

🩹 [Patch]: Establish Settings as integration channel (#233)

This release refactors the internal GitHub Actions workflow architecture to improve maintainability and consistency. No user-facing changes or breaking changes are included.

What Changed

All major workflows (Build-Docs.yml, Build-Module.yml, Build-Site.yml, Get-CodeCoverage.yml) have been refactored to use a unified configuration approach:

  • Unified Configuration: Workflows now accept a single Settings JSON object instead of multiple individual parameters, reducing complexity and potential configuration errors
  • Streamlined Access Patterns: All workflow steps and environment variables now extract values from the centralized Settings object using fromJson
  • Code Maintenance: Removed redundant output definitions from the Get-Settings.yml workflow
  • Consistency: Standardized configuration access patterns across all workflows

Technical Details

This is a purely internal refactoring focused on improving the workflow infrastructure. The changes make future workflow modifications easier to implement and maintain while ensuring consistency across the entire automation pipeline.

v5.3.13

07 Jan 00:31
3dcca81

Choose a tag to compare

Add documentation for skipping individual PSModule framework tests (#252)

The Test-PSModule framework runs style and standards tests against source code (e.g., enforcing one function per file, requiring CmdletBinding attributes). Users needed guidance on skipping specific tests per-file when framework rules don't apply.

Changes

  • New documentation section "Skipping Individual Framework Tests" added to README
    • Syntax: #SkipTest:<TestID>:<Reason> comment at file top
    • Complete reference table of 10 SourceCode test IDs with descriptions
    • Module test overview (import/manifest validation)
    • Code example demonstrating skip usage
    • Best practices and configuration cross-references

Available Test IDs

Test ID What It Enforces
NumberOfProcessors Use [System.Environment]::ProcessorCount not $env:NUMBER_OF_PROCESSORS
Verbose Don't pass -Verbose to commands (overrides user preference)
OutNull Use $null = ... not | Out-Null
FunctionCount One function per file
FunctionName Filename matches function name
CmdletBinding All functions have [CmdletBinding()]
ParamBlock All functions have param() block
FunctionTest Public functions have tests

Example

#SkipTest:FunctionCount:Contains helper functions for main function

function Get-ComplexData {
    [CmdletBinding()]
    param([string]$Path)
    
    $data = Get-RawData -Path $Path
    return Format-ComplexData -Data $data
}

function Get-RawData { ... }
function Format-ComplexData { ... }

Based on analysis of Test-PSModule framework tests.

Original prompt

This section details on the original issue you should resolve

<issue_title>🩹 [Patch]: Add doc for how to skip framework (PSModule) tests</issue_title>
<issue_description>### Describe the change

Based on the code in PSModule/Test-PSModule, we need to recreate guidance in the readme on Process-PSModule for how users can skip individual tests from the framework, i.e. number of functions to have in a file.</issue_description>

Comments on the Issue (you are @copilot in this section)


💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

v5.3.12

06 Jan 19:38
88570b1

Choose a tag to compare

Bump actions/upload-artifact from 5.0.0 to 6.0.0 (#249)

Bumps actions/upload-artifact from 5.0.0 to 6.0.0.

Release notes

Sourced from actions/upload-artifact's releases.

v6.0.0

v6 - What's new

[!IMPORTANT] actions/upload-artifact@v6 now runs on Node.js 24 (runs.using: node24) and requires a minimum Actions Runner version of 2.327.1. If you are using self-hosted runners, ensure they are updated before upgrading.

Node.js 24

This release updates the runtime to Node.js 24. v5 had preliminary support for Node.js 24, however this action was by default still running on Node.js 20. Now this action by default will run on Node.js 24.

What's Changed

Full Changelog: actions/upload-artifact@v5.0.0...v6.0.0

Commits
  • b7c566a Merge pull request #745 from actions/upload-artifact-v6-release
  • e516bc8 docs: correct description of Node.js 24 support in README
  • ddc45ed docs: update README to correct action name for Node.js 24 support
  • 615b319 chore: release v6.0.0 for Node.js 24 support
  • 017748b Merge pull request #744 from actions/fix-storage-blob
  • 38d4c79 chore: rebuild dist
  • 7d27270 chore: add missing license cache files for @​actions/core, @​actions/io, and mi...
  • 5f643d3 chore: update license files for @​actions/artifact@​5.0.1 dependencies
  • 1df1684 chore: update package-lock.json with @​actions/artifact@​5.0.1
  • b5b1a91 fix: update @​actions/artifact to ^5.0.0 for Node.js 24 punycode fix
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

v5.3.11

06 Jan 19:31
fb6cfa2

Choose a tag to compare

Bump actions/download-artifact from 6.0.0 to 7.0.0 (#248)

Bumps actions/download-artifact from 6.0.0 to 7.0.0.

Release notes

Sourced from actions/download-artifact's releases.

v7.0.0

v7 - What's new

[!IMPORTANT] actions/download-artifact@v7 now runs on Node.js 24 (runs.using: node24) and requires a minimum Actions Runner version of 2.327.1. If you are using self-hosted runners, ensure they are updated before upgrading.

Node.js 24

This release updates the runtime to Node.js 24. v6 had preliminary support for Node 24, however this action was by default still running on Node.js 20. Now this action by default will run on Node.js 24.

What's Changed

New Contributors

Full Changelog: actions/download-artifact@v6.0.0...v7.0.0

Commits
  • 37930b1 Merge pull request #452 from actions/download-artifact-v7-release
  • 72582b9 doc: update readme
  • 0d2ec9d chore: release v7.0.0 for Node.js 24 support
  • fd7ae8f Merge pull request #451 from actions/fix-storage-blob
  • d484700 chore: restore minimatch.dep.yml license file
  • 03a8080 chore: remove obsolete dependency license files
  • 56fe6d9 chore: update @​actions/artifact license file to 5.0.1
  • 8e3ebc4 chore: update package-lock.json with @​actions/artifact@​5.0.1
  • 1e3c4b4 fix: update @​actions/artifact to ^5.0.0 for Node.js 24 punycode fix
  • 458627d chore: use local @​actions/artifact package for Node.js 24 testing
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

v5.3.10

06 Jan 19:16
d08e4b4

Choose a tag to compare

Bump actions/checkout from 6.0.0 to 6.0.1 (#247)

Bumps actions/checkout from 6.0.0 to 6.0.1.

Release notes

Sourced from actions/checkout's releases.

v6.0.1

What's Changed

Full Changelog: actions/checkout@v6...v6.0.1

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

v5.3.9

06 Jan 18:53
410bd28

Choose a tag to compare

Bump PSModule/GitHub-Script from 1.7.4 to 1.7.6 (#246)

Bumps PSModule/GitHub-Script from 1.7.4 to 1.7.6.

Release notes

Sourced from PSModule/GitHub-Script's releases.

v1.7.6

Bumps azure/login from v2.2.0 to v2.3.0 (#70)

Bumps azure/login from v2.2.0 to v2.3.0.

Changes

  • Updated version comment to use patch-level semver (# v2.3.0 instead of # v2)
  • Updated PR title and description to reference semver versions
# Before
uses: azure/login@1384c340ab2dda50fed2bee3041d1d87018aa5e8 # v2
After
uses: azure/login@a457da9ea143d694b1b9c7c869ebb04ebe844ef5 # v2.3.0


💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

v1.7.5

Bump super-linter/super-linter from 8.2.1 to 8.3.0 (#69)

Bumps super-linter/super-linter from 8.2.1 to 8.3.0.

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

v5.3.8

06 Jan 18:45
378354e

Choose a tag to compare

Bump super-linter/super-linter from 8.3.0 to 8.3.1 (#250)

Bumps super-linter/super-linter from 8.3.0 to 8.3.1.

Release notes

Sourced from super-linter/super-linter's releases.

v8.3.1

8.3.1 (2025-12-15)

🐛 Bugfixes

⬆️ Dependency updates

  • bundler: bump rubocop-rails in /dependencies in the rubocop group (#7251) (d8a2032)
  • java: bump com.google.googlejavaformat:google-java-format (#7270) (140a2e3)
  • java: bump com.puppycrawl.tools:checkstyle (#7264) (550df3c)
  • java: bump the java-gradle group across 3 directories with 3 updates (#7252) (5306a0a)
  • npm: bump @​modelcontextprotocol/sdk in /dependencies (#7248) (4d59852)
  • npm: bump express from 5.1.0 to 5.2.1 in /dependencies (#7246) (50462d3)
  • npm: bump jws from 4.0.0 to 4.0.1 in /dependencies (#7260) (cc90344)
  • npm: bump next from 16.0.7 to 16.0.9 in /dependencies (#7277) (b7cedfb)
  • npm: bump the npm group across 1 directory with 3 updates (#7289) (f65215e)
  • npm: bump the npm group across 1 directory with 5 updates (#7271) (b4e616f)
  • npm: bump the npm group across 1 directory with 7 updates (#7259) (0ab9ad4)
  • npm: bump the npm group across 1 directory with 8 updates (#7266) (39e94f8)
  • python: bump the pip group across 1 directory with 2 updates (#7288) (4559b6e)
  • python: bump the pip group across 1 directory with 7 updates (#7265) (026d3fe)

🧰 Maintenance

Changelog

Sourced from super-linter/super-linter's changelog.

Changelog

8.3.1 (2025-12-15)

🐛 Bugfixes

⬆️ Dependency updates

  • bundler: bump rubocop-rails in /dependencies in the rubocop group (#7251) (d8a2032)
  • java: bump com.google.googlejavaformat:google-java-format (#7270) (140a2e3)
  • java: bump com.puppycrawl.tools:checkstyle (#7264) (550df3c)
  • java: bump the java-gradle group across 3 directories with 3 updates (#7252) (5306a0a)
  • npm: bump @​modelcontextprotocol/sdk in /dependencies (#7248) (4d59852)
  • npm: bump express from 5.1.0 to 5.2.1 in /dependencies (
Read more