You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -106,6 +106,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
106
106
- Fix `Connect-PnPOnline` cmdlet not working with On Prem related cmdlets. [#4622](https://github.com/pnp/powershell/pull/4622)
107
107
- Fix `Get\Invoke-PnPSiteTemplate` cmdlet not working in vanity domains. [#4630](https://github.com/pnp/powershell/pull/4630)
108
108
- 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)
Copy file name to clipboardExpand all lines: documentation/Get-PnPChangeLog.md
+44-5Lines changed: 44 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -14,12 +14,18 @@ Returns the changelog for PnP PowerShell
14
14
15
15
## SYNTAX
16
16
17
+
### Current nightly
17
18
```powershell
18
-
Get-PnPChangeLog [-Nightly]
19
+
Get-PnPChangeLog -Nightly [-Verbose]
20
+
```
21
+
22
+
### Specific version
23
+
```powershell
24
+
Get-PnPChangeLog [-Version <String>] [-Verbose]
19
25
```
20
26
21
27
## 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.
23
29
24
30
## EXAMPLES
25
31
@@ -28,7 +34,7 @@ This cmdlets returns the changelog in markdown format. It is retrieved dynamical
28
34
Get-PnPChangeLog
29
35
```
30
36
31
-
Returns the changelog for the currently released version.
37
+
Returns the changelog for the latest released stable version.
32
38
33
39
### EXAMPLE 2
34
40
```powershell
@@ -37,11 +43,32 @@ Get-PnPChangeLog -Nightly
37
43
38
44
Returns the changelog for the current nightly build.
39
45
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
+
40
53
## PARAMETERS
41
54
42
55
### -Nightly
43
56
Return the changelog for the nightly build
44
57
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
+
45
72
```yaml
46
73
Type: SwitchParameter
47
74
Parameter Sets: (All)
@@ -53,8 +80,20 @@ Accept pipeline input: False
53
80
Accept wildcard characters: False
54
81
```
55
82
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.
57
85
58
-
[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp)
86
+
```yaml
87
+
Type: SwitchParameter
88
+
Parameter Sets: Specific version
59
89
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
60
98
99
+
[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp)
0 commit comments