Skip to content

Commit 1c84d34

Browse files
authored
Update version, changelog, release notes for 1.3.0-preview1 (#1996)
1 parent 6af59f6 commit 1c84d34

2 files changed

Lines changed: 25 additions & 76 deletions

File tree

CHANGELOG/preview.md

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

3+
## [1.3.0-preview1](https://github.com/PowerShell/PSResourceGet/compare/v1.2.0..v1.3.0-preview1) - 2026-05-19
4+
5+
### New Features
6+
- Add `MAR` as default registered repository (#1955)
7+
- Add concurrent (parallel) execution for `Install-PSResource` workflows (#1950)
8+
- Add DSC V3 resource for PSResourceGet (#1852)
9+
10+
## Bug fix
11+
- Bump `Azure.Identity` from `1.17.1` to `1.17.2`(#1994)
12+
- Bump `Azure.Identity` from `1.14.2` to `1.17.1` and remove deprecated DefaultAzureCredentialOptions from constructor (#1987)
13+
- Make flaky CI tests more lenient (#1976)
14+
- Fixing the logic to determine if the current PowerShell session is Windows PowerShell or PowerShell Core (#1974 Thanks @Borgquite!)
15+
- Include local-copy prerelease string when deciding update applicability in `Update-PSResource` (#1954 Thanks @sean-r-williams!)
16+
317
## [1.2.0-rc3](https://github.com/PowerShell/PSResourceGet/compare/v1.2.0-rc2..v1.2.0-rc3) - 2026-02-06
418

519
## Bug fix

src/Microsoft.PowerShell.PSResourceGet.psd1

Lines changed: 11 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@{
55
RootModule = './Microsoft.PowerShell.PSResourceGet.dll'
66
NestedModules = @('./Microsoft.PowerShell.PSResourceGet.psm1')
7-
ModuleVersion = '1.2.0'
7+
ModuleVersion = '1.3.0'
88
CompatiblePSEditions = @('Core', 'Desktop')
99
GUID = 'e4e0bda1-0703-44a5-b70d-8fe704cd0643'
1010
Author = 'Microsoft Corporation'
@@ -50,7 +50,7 @@
5050
'usres')
5151
PrivateData = @{
5252
PSData = @{
53-
# Prerelease = ''
53+
Prerelease = 'preview1'
5454
Tags = @('PackageManagement',
5555
'PSEdition_Desktop',
5656
'PSEdition_Core',
@@ -60,84 +60,19 @@
6060
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
6161
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
6262
ReleaseNotes = @'
63-
## 1.2.0
64-
65-
## 1.2.0-rc3
66-
67-
## Bug fix
68-
- Packages that depend on a specific version should search for the dependency with NormalizedVersion (#1941)
69-
70-
## 1.2.0-rc2
71-
72-
## Bug fix
73-
- For packages with dependency on a specific version use specific version instead of version range (#1937)
74-
75-
## 1.2.0-rc1
76-
77-
## Bug fix
78-
- `WhatIf` parameter should respect provided value instead of simply checking presence (#1925)
79-
80-
## 1.2.0-preview5
63+
## 1.3.0-preview1
8164
8265
### New Features
83-
- Add `Reset-PSResourceRepository` cmdlet to recover from corrupted repository store (#1895)
84-
- Improve performance of `ContainerRegistry` repositories by caching token (#1920)
85-
86-
## Bug fix
87-
- Ensure `Update-PSResource` does not re-install dependency packages which already satisfy dependency criteria (#1919)
88-
- Retrieve non-anonymous access token when publishing to ACR (#1918)
89-
- Filter out path separators when passing in package names as a parameter for any cmdlet (#1916)
90-
- Respect `TrustRepository` parameter when using `-RequiredResource` with `Install-PSResource` (#1910)
91-
- Fix bug with 'PSModuleInfo' property deserialization when validating module manifest (#1909)
92-
- Prevent users from setting ApiVersion to 'Unknown' in `Set-PSResourceRepository` and `Register-PSResourceRepository` (#1892)
93-
94-
## 1.2.0-preview4
66+
- Add `MAR` as default registered repository (#1955)
67+
- Add concurrent (parallel) execution for `Install-PSResource` workflows (#1950)
68+
- Add DSC V3 resource for PSResourceGet (#1852)
9569
9670
## Bug fix
97-
98-
- Fix typos in numerous files (#1875 Thanks @SamErde!)
99-
- MAR fails to parse RequiredVersion for dependencies (#1876 Thanks @o-l-a-v!)
100-
- Get-InstalledPSResource -Path don't throw if no subdirectories were found (#1877 Thanks @o-l-a-v!)
101-
- Handle boolean correctly in RequiredResourceFile for prerelease key (#1843 Thanks @o-l-a-v!)
102-
- Fix CodeQL configuration (#1886)
103-
- Add cmdlet aliases: gres, usres, and svres (#1888)
104-
- Add warning when AuthenticodeCheck is used on non-Windows platforms (#1891)
105-
- Fix Compress-PSResource ignoring .gitkeep and other dotfiles (#1889)
106-
- Add CodeQL suppression for ContainerRegistryServerAPICalls (#1897)
107-
- Fix broken Install-PSResource test with warning condition incorrect (#1899)
108-
- Uninstall-PSResource should not fail silently when resource was not found or prerelease criteria not met (#1898)
109-
- Uninstall-PSResource should delete subdirectories without Access Denied error on OneDrive (#1860)
110-
111-
## 1.2.0-preview3
112-
113-
### New Features
114-
- Pagination for MCR catalog items (#1870)
115-
116-
### Bug Fix
117-
- Bug fix for CLM issues (#1869)
118-
- Update `-ModulePrefix` to be a static parameter (#1868)
119-
- Bug fix for populating all `#Requires` fields in `Update-PSScriptFileInfo` (#1863)
120-
- Bug fix for populating `Includes` metadata for packages from container registry repositories (#1861)
121-
- Bug fix for `Find-PSResource` and `Install-PSResource` not retrieving unlisted package versions (#1859)
122-
123-
## 1.2.0-preview2
124-
125-
### New Features
126-
- Integration of the Azure Artifacts Credential Provider for ADO feeds (#1765)
127-
128-
### Bug Fix
129-
- Bug fixes for NuGet v3 dependencies (#1841 Thanks @o-l-a-v!)
130-
- Bug fix for temporary installation path failure when installing PSResources on Linux machines (#1842 Thanks @o-l-a-v!)
131-
132-
## 1.2.0-preview1
133-
134-
### New Features
135-
- Dependency support for PSResources in v3 repositories (#1778 Thanks @o-l-a-v!)
136-
137-
### Bug Fix
138-
- Updated dependencies and added connection timeout to improve CI tests reliability (#1829)
139-
- Improvements in `ContainerRegistry` repositories in listing repository catalog (#1831)
140-
- Wildcard attribute added to `-Repository` parameter of `Install-PSResource` (#1808)
71+
- Bump `Azure.Identity` from `1.17.1` to `1.17.2`(#1994)
72+
- Bump `Azure.Identity` from `1.14.2` to `1.17.1` and remove deprecated DefaultAzureCredentialOptions from constructor (#1987)
73+
- Make flaky CI tests more lenient (#1976)
74+
- Fixing the logic to determine if the current PowerShell session is Windows PowerShell or PowerShell Core (#1974 Thanks @Borgquite!)
75+
- Include local-copy prerelease string when deciding update applicability in `Update-PSResource` (#1954 Thanks @sean-r-williams!)
14176
14277
See change log (CHANGELOG) at https://github.com/PowerShell/PSResourceGet
14378
'@

0 commit comments

Comments
 (0)