Skip to content

Commit 30cc356

Browse files
authored
Added breaking changes for Invoke-AzKeyVaultKeyOperation (#21527)
1 parent cf12974 commit 30cc356

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/KeyVault/KeyVault/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
* Added breaking changes for `Invoke-AzKeyVaultKeyOperation`. The encoded/decoded way between string and bytes in `Invoke-AzKeyVaultKeyOperation` will change to UTF8.
22+
- This change will take effect on 5/23/2023
23+
- The change is expected to take effect from the version 5.0.0
2124
* Updated Azure.Core to 1.31.0.
2225

2326
## Version 4.9.2

src/KeyVault/KeyVault/Commands/Key/InvokeAzureKeyVaultOperation.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using Microsoft.Azure.Commands.KeyVault.Models;
22
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
3+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
34

45
using System;
56
using System.Management.Automation;
@@ -14,6 +15,7 @@ namespace Microsoft.Azure.Commands.KeyVault.Commands.Key
1415
/// 3. Wraps a symmetric key using a specified key.
1516
/// 4. Unwraps a symmetric key using the specified key that was initially used for wrapping that key.
1617
/// </summary>
18+
[GenericBreakingChange("The encoded/decoded way between string and bytes will change to UTF8.", "5.0.0", "05/23/2023")]
1719
[Cmdlet(VerbsLifecycle.Invoke, ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultKeyOperation", SupportsShouldProcess = true, DefaultParameterSetName = ByVaultNameParameterSet)]
1820
[OutputType(typeof(PSKeyOperationResult))]
1921
public class InvokeAzureKeyVaultKeyOperation : KeyVaultKeyCmdletBase

0 commit comments

Comments
 (0)