Skip to content

Commit 06c1097

Browse files
authored
[Az.ConnectedKubernetes] Update ChangeLog (#20649)
* Update RSAHelper.ps1 (coding style) * Update ChangeLog.md
1 parent 8b7ae9b commit 06c1097

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/ConnectedKubernetes/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
* Made `New-AzConnectedKubernetes` support PowerShell 5.
2122

2223
## Version 0.7.0
2324
* Added the logic that prompt legal information when users call the parameter "-AzureHybridBenefit" in `New-AzConnectedKubernetes` or `Update-AzConnectedKubernetes`.

src/ConnectedKubernetes/utils/RSAHelper.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function ExportRSAPrivateKeyBase64{
77
process{
88
$RSAParams = $RSA.ExportParameters(1)
99
[byte]$Sequence = 0x30
10-
[byte[]]$Version =(0x00)
10+
[byte[]]$Version = (0x00)
1111
$stream = [System.IO.MemoryStream]::new()
1212
$writer = [System.IO.BinaryWriter]::new($stream)
1313
$writer.Write($Sequence); # SEQUENCE

0 commit comments

Comments
 (0)