diff --git a/CHANGELOG/1.0.md b/CHANGELOG/1.0.md index 8477b723c..63909e508 100644 --- a/CHANGELOG/1.0.md +++ b/CHANGELOG/1.0.md @@ -1,5 +1,10 @@ # 1.0 Changelog +## [1.0.3](https://github.com/PowerShell/PSResourceGet/compare/v1.0.2...v1.0.3) - 2024-03-13 + +### Bug Fixes +- Bug fix for null package version in `Install-PSResource` + ## [1.0.2](https://github.com/PowerShell/PSResourceGet/compare/v1.0.1...v1.0.2) - 2024-02-06 ### Bug Fixes diff --git a/CHANGELOG/preview.md b/CHANGELOG/preview.md index 978dd5dfa..3e4653abb 100644 --- a/CHANGELOG/preview.md +++ b/CHANGELOG/preview.md @@ -1 +1,12 @@ -This file will contain changelog updates for preview releases for Microsoft.PowerShell.PSResourceGet \ No newline at end of file +## [1.1.0-preview1](https://github.com/PowerShell/PSResourceGet/compare/v1.0.3...v1.1.0-preview1) - 2024-04-01 + +### New Features + +- Support for Azure Container Registries (#1495, #1497-#1499, #1501, #1502, #1505, #1522, #1545, #1548, #1550, #1554, #1560, #1567, +#1573, #1576, #1587, #1588, #1589, #1594, #1598, #1600, #1602, #1604, #1615) + +### Bug Fixes + +- Fix incorrect request URL when installing resources from ADO (#1597 Thanks @anytonyoni!) +- Fix for swallowed exceptions (#1569) +- Fix for PSResourceGet not working in Constrained Languange Mode (#1564) diff --git a/src/Microsoft.PowerShell.PSResourceGet.psd1 b/src/Microsoft.PowerShell.PSResourceGet.psd1 index e4e01cfbb..b5abe9ae6 100644 --- a/src/Microsoft.PowerShell.PSResourceGet.psd1 +++ b/src/Microsoft.PowerShell.PSResourceGet.psd1 @@ -4,7 +4,7 @@ @{ RootModule = './Microsoft.PowerShell.PSResourceGet.dll' NestedModules = @('./Microsoft.PowerShell.PSResourceGet.psm1') - ModuleVersion = '1.0.0' + ModuleVersion = '1.1.0' CompatiblePSEditions = @('Core', 'Desktop') GUID = 'e4e0bda1-0703-44a5-b70d-8fe704cd0643' Author = 'Microsoft Corporation' @@ -45,7 +45,7 @@ 'udres') PrivateData = @{ PSData = @{ - #Prerelease = '' + Prerelease = 'preview1' Tags = @('PackageManagement', 'PSEdition_Desktop', 'PSEdition_Core', @@ -55,6 +55,51 @@ ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955' LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061' ReleaseNotes = @' +## 1.1.0-preview1 + +### New Features + +- Support for Azure Container Registries (#1495, #1497-#1499, #1501, #1502, #1505, #1522, #1545, #1548, #1550, #1554, #1560, #1567, +#1573, #1576, #1587, #1588, #1589, #1594, #1598, #1600, #1602, #1604, #1615) + +### Bug Fixes + +- Fix incorrect request URL when installing resources from ADO (#1597 Thanks @anytonyoni!) +- Fix for swallowed exceptions (#1569) +- Fix for PSResourceGet not working in Constrained Languange Mode (#1564) + +## 1.0.3 + +### Bug Fixes +- Bug fix for null package version in `Install-PSResource` + +## 1.0.2 + +### Bug Fixes + +- Bug fix for `Update-PSResource` not updating from correct repository (#1549) +- Bug fix for creating temp home directory on Unix (#1544) +- Bug fix for creating `InstalledScriptInfos` directory when it does not exist (#1542) +- Bug fix for `Update-ModuleManifest` throwing null pointer exception (#1538) +- Bug fix for `name` property not populating in `PSResourceInfo` object when using `Find-PSResource` with JFrog Artifactory (#1535) +- Bug fix for incorrect configuration of requests to JFrog Artifactory v2 endpoints (#1533 Thanks @sean-r-williams!) +- Bug fix for determining JFrog Artifactory repositories (#1532 Thanks @sean-r-williams!) +- Bug fix for v2 server repositories incorrectly adding script endpoint (1526) +- Bug fixes for null references (#1525) +- Typo fixes in message prompts in `Install-PSResource` (#1510 Thanks @NextGData!) +- Bug fix to add `NormalizedVersion` property to `AdditionalMetadata` only when it exists (#1503 Thanks @sean-r-williams!) +- Bug fix to verify whether `Uri` is a UNC path and set respective `ApiVersion` (#1479 Thanks @kborowinski!) + +## 1.0.1 + +### Bug Fixes + +- Bugfix to update Unix local user installation paths to be compatible with .NET 7 and .NET 8 (#1464) +- Bugfix for Import-PSGetRepository in Windows PowerShell (#1460) +- Bugfix for `Test-PSScriptFileInfo`` to be less sensitive to whitespace (#1457) +- Bugfix to overwrite rels/rels directory on net472 when extracting nupkg to directory (#1456) +- Bugfix to add pipeline by property name support for Name and Repository properties for Find-PSResource (#1451 Thanks @ThomasNieto!) + ## 1.0.0 ### New Features diff --git a/src/code/Microsoft.PowerShell.PSResourceGet.csproj b/src/code/Microsoft.PowerShell.PSResourceGet.csproj index cdf0feb9d..90364354e 100644 --- a/src/code/Microsoft.PowerShell.PSResourceGet.csproj +++ b/src/code/Microsoft.PowerShell.PSResourceGet.csproj @@ -5,9 +5,9 @@ Library Microsoft.PowerShell.PSResourceGet Microsoft.PowerShell.PSResourceGet - 1.0.0.0 - 1.0.0 - 1.0.0 + 1.1.0.1 + 1.1.0.1 + 1.1.0.1 net472;netstandard2.0 9.0 true