Skip to content

Commit 4ed9654

Browse files
authored
Update changelog (#453)
1 parent 5361a55 commit 4ed9654

File tree

2 files changed

+42
-18
lines changed

2 files changed

+42
-18
lines changed

CHANGELOG.md

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,33 @@
22

33
## 3.0.11-beta
44

5-
### Fixes
6-
75
### Changes
6+
- Graceful handling of paths that do not exist
7+
- The repository store (PSResourceRepository.xml) is auto-generated if it does not already exist. It also automatically registers the PowerShellGallery with a default priority of 50 and a default trusted value of false.
8+
- Better Linux support, including graceful exits when paths do not exist
9+
- Better pipeline input support all cmdlets
10+
- General wildcard support for all cmdlets
11+
- WhatIf support for all cmdlets
12+
- All cmdlets output concrete return types
13+
- Better help documentation for all cmdlets
14+
- Using an exact prerelease version with Find, Install, or Save no longer requires `-Prerelease` tag
15+
- Support for finding, installing, saving, and updating PowerShell resources from Azure Artifact feeds
16+
- Publish-PSResource now properly dispays 'Tags' in nuspec
17+
- Find-PSResource quickly cancels transactions with 'CTRL + C'
18+
- Register-PSRepository now handles relative paths
19+
- Find-PSResource and Save-PSResource deduplicates dependencies
20+
- Install-PSResource no longer creates version folder with the prerelease tag
21+
- Update-PSResource can now update all resources, and no longer requires name param
22+
- Save-PSResource properly handles saving scripts
23+
- Get-InstalledPSResource uses default PowerShell paths
824

9-
### New Features
10-
11-
- Find-PSResource
12-
- Get-InstalledPSResource
13-
- Get-PSResourceRepository
14-
- Install-PSResource
15-
- Publish-PSResource
16-
- Register-PSResourceRepository
17-
- Save-PSResource
18-
- Set-PSResourceRepository
19-
- Uninstall-PSResource
20-
- Unregister-PSResourceRepository
21-
- Update-PSResource
2225

2326
### Notes
2427
In this release, all cmdlets have been reviewed and implementation code refactored as needed.
2528
Cmdlets have most of their functionality, but some parameters are not yet implemented and will be added in future releases.
2629
All tests have been reviewed and rewritten as needed.
2730

31+
2832
## 3.0.0-beta10
2933
Bug Fixes
3034
* Bug fix for -ModuleName (used with -Version) in Find-PSResource returning incorrect resource type

src/PowerShellGet.psd1

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,30 @@
4040
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
4141
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
4242
ReleaseNotes = @'
43-
In this release, all cmdlets have been reviewed and implementation code refactored as needed.
44-
Cmdlets have most of their functionality, but some parameters are not yet implemented and will be added in future releases.
45-
All tests have been reviewed and rewritten as needed.
43+
4644
### 3.0.11
45+
In this release, all cmdlets have been reviewed and implementation code refactored as needed.
46+
Cmdlets have most of their functionality, but some parameters are not yet implemented and will be added in future releases.
47+
All tests have been reviewed and rewritten as needed.
48+
49+
- Graceful handling of paths that do not exist
50+
- The repository store (PSResourceRepository.xml) is auto-generated if it does not already exist. It also automatically registers the PowerShellGallery with a default priority of 50 and a default trusted value of false.
51+
- Better Linux support, including graceful exits when paths do not exist
52+
- Better pipeline input support all cmdlets
53+
- General wildcard support for all cmdlets
54+
- WhatIf support for all cmdlets
55+
- All cmdlets output concrete return types
56+
- Better help documentation for all cmdlets
57+
- Using an exact prerelease version with Find, Install, or Save no longer requires `-Prerelease` tag
58+
- Support for finding, installing, saving, and updating PowerShell resources from Azure Artifact feeds
59+
- Publish-PSResource now properly dispays 'Tags' in nuspec
60+
- Find-PSResource quickly cancels transactions with 'CTRL + C'
61+
- Register-PSRepository now handles relative paths
62+
- Find-PSResource and Save-PSResource deduplicates dependencies
63+
- Install-PSResource no longer creates version folder with the prerelease tag
64+
- Update-PSResource can now update all resources, and no longer requires name param
65+
- Save-PSResource properly handles saving scripts
66+
- Get-InstalledPSResource uses default PowerShell paths
4767
'@
4868
}
4969
}

0 commit comments

Comments
 (0)