Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions sdk/storage/Azure.Storage.DataMovement.Blobs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# Release History

## 12.0.0-beta.7 (Unreleased)

### Features Added
## 12.0.0 (2025-02-11)

### Breaking Changes
- Changed `BlobStorageResourceContainerOptions.BlobType` type from `DataTransferProperty<BlobType>` to `BlobType`
Expand All @@ -24,10 +22,6 @@
- Changed `FromBlob` and `FromContainer` to async, returning a `ValueTask`, and renamed to `FromBlobAsync` and `FromContainerAsync` respectively.
- Changed `FromClient` methods to `static` methods.

### Bugs Fixed

### Other Changes

## 12.0.0-beta.6 (2024-10-14)

### Breaking Changes
Expand Down
12 changes: 4 additions & 8 deletions sdk/storage/Azure.Storage.DataMovement.Blobs/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
# Azure Storage Data Movement Blobs client library for .NET

## Project Status: Beta

This product is in beta. Some features will be missing or have significant bugs. Please see [Known Issues](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.DataMovement/KnownIssues.md) for detailed information.

---

Azure Storage is a Microsoft-managed service providing cloud storage that is
highly available, secure, durable, scalable, and redundant.

Expand All @@ -25,8 +19,8 @@ Install the Azure Storage client library for .NET you'd like to use with
[NuGet][nuget] and the `Azure.Storage.DataMovement.Blobs` client library will be included:

```dotnetcli
dotnet add package Azure.Storage.DataMovement --prerelease
dotnet add package Azure.Storage.DataMovement.Blobs --prerelease
dotnet add package Azure.Storage.DataMovement
dotnet add package Azure.Storage.DataMovement.Blobs
```

### Prerequisites
Expand Down Expand Up @@ -340,6 +334,8 @@ await transfer.WaitForCompletionAsync();

