From 9a80c4026c9b5ecb9728987ad45cc700efc79736 Mon Sep 17 00:00:00 2001 From: Anam Navied Date: Thu, 9 Jan 2025 22:49:15 +0000 Subject: [PATCH] Merged PR 33601: Update changelog and dotnet sdk version Update changelog and dotnet sdk version ---- #### AI description (iteration 1) #### PR Classification Documentation and bug fixes. #### PR Summary This pull request updates the changelog and the .NET SDK version, along with several bug fixes. - `src/Microsoft.PowerShell.PSResourceGet.psd1`: Added release notes for version 1.1.0 and removed the prerelease tag. - `CHANGELOG/1.1.md`: Added a new changelog file for version 1.1.0 detailing the bug fixes. - `global.json`: Updated .NET SDK version from 8.0.403 to 8.0.404. --- CHANGELOG/1.1.md | 12 ++++++++++++ global.json | 2 +- src/Microsoft.PowerShell.PSResourceGet.psd1 | 14 +++++++++++++- 3 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG/1.1.md diff --git a/CHANGELOG/1.1.md b/CHANGELOG/1.1.md new file mode 100644 index 000000000..ba6cce61e --- /dev/null +++ b/CHANGELOG/1.1.md @@ -0,0 +1,12 @@ +## [1.1.0](https://github.com/PowerShell/PSResourceGet/compare/v1.1.0-rc3...v1.1.0) - 2025-01-09 + +### Bug Fixes + +- Bugfix for publishing .nupkg file to ContainerRegistry repository (#1763) +- Bugfix for PMPs like Artifactory needing modified filter query parameter to proxy upstream (#1761) +- Bugfix for ContainerRegistry repository to parse out dependencies from metadata (#1766) +- Bugfix for Install-PSResource Null pointer occurring when package is present only in upstream feed in ADO (#1760) +- Bugfix for local repository casing issue on Linux (#1750) +- Update README.md (#1759) +- Bug fix for case sensitive License.txt when RequireLicense is specified (#1757) +- Bug fix for broken -Quiet parameter for Save-PSResource (#1745) diff --git a/global.json b/global.json index 120c43985..b832c3a01 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,5 @@ { "sdk": { - "version": "8.0.403" + "version": "8.0.404" } } diff --git a/src/Microsoft.PowerShell.PSResourceGet.psd1 b/src/Microsoft.PowerShell.PSResourceGet.psd1 index 2c4d38c3c..30994ba2e 100644 --- a/src/Microsoft.PowerShell.PSResourceGet.psd1 +++ b/src/Microsoft.PowerShell.PSResourceGet.psd1 @@ -46,7 +46,7 @@ 'udres') PrivateData = @{ PSData = @{ - Prerelease = 'rc3' + # Prerelease = '' Tags = @('PackageManagement', 'PSEdition_Desktop', 'PSEdition_Core', @@ -56,6 +56,18 @@ ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955' LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061' ReleaseNotes = @' +## 1.1.0 + +### Bug Fix +- Bugfix for publishing .nupkg file to ContainerRegistry repository (#1763) +- Bugfix for PMPs like Artifactory needing modified filter query parameter to proxy upstream (#1761) +- Bugfix for ContainerRegistry repository to parse out dependencies from metadata (#1766) +- Bugfix for Install-PSResource Null pointer occurring when package is present only in upstream feed in ADO (#1760) +- Bugfix for local repository casing issue on Linux (#1750) +- Update README.md (#1759) +- Bug fix for case sensitive License.txt when RequireLicense is specified (#1757) +- Bug fix for broken -Quiet parameter for Save-PSResource (#1745) + ## 1.1.0-rc3 ### Bug Fix