Skip to content

Commit 1b9e789

Browse files
author
Maddie Clayton
authored
Merge pull request Azure#5846 from maddieclayton/KeyVault2
Update version for KeyVault release
2 parents 7ebbcc7 + 19d1588 commit 1b9e789

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '4.2.1'
15+
ModuleVersion = '4.4.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -155,10 +155,12 @@ PrivateData = @{
155155
# IconUri = ''
156156

157157
# ReleaseNotes of this module
158-
ReleaseNotes = '* Fix issue with Default Resource Group in CloudShell'
158+
ReleaseNotes = '* Updated cmdlets to include piping scenarios
159+
* Added new cmdlets around NewtorkRules: Add/Remove/Update-AzureKeyVaultNetworkRule
160+
* Added new cmdlets: Backup/Restore-AzureKeyVaultManagedStorageAccount, Backup/Restore-AzureKeyVaultCertificate, Undo-AzureKeyVaultManagedStorageSasDefinitionRemoval, and Undo-AzureKeyVaultManagedStorageAccountRemoval'
159161

160162
# Prerelease string of this module
161-
# Prerelease = ''
163+
Prerelease = 'preview'
162164

163165
# Flag to indicate whether the module requires explicit user acceptance for install/update
164166
# RequireLicenseAcceptance = $false

src/ResourceManager/KeyVault/ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@
1818
- Additional information about change #1
1919
-->
2020
## Current Release
21+
22+
## Version 4.4.0-preview
2123
* Updated cmdlets to include piping scenarios
24+
* Added new cmdlets around NewtorkRules: Add/Remove/Update-AzureKeyVaultNetworkRule
25+
* Added new cmdlets: Backup/Restore-AzureKeyVaultManagedStorageAccount, Backup/Restore-AzureKeyVaultCertificate, Undo-AzureKeyVaultManagedStorageSasDefinitionRemoval, and Undo-AzureKeyVaultManagedStorageAccountRemoval
2226

2327
## Version 4.2.1
2428
* Fix issue with Default Resource Group in CloudShell

src/ResourceManager/KeyVault/Commands.KeyVault/Models/PSKeyVaultCertificate.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ internal PSKeyVaultCertificate(CertificateBundle certificateBundle, VaultUriHelp
7474

7575
if ( certificateBundle.Tags != null )
7676
{
77-
Tags = (Hashtable) certificateBundle.Tags;
77+
Tags = (certificateBundle.Tags == null) ? null : certificateBundle.Tags.ConvertToHashtable();
7878
}
7979
}
8080

@@ -127,7 +127,7 @@ internal PSKeyVaultCertificate(CertificateBundle certificateBundle)
127127

128128
if (certificateBundle.Tags != null)
129129
{
130-
Tags = (Hashtable)certificateBundle.Tags;
130+
Tags = (certificateBundle.Tags == null) ? null : certificateBundle.Tags.ConvertToHashtable();
131131
}
132132
}
133133

src/ResourceManager/KeyVault/Commands.KeyVault/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
[assembly: CLSCompliant(false)]
3030

3131
[assembly: Guid("2994548F-69B9-4DC2-8D19-52CC0C0C85BC")]
32-
[assembly: AssemblyVersion("4.2.1")]
33-
[assembly: AssemblyFileVersion("4.2.1")]
32+
[assembly: AssemblyVersion("4.4.0")]
33+
[assembly: AssemblyFileVersion("4.4.0")]
3434
#if SIGN
3535
[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.KeyVault.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
3636
#else

0 commit comments

Comments
 (0)