Skip to content

Commit 6c2076c

Browse files
Update change for release v1.2.0-preview4 (#1903)
1 parent 05f7928 commit 6c2076c

File tree

4 files changed

+38
-4
lines changed

4 files changed

+38
-4
lines changed

CHANGELOG/preview.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Preview Changelog
22

3+
## [1.2.0-preview4](https://github.com/PowerShell/PSResourceGet/compare/v1.2.0-preview3..v1.2.0-preview4) - 2025-11-04
4+
5+
## Bug fix
6+
7+
- Fix typos in numerous files (#1875 Thanks @SamErde!)
8+
- MAR fails to parse RequiredVersion for dependencies (#1876 Thanks @o-l-a-v!)
9+
- Get-InstalledPSResource -Path don't throw if no subdirectories were found (#1877 Thanks @o-l-a-v!)
10+
- Handle boolean correctly in RequiredResourceFile for prerelease key (#1843 Thanks @o-l-a-v!)
11+
- Fix CodeQL configuration (#1886)
12+
- Add cmdlet aliases: gres, usres, and svres (#1888)
13+
- Add warning when AuthenticodeCheck is used on non-Windows platforms (#1891)
14+
- Fix Compress-PSResource ignoring .gitkeep and other dotfiles (#1889)
15+
- Add CodeQL suppression for ContainerRegistryServerAPICalls (#1897)
16+
- Fix broken Install-PSResource test with warning condition incorrect (#1899)
17+
- Uninstall-PSResource should not fail silently when resource was not found or prerelease criteria not met (#1898)
18+
- Uninstall-PSResource should delete subdirectories without Access Denied error on OneDrive (#1860)
19+
320
## [1.2.0-preview3](https://github.com/PowerShell/PSResourceGet/compare/v1.2.0-preview2..v1.2.0-preview3) - 2025-09-12
421

522
### New Features

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "8.0.414"
3+
"version": "8.0.415"
44
}
55
}

src/Microsoft.PowerShell.PSResourceGet.psd1

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
'usres')
5050
PrivateData = @{
5151
PSData = @{
52-
Prerelease = 'preview3'
52+
Prerelease = 'preview4'
5353
Tags = @('PackageManagement',
5454
'PSEdition_Desktop',
5555
'PSEdition_Core',
@@ -59,6 +59,23 @@
5959
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
6060
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
6161
ReleaseNotes = @'
62+
## 1.2.0-preview4
63+
64+
## Bug fix
65+
66+
- Fix typos in numerous files (#1875 Thanks @SamErde!)
67+
- MAR fails to parse RequiredVersion for dependencies (#1876 Thanks @o-l-a-v!)
68+
- Get-InstalledPSResource -Path don't throw if no subdirectories were found (#1877 Thanks @o-l-a-v!)
69+
- Handle boolean correctly in RequiredResourceFile for prerelease key (#1843 Thanks @o-l-a-v!)
70+
- Fix CodeQL configuration (#1886)
71+
- Add cmdlet aliases: gres, usres, and svres (#1888)
72+
- Add warning when AuthenticodeCheck is used on non-Windows platforms (#1891)
73+
- Fix Compress-PSResource ignoring .gitkeep and other dotfiles (#1889)
74+
- Add CodeQL suppression for ContainerRegistryServerAPICalls (#1897)
75+
- Fix broken Install-PSResource test with warning condition incorrect (#1899)
76+
- Uninstall-PSResource should not fail silently when resource was not found or prerelease criteria not met (#1898)
77+
- Uninstall-PSResource should delete subdirectories without Access Denied error on OneDrive (#1860)
78+
6279
## 1.2.0-preview3
6380
6481
### New Features

src/code/Microsoft.PowerShell.PSResourceGet.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
<PackageReference Include="NuGet.Protocol" Version="6.9.1" />
2323
<PackageReference Include="PowerShellStandard.Library" Version="7.0.0-preview.1" />
2424
<PackageReference Include="System.Net.Http" Version="4.3.4" />
25-
<PackageReference Include="System.Text.Json" Version="8.0.5" />
25+
<PackageReference Include="System.Text.Json" Version="8.0.6" />
2626
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
27-
<PackageReference Include="Azure.Identity" Version="1.14.0" />
27+
<PackageReference Include="Azure.Identity" Version="1.14.2" />
2828
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="6.0.5" />
2929
<Reference Include="System.Web" />
3030
</ItemGroup>

0 commit comments

Comments
 (0)