See [Handling Failed Transfers](#handling-failed-transfers) and [Enabling Logging](https://learn.microsoft.com/dotnet/azure/sdk/logging) to assist with any troubleshooting.

See [Known Issues](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.DataMovement/KnownIssues.md) for detailed information.

## Next steps

Get started with our [Share Files Samples][share_samples].
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(RequiredTargetFrameworks);net6.0</TargetFrameworks>
<GenerateAPIListing>true</GenerateAPIListing>
</PropertyGroup>
<PropertyGroup>
<AssemblyTitle>Microsoft Azure.Storage.DataMovement.Blobs client library</AssemblyTitle>
<Version>12.0.0-beta.7</Version>
<Version>12.0.0</Version>
<DefineConstants>BlobDataMovementSDK;$(DefineConstants)</DefineConstants>
<PackageTags>Microsoft Azure Storage DataMovement Blobs AzureStorage BlobStorage azureofficial</PackageTags>
<Description>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# Release History

## 12.0.0-beta.4 (Unreleased)

### Features Added
## 12.0.0 (2025-02-11)

### Breaking Changes
- Changed `ShareFileStorangeResourceOptions.FilePermissions` from `DataTransferProperty` to `bool?`
Expand Down Expand Up @@ -33,8 +31,6 @@
### Bugs Fixed
- Fixed File Attributes with ReadOnly does not transfer / copy correctly bug #2167

### Other Changes

## 12.0.0-beta.3 (2024-10-14)

### Breaking Changes
Expand Down
12 changes: 4 additions & 8 deletions sdk/storage/Azure.Storage.DataMovement.Files.Shares/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
# Azure Storage Data Movement File Shares client library for .NET

## Project Status: Beta

This product is in beta. Some features will be missing or have significant bugs. Please see [Known Issues](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.DataMovement/KnownIssues.md) for detailed information.

---

Azure Storage is a Microsoft-managed service providing cloud storage that is
highly available, secure, durable, scalable, and redundant. Azure Storage
includes Azure Blobs (objects), Azure Data Lake Storage Gen2, Azure Files,
Expand All @@ -27,8 +21,8 @@ Install the Azure Storage client library for .NET you'd like to use with
[NuGet][nuget] and the `Azure.Storage.DataMovement.Files.Shares` client library will be included:

```dotnetcli
dotnet add package Azure.Storage.DataMovement --prerelease
dotnet add package Azure.Storage.DataMovement.Files.Shares --prerelease
dotnet add package Azure.Storage.DataMovement
dotnet add package Azure.Storage.DataMovement.Files.Shares
```

### Prerequisites
Expand Down Expand Up @@ -203,6 +197,8 @@ For more information regarding pause, resume, and/or checkpointing, see [Pause a

See [Handling Failed Transfers](#handling-failed-transfers) and [Enabling Logging](https://learn.microsoft.com/dotnet/azure/sdk/logging) to assist with any troubleshooting.

See [Known Issues](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.DataMovement/KnownIssues.md) for detailed information.

## Next steps

Get started with our [Blob DataMovement samples][blob_samples].
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(RequiredTargetFrameworks);net6.0</TargetFrameworks>
<GenerateAPIListing>true</GenerateAPIListing>
<IncludeGeneratorSharedCode>true</IncludeGeneratorSharedCode>
</PropertyGroup>
<PropertyGroup>
<AssemblyTitle>Microsoft Azure.Storage.DataMovement.Files.Shares client library</AssemblyTitle>
<Version>12.0.0-beta.4</Version>
<Version>12.0.0</Version>
<DefineConstants>ShareDataMovementSDK;$(DefineConstants)</DefineConstants>
<PackageTags>Microsoft Azure Storage DataMovement Files AzureStorage AzureFiles azureofficial</PackageTags>
<Description>
Expand Down
6 changes: 1 addition & 5 deletions sdk/storage/Azure.Storage.DataMovement/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# Release History

## 12.0.0-beta.7 (Unreleased)

### Features Added
## 12.0.0 (2025-02-11)

### Breaking Changes
- Removed `DataTransferProperty` and `DataTransferProperty<T>`
Expand Down Expand Up @@ -44,8 +42,6 @@
### Bugs Fixed
- Fixed bug where adding multiple transfers in parallel could cause a collision (`InvalidOperationException`) in the data transfers stored within the `TransferManager`.

### Other Changes

## 12.0.0-beta.6 (2024-10-14)

### Features Added
Expand Down
10 changes: 3 additions & 7 deletions sdk/storage/Azure.Storage.DataMovement/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
# Azure Storage Data Movement Common client library for .NET

## Project Status: Beta

This product is in beta. Some features will be missing or have significant bugs. Please see [Known Issues](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.DataMovement/KnownIssues.md) for detailed information.

---

Azure Storage is a Microsoft-managed service providing cloud storage that is
highly available, secure, durable, scalable, and redundant.

Expand All @@ -24,7 +18,7 @@ Install the Azure Storage client library for .NET you'd like to use with
[NuGet][nuget] and the `Azure.Storage.DataMovement` client library will be included:

```dotnetcli
dotnet add package Azure.Storage.DataMovement --prerelease
dotnet add package Azure.Storage.DataMovement
```

### Prerequisites
Expand Down Expand Up @@ -134,6 +128,8 @@ StorageResource directoryResource = files.FromDirectory("C:/path/to/dir");

See [Handling Failed Transfers](#handling-failed-transfers) and [Enabling Logging](https://learn.microsoft.com/dotnet/azure/sdk/logging) to assist with any troubleshooting.

See [Known Issues](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.DataMovement/KnownIssues.md) for detailed information.

## Next steps

Get started with our [Blob DataMovement samples][blob_samples].
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(RequiredTargetFrameworks);net6.0</TargetFrameworks>
<GenerateAPIListing>true</GenerateAPIListing>
</PropertyGroup>
<PropertyGroup>
<AssemblyTitle>Microsoft Azure.Storage.DataMovement client library</AssemblyTitle>
<Version>12.0.0-beta.7</Version>
<Version>12.0.0</Version>
<DefineConstants>DataMovementSDK;$(DefineConstants)</DefineConstants>
<PackageTags>Microsoft Azure Storage DataMovement AzureStorage azureofficial</PackageTags>
<Description>
Expand Down
Loading