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
15 changes: 15 additions & 0 deletions CHANGELOG/preview.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Preview Changelog

## [1.3.0-preview2](https://github.com/PowerShell/PSResourceGet/compare/v1.3.0-preview1..v1.3.0-preview2) - 2026-09-18

### New Features
- Add concurrency for parent package installation (#2016)
- Implement unimplemented concurrency methods for all server classes (#2012)
- Add platform-aware installation, filtering out runtimes by `-RuntimeIdentifier` and libraries by `-TargetFramework` (#1963)
- Add `PSContentPath` standard platform paths (#1912)
- Add `WhatIf` functionality to `PSResourceList` operations (#2004 Thanks @Gijsreyn!)

### Bug Fixes
- Add input validation for Repository DSCResource for GetOperation (#2002 Thanks @Gijsreyn!)
- Capture cmdlet warnings to prevent stdout contamination breaking DSC JSON parsing (#2000 Thanks @Gijsreyn!)
- Bug fix for PSResourcelistGet DSCResource operation filters out resources on installed version (#1998 Thanks @Gijsreyn!)
Comment thread
alerickson marked this conversation as resolved.
- Add custom exception messages for PSGallery (#2038)

## [1.3.0-preview1](https://github.com/PowerShell/PSResourceGet/compare/v1.2.0..v1.3.0-preview1) - 2026-05-19

### New Features
Expand Down
17 changes: 16 additions & 1 deletion src/Microsoft.PowerShell.PSResourceGet.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
'usres')
PrivateData = @{
PSData = @{
Prerelease = 'preview1'
Prerelease = 'preview2'
Tags = @('PackageManagement',
'PSEdition_Desktop',
'PSEdition_Core',
Expand All @@ -60,6 +60,21 @@
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
ReleaseNotes = @'
## 1.3.0-preview2

### New Features
- Add concurrency for parent package installation (#2016)
- Implement unimplemented concurrency methods for all server classes (#2012)
- Add platform-aware installation, filtering out runtimes by `-RuntimeIdentifier` and libraries by `-TargetFramework` (#1963)
- Add `PSContentPath` standard platform paths (#1912)
- Add `WhatIf` functionality to `PSResourceList` operations (#2004 Thanks @Gijsreyn!)

### Bug Fixes
- Add input validation for Repository DSCResource for GetOperation (#2002 Thanks @Gijsreyn!)
- Capture cmdlet warnings to prevent stdout contamination breaking DSC JSON parsing (#2000 Thanks @Gijsreyn!)
- Bug fix for PSResourcelistGet DSCResource operation filters out resources on installed version (#1998 Thanks @Gijsreyn!)
Comment thread
alerickson marked this conversation as resolved.
- Add custom exception messages for PSGallery (#2038)

## 1.3.0-preview1

### New Features
Expand Down
Loading