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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.

## Unreleased

## 26.6.29.1 - June 29, 2026

### Changed

- Module version bumped to `26.6.29.1`.
- Refactored `Get-OSDCloudCatalogLenovo` by commenting out the redundant `HashMD5` grouping/sort pass when filtering the latest driver packs per model.

## 26.6.26.1 - June 26, 2026

### Changed
Expand Down
2 changes: 1 addition & 1 deletion OSDCloud/OSDCloud.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
@{
# --- Identity ---
RootModule = 'OSDCloud.psm1'
ModuleVersion = '26.6.26.1'
ModuleVersion = '26.6.29.1'
CompatiblePSEditions = @('Core','Desktop')
GUID = '2fbd5c65-79c7-4561-9a2e-c4a4eebc89c7'

Expand Down
2 changes: 1 addition & 1 deletion OSDCloud/private/core/Get-OSDCloudCatalogLenovo.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ function Get-OSDCloudCatalogLenovo {
#=================================================
Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Filtering to latest driver packs per model"
$Results = $Results | Sort-Object Model, OSVersion -Descending | Group-Object Model | ForEach-Object {$_.Group | Select-Object -First 1}
$Results = $Results | Sort-Object Model, OSVersion -Descending | Group-Object HashMD5 | ForEach-Object {$_.Group | Select-Object -First 1}
# $Results = $Results | Sort-Object Model, OSVersion -Descending | Group-Object HashMD5 | ForEach-Object {$_.Group | Select-Object -First 1}
#=================================================
# Sort Results
#=================================================
Expand Down