Skip to content

Commit 36b5d8b

Browse files
committed
Add breaking change description for Export-AzDataLakeStoreItem and Import-AzDataLakeStoreItem
1 parent a29269d commit 36b5d8b

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

src/DataLakeStore/DataLakeStore/ChangeLog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21-
Added option of Byte encoding for New-AzDataLakeStoreItem, Add-AzDAtaLakeStoreItemContent, Get-AzDAtaLakeStoreItemContent
21+
* Added option of Byte encoding for New-AzDataLakeStoreItem, Add-AzDAtaLakeStoreItemContent, Get-AzDAtaLakeStoreItemContent
22+
* Add breaking change description for Export-AzDataLakeStoreItem and Import-AzDataLakeStoreItem
2223

2324
## Version 1.2.7
2425
* Added reference to System.Buffers explicitly in csproj and psd1.

src/DataLakeStore/DataLakeStore/DataPlaneCommands/ExportAzureRmDataLakeStoreItem.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using System;
16-
using Microsoft.Azure.Commands.DataLakeStore.Properties;
15+
1716
using Microsoft.Azure.Commands.DataLakeStore.Models;
1817
using Microsoft.Rest.Azure;
1918
using System.Management.Automation;
2019
using Microsoft.Azure.DataLake.Store;
20+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2121

2222
namespace Microsoft.Azure.Commands.DataLakeStore
2323
{
24+
[GenericBreakingChange("For store side export failures, Export-AzDataLakeStoreItem will throw exception instead of printing message on screen", "2.0.0")]
2425
[Cmdlet("Export", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataLakeStoreItem", SupportsShouldProcess = true, DefaultParameterSetName = BaseParameterSetName), OutputType(typeof(string))]
2526
[Alias("Export-AdlStoreItem")]
2627
public class ExportAzureDataLakeStoreItem : DataLakeStoreFileSystemCmdletBase

src/DataLakeStore/DataLakeStore/DataPlaneCommands/ImportAzureRmDataLakeStoreItem.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using System;
1615
using Microsoft.Azure.Commands.DataLakeStore.Models;
1716
using Microsoft.Azure.Commands.DataLakeStore.Properties;
1817
using System.Management.Automation;
1918
using Microsoft.Azure.DataLake.Store;
2019
using Microsoft.Rest.Azure;
20+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2121

2222
namespace Microsoft.Azure.Commands.DataLakeStore
2323
{
24+
[GenericBreakingChange("For store side import failures, Import-AzDataLakeStoreItem will throw exception instead of printing message on screen", "2.0.0")]
2425
[Cmdlet("Import", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataLakeStoreItem", SupportsShouldProcess = true, DefaultParameterSetName = BaseParameterSetName), OutputType(typeof(string))]
2526
[Alias("Import-AdlStoreItem")]
2627
public class ImportAzureDataLakeStoreItem : DataLakeStoreFileSystemCmdletBase

0 commit comments

Comments
 (0)