Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

If you contributed one of these and there's no credit in the line PR to add it or let me know!

## 2026-04-29 - Version 1.23.2

* Fix `Invoke-HaloBatchProcessor` parallel runspace error where `Invoke-HaloBatchItem` was not recognised; private function is now invoked via `Module.Invoke()` within the imported module scope.

Copilot AI Apr 29, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Spelling: the repo’s cspell config uses "language": "en", so recognised may be flagged. Consider changing to recognized (or add the term to the cspell dictionary if you intend UK spelling throughout).

Suggested change
* Fix `Invoke-HaloBatchProcessor` parallel runspace error where `Invoke-HaloBatchItem` was not recognised; private function is now invoked via `Module.Invoke()` within the imported module scope.
* Fix `Invoke-HaloBatchProcessor` parallel runspace error where `Invoke-HaloBatchItem` was not recognized; private function is now invoked via `Module.Invoke()` within the imported module scope.

Copilot uses AI. Check for mistakes.

## 2026-04-29 - Version 1.23.1

* Fix `Get-HaloTicket` pagination behavior so explicitly providing `-PageNo` and/or `-PageSize` no longer auto-fetches all pages.
Expand Down
2 changes: 1 addition & 1 deletion HaloAPI.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = '.\HaloAPI.psm1'

# Version number of this module.
ModuleVersion = '1.23.1'
ModuleVersion = '1.23.2'

Copilot AI Apr 29, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When bumping ModuleVersion, the manifest’s PrivateData.PSData.ReleaseNotes URL should be updated as well (it still points to the 1.22.1 tag). Otherwise the published module metadata will link to the wrong release notes for 1.23.2.

Copilot uses AI. Check for mistakes.

# Supported PSEditions
CompatiblePSEditions = @('Core')
Expand Down