Skip to content

Commit

Permalink
Merged PR 33601: Update changelog and dotnet sdk version
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Anam Navied committed Jan 9, 2025
1 parent 50ebac2 commit 4c8aa89
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG/1.1.md
Original file line number Diff line number Diff line change
@@ -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)
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "8.0.403"
"version": "8.0.404"
}
}
14 changes: 13 additions & 1 deletion src/Microsoft.PowerShell.PSResourceGet.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
'udres')
PrivateData = @{
PSData = @{
Prerelease = 'rc3'
# Prerelease = ''
Tags = @('PackageManagement',
'PSEdition_Desktop',
'PSEdition_Core',
Expand All @@ -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
Expand Down

0 comments on commit 4c8aa89

Please sign in to comment.