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 8a2a7af80474432b971b735533c52e3f05233fdf Mon Sep 17 00:00:00 2001 From: alerickson <25858831+alerickson@users.noreply.github.com> Date: Wed, 30 Oct 2024 23:34:58 +0000 Subject: [PATCH 3/3] Fix error from resolving merge conflict --- CHANGELOG/preview.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG/preview.md b/CHANGELOG/preview.md index f63b2f1ca..f248fd013 100644 --- a/CHANGELOG/preview.md +++ b/CHANGELOG/preview.md @@ -1,7 +1,7 @@ -## [1.1.0-RC1](https://github.com/PowerShell/PSResourceGet/compare/v1.1.0-preview2...v1.1.0-RC1) - 2024-10-22 - # Preview Changelog +## [1.1.0-RC1](https://github.com/PowerShell/PSResourceGet/compare/v1.1.0-preview2...v1.1.0-RC1) - 2024-10-22 + ### New Features - Group Policy configurations for enabling or disabling PSResource repositories (#1730)