From a9f11afc9c0b81a0ac6cb0b61e3c9f9a6a967a3b Mon Sep 17 00:00:00 2001 From: Adam Sandor Date: Tue, 11 Oct 2022 17:32:37 -0400 Subject: [PATCH 1/3] update net version --- src/Compute/Compute.Test/Compute.Test.csproj | 2 +- src/Compute/Compute/Compute.csproj | 4 ++-- .../GalleryImageVersionCreateOrUpdateMethod.cs | 2 +- src/Network/Network.Test/Network.Test.csproj | 2 +- .../RecoveryServices.Backup.Test.csproj | 2 +- .../RecoveryServices.SiteRecovery.Test.csproj | 2 +- src/Security/Security.Test/Security.Test.csproj | 2 +- .../SqlVirtualMachine.Test/SqlVirtualMachine.Test.csproj | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/Compute/Compute.Test/Compute.Test.csproj b/src/Compute/Compute.Test/Compute.Test.csproj index 6ff3483a1b3b..073c6ec215fc 100644 --- a/src/Compute/Compute.Test/Compute.Test.csproj +++ b/src/Compute/Compute.Test/Compute.Test.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/Compute/Compute/Compute.csproj b/src/Compute/Compute/Compute.csproj index 761ab67f21a7..7d9d98eee11f 100644 --- a/src/Compute/Compute/Compute.csproj +++ b/src/Compute/Compute/Compute.csproj @@ -1,4 +1,4 @@ - + Compute @@ -15,7 +15,7 @@ - + diff --git a/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionCreateOrUpdateMethod.cs b/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionCreateOrUpdateMethod.cs index 8246a8c6c5d8..b2ab0aae929a 100644 --- a/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionCreateOrUpdateMethod.cs +++ b/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionCreateOrUpdateMethod.cs @@ -188,7 +188,7 @@ public override void ExecuteCmdlet() } if (galleryImageVersion.StorageProfile.Source == null) { - galleryImageVersion.StorageProfile.Source = new GalleryArtifactVersionSource(); + galleryImageVersion.StorageProfile.Source = new GalleryArtifactVersionFullSource(); } galleryImageVersion.StorageProfile.Source.Id = this.SourceImageId; diff --git a/src/Network/Network.Test/Network.Test.csproj b/src/Network/Network.Test/Network.Test.csproj index a94fd4e15354..a7b06590946d 100644 --- a/src/Network/Network.Test/Network.Test.csproj +++ b/src/Network/Network.Test/Network.Test.csproj @@ -18,7 +18,7 @@ - + diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/RecoveryServices.Backup.Test.csproj b/src/RecoveryServices/RecoveryServices.Backup.Test/RecoveryServices.Backup.Test.csproj index 09afde89cc2e..fa663867ee65 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/RecoveryServices.Backup.Test.csproj +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/RecoveryServices.Backup.Test.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/RecoveryServices.SiteRecovery.Test.csproj b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/RecoveryServices.SiteRecovery.Test.csproj index a522fd00022f..169ea6f7e348 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/RecoveryServices.SiteRecovery.Test.csproj +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/RecoveryServices.SiteRecovery.Test.csproj @@ -13,7 +13,7 @@ - + diff --git a/src/Security/Security.Test/Security.Test.csproj b/src/Security/Security.Test/Security.Test.csproj index a0372cac24b1..3681ab4c1082 100644 --- a/src/Security/Security.Test/Security.Test.csproj +++ b/src/Security/Security.Test/Security.Test.csproj @@ -42,7 +42,7 @@ Always - + \ No newline at end of file diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/SqlVirtualMachine.Test.csproj b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SqlVirtualMachine.Test.csproj index 79838e13c959..4d24aa8f994f 100644 --- a/src/SqlVirtualMachine/SqlVirtualMachine.Test/SqlVirtualMachine.Test.csproj +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SqlVirtualMachine.Test.csproj @@ -16,7 +16,7 @@ - + From f3da35e9e49895e139d05badc6ed489923e270d3 Mon Sep 17 00:00:00 2001 From: Adam Sandor Date: Thu, 5 Jan 2023 17:24:28 -0500 Subject: [PATCH 2/3] changelog --- src/Compute/Compute/ChangeLog.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index 8e01caacf902..bf29ee2af98b 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -21,6 +21,8 @@ --> ## Upcoming Release * Removed the image `Win2008R2SP1` from the list of available images and documentation. This image is no longer available on the backend so the client tools need to sync to that change. +* Updated Compute PS to use the new .Net SDK version 59.0.0. This includes an approved breaking change for a non-functional feature. + - The type of the property `Source` of type `Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage`, `Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage`, and `Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile` has changed from `Microsoft.Azure.Management.Compute.Models.GalleryArtifactVersionSource` to `Microsoft.Azure.Management.Compute.Models.GalleryDiskImageSource`. ## Version 5.2.0 * Fixed issue found for `Set-AzVmssVMRunCommand` [#19985] From 56f283cbe31db539a53c8260fa37213ff1ec1b8d Mon Sep 17 00:00:00 2001 From: Adam Sandor Date: Fri, 27 Jan 2023 15:58:51 -0500 Subject: [PATCH 3/3] Update ChangeLog.md --- src/Compute/Compute/ChangeLog.md | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index 9c1b55017de4..8e05524b2bfc 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -23,7 +23,6 @@ * Added `ConsistencyMode` parameter to `New-AzRestorePoint`. * Updated the storage account type value in several locations from the outdated `StandardLRS` to the current `Standard_LRS`. * Filled in missing parameter descriptions across multiple parameters and improved some existing parameter descriptions. -* Added `ConsistencyMode` parameter to `New-AzRestorePoint` * Updated Compute PS to use the new .Net SDK version 59.0.0. This includes an approved breaking change for a non-functional feature. - The type of the property `Source` of type `Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage`, `Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage`, and `Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile` has changed from `Microsoft.Azure.Management.Compute.Models.GalleryArtifactVersionSource` to `Microsoft.Azure.Management.Compute.Models.GalleryDiskImageSource`.