Skip to content

Commit 18a5cdb

Browse files
committed
modify change log
1 parent 85fbbf1 commit 18a5cdb

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/Synapse/Synapse/ChangeLog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
-->
2020

2121
## Upcoming Release
22-
* Updated `New-AzSynapseSparkPool` and `Update-AzSynapseSparkPool` to support for setting spark pool configuration artifact by `-SparkCongifuration`, parameter `-SparkConfigFilePath` is deprecated now
22+
* Added breaking change message for `-SparkConfigFilePath`. It will be deprecated around the middle of December.
23+
* Updated `New-AzSynapseSparkPool` and `Update-AzSynapseSparkPool` to support for setting spark pool configuration artifact by `-SparkCongifuration`. `-SparkCongifuration` is an alternative of parameter `-SparkConfigFilePath`.
2324

2425
## Version 2.1.0
2526
* Updated `Update-AzSynaspeWorkSpace` and `New-AzSynpaseWorkspace` to support for Workspace Encrytion Managed Identity setting

src/Synapse/Synapse/Commands/ManagementCommands/SparkPool/NewAzureSynapseSparkPool.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
using Microsoft.Azure.Commands.Synapse.Properties;
2121
using Microsoft.Azure.Management.Internal.Resources.Utilities.Models;
2222
using Microsoft.Azure.Management.Synapse.Models;
23+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2324
using Microsoft.WindowsAzure.Commands.Utilities.Common;
2425
using System.Collections;
2526
using System.IO;
@@ -125,6 +126,7 @@ public class NewAzureSynapseSparkPool : SynapseManagementCmdletBase
125126
[ValidateNotNullOrEmpty]
126127
public string SparkVersion { get; set; }
127128

129+
[CmdletParameterBreakingChange("SparkConfigFilePath", ReplaceMentCmdletParameterName = "SparkConfiguration")]
128130
[Parameter(ValueFromPipelineByPropertyName = false, Mandatory = false,
129131
HelpMessage = HelpMessages.SparkConfigPropertiesFilePath)]
130132
[ValidateNotNullOrEmpty]

0 commit comments

Comments
 (0)