From ad8bdf133a72d80bf95aa2c60e01eb890f141ed8 Mon Sep 17 00:00:00 2001 From: Amber Erickson Date: Tue, 22 Oct 2024 20:41:30 +0000 Subject: [PATCH 1/3] Merged PR 33054: Update date in changelog Update date in changelog. --- CHANGELOG/preview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG/preview.md b/CHANGELOG/preview.md index a27564140..3ed3fced0 100644 --- a/CHANGELOG/preview.md +++ b/CHANGELOG/preview.md @@ -1,4 +1,4 @@ -## [1.1.0-RC1](https://github.com/PowerShell/PSResourceGet/compare/v1.1.0-preview2...v1.1.0-RC1) - 2024-09-13 +## [1.1.0-RC1](https://github.com/PowerShell/PSResourceGet/compare/v1.1.0-preview2...v1.1.0-RC1) - 2024-10-22 ### New Features From 10ecb4d02be20a3de3417a5db46539d412c60774 Mon Sep 17 00:00:00 2001 From: Amber Erickson Date: Tue, 22 Oct 2024 21:16:11 +0000 Subject: [PATCH 2/3] Merged PR 33056: Update pipeline to sign .ps1 files Update pipeline to sign .ps1 files ---- #### AI description (iteration 1) #### PR Classification Pipeline update to include additional file types for signing. #### PR Summary This pull request updates the pipeline configuration to sign `.ps1` files in addition to the existing file types. - Updated `/.pipelines/PSResourceGet-Official.yml` to include `**\*.ps1` in the `files_to_sign` parameter. --- .pipelines/PSResourceGet-Official.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pipelines/PSResourceGet-Official.yml b/.pipelines/PSResourceGet-Official.yml index bc6a10f14..d096cf33e 100644 --- a/.pipelines/PSResourceGet-Official.yml +++ b/.pipelines/PSResourceGet-Official.yml @@ -152,7 +152,7 @@ extends: inputs: command: 'sign' signing_profile: external_distribution - files_to_sign: '**\*.psd1;**\*.psm1;**\*.ps1xml;**\Microsoft*.dll' + files_to_sign: '**\*.ps1;**\*.psd1;**\*.psm1;**\*.ps1xml;**\Microsoft*.dll' search_root: $(signSrcPath) - pwsh: | From 7cf5caaf9c259c77164128bbff25b584054e058a Mon Sep 17 00:00:00 2001 From: Amber Erickson Date: Thu, 31 Oct 2024 00:55:00 +0000 Subject: [PATCH 3/3] Merged PR 33152: Update changelog, release notes, and version for v1.1.0-RC2 release #### AI description (iteration 1) #### PR Classification Documentation and version update for release. #### PR Summary This pull request updates the changelog, release notes, and version information for the v1.1.0-RC2 release. - `/src/Microsoft.PowerShell.PSResourceGet.psd1`: Updated `Prerelease` version to `RC2` and added release notes for v1.1.0-RC2. - `/CHANGELOG/preview.md`: Added changelog entries for v1.1.0-RC2, including new features and bug fixes. --- CHANGELOG/preview.md | 11 +++++++++++ src/Microsoft.PowerShell.PSResourceGet.psd1 | 13 ++++++++++++- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG/preview.md b/CHANGELOG/preview.md index 3ed3fced0..c3681ed41 100644 --- a/CHANGELOG/preview.md +++ b/CHANGELOG/preview.md @@ -1,3 +1,14 @@ +## [1.1.0-RC2](https://github.com/PowerShell/PSResourceGet/compare/v1.1.0-RC1...v1.1.0-RC2) - 2024-10-30 + +### New Features +- Full Microsoft Artifact Registry integration (#1741) + +### Bug Fixes + +- Update to use OCI v2 APIs for Container Registry (#1737) +- Bug fixes for finding and installing from local repositories on Linux machines (#1738) +- Bug fix for finding package name with 4 part version from local repositories (#1739) + ## [1.1.0-RC1](https://github.com/PowerShell/PSResourceGet/compare/v1.1.0-preview2...v1.1.0-RC1) - 2024-10-22 ### New Features diff --git a/src/Microsoft.PowerShell.PSResourceGet.psd1 b/src/Microsoft.PowerShell.PSResourceGet.psd1 index 3a497db4e..91e27ed57 100644 --- a/src/Microsoft.PowerShell.PSResourceGet.psd1 +++ b/src/Microsoft.PowerShell.PSResourceGet.psd1 @@ -46,7 +46,7 @@ 'udres') PrivateData = @{ PSData = @{ - Prerelease = 'RC1' + Prerelease = 'RC2' Tags = @('PackageManagement', 'PSEdition_Desktop', 'PSEdition_Core', @@ -56,6 +56,17 @@ ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955' LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061' ReleaseNotes = @' +## 1.1.0-RC2 + +### New Features +- Full Microsoft Artifact Registry integration (#1741) + +### Bug Fixes + +- Update to use OCI v2 APIs for Container Registry (#1737) +- Bug fixes for finding and installing from local repositories on Linux machines (#1738) +- Bug fix for finding package name with 4 part version from local repositories (#1739) + ## 1.1.0-RC1 ### New Features