Skip to content

Commit 7b4a585

Browse files
committed
Committing statged
2 parents 6ad632a + 3b0d48c commit 7b4a585

File tree

7 files changed

+5464
-5384
lines changed

7 files changed

+5464
-5384
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
106106
- Fix `Connect-PnPOnline` cmdlet not working with On Prem related cmdlets. [#4622](https://github.com/pnp/powershell/pull/4622)
107107
- Fix `Get\Invoke-PnPSiteTemplate` cmdlet not working in vanity domains. [#4630](https://github.com/pnp/powershell/pull/4630)
108108
- Fixed passing a `Get-PnPRecycleBinItem` result or a GUID to `Restore-PnPRecycleBinItem` not working correctly. [#4667](https://github.com/pnp/powershell/pull/4667)
109+
- Fixed `Get-PnPChangeLog` not returning the changelog [#4707](https://github.com/pnp/powershell/pull/4707)
109110

110111
### Removed
111112

dependencies.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"Updated": "20250126-024428",
2+
"Updated": "20250127-024415",
33
"PnPPowerShell": "24a8546ce88b39e8e401bac82e0773e946e5847c",
4-
"PnPFramework": "d6e286005e495a7d3931788820d29398d9eda9f3",
5-
"PnPCore": "62de84c9bf7498133997f29d9e01ac20eaca94a6"
4+
"PnPFramework": "52dde2933fc7e617444b6ea684c3f29595460c59",
5+
"PnPCore": "2d3756df14123193566e5aa895cdebdd8070dded"
66
}

documentation/Get-PnPChangeLog.md

Lines changed: 44 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,18 @@ Returns the changelog for PnP PowerShell
1414

1515
## SYNTAX
1616

17+
### Current nightly
1718
```powershell
18-
Get-PnPChangeLog [-Nightly]
19+
Get-PnPChangeLog -Nightly [-Verbose]
20+
```
21+
22+
### Specific version
23+
```powershell
24+
Get-PnPChangeLog [-Version <String>] [-Verbose]
1925
```
2026

2127
## DESCRIPTION
22-
This cmdlets returns the changelog in markdown format. It is retrieved dynamically from GitHub.
28+
This cmdlets returns what has changed in PnP PowerShell in a specific version in markdown format. It is retrieved dynamically from GitHub.
2329

2430
## EXAMPLES
2531

@@ -28,7 +34,7 @@ This cmdlets returns the changelog in markdown format. It is retrieved dynamical
2834
Get-PnPChangeLog
2935
```
3036

31-
Returns the changelog for the currently released version.
37+
Returns the changelog for the latest released stable version.
3238

3339
### EXAMPLE 2
3440
```powershell
@@ -37,11 +43,32 @@ Get-PnPChangeLog -Nightly
3743

3844
Returns the changelog for the current nightly build.
3945

46+
### EXAMPLE 3
47+
```powershell
48+
Get-PnPChangeLog -Version 2.12.0
49+
```
50+
51+
Returns the changelog for the 2.12.0 release.
52+
4053
## PARAMETERS
4154

4255
### -Nightly
4356
Return the changelog for the nightly build
4457

58+
```yaml
59+
Type: SwitchParameter
60+
Parameter Sets: Current nightly
61+
62+
Required: True
63+
Position: Named
64+
Default value: None
65+
Accept pipeline input: False
66+
Accept wildcard characters: False
67+
```
68+
69+
### -Verbose
70+
When provided, additional debug statements will be shown while executing the cmdlet.
71+
4572
```yaml
4673
Type: SwitchParameter
4774
Parameter Sets: (All)
@@ -53,8 +80,20 @@ Accept pipeline input: False
5380
Accept wildcard characters: False
5481
```
5582
56-
## RELATED LINKS
83+
### -Version
84+
Return the changelog for a specific version. Be sure to use the correct version number in the format <#>.<#>.<#>, i.e. 2.12.0, otherwise the cmdlet will fail. If omitted, the latest stable version will be returned.
5785
58-
[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp)
86+
```yaml
87+
Type: SwitchParameter
88+
Parameter Sets: Specific version
5989

90+
Required: False
91+
Position: Named
92+
Default value: Latest stable version
93+
Accept pipeline input: False
94+
Accept wildcard characters: False
95+
```
96+
97+
## RELATED LINKS
6098
99+
[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp)

0 commit comments

Comments
 (0)