Skip to content

Commit 92e624b

Browse files
authored
[Storage] [DataMovement] Preparing for DataMovement release; Added GenerateApiListing tag (Azure#48154)
* Preparing for DataMovement release; Added GenerateApiListing tag * WIP - change project ref to datamovement base to package ref * Revert package to project for base DMLib reference * Update README to remove prerelease status * Remove prelease off of Azure.Storage.DataMovement.Files.Shares README
1 parent 9e940f4 commit 92e624b

File tree

9 files changed

+22
-45
lines changed

9 files changed

+22
-45
lines changed

sdk/storage/Azure.Storage.DataMovement.Blobs/CHANGELOG.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# Release History
22

3-
## 12.0.0-beta.7 (Unreleased)
4-
5-
### Features Added
3+
## 12.0.0 (2025-02-11)
64

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

27-
### Bugs Fixed
28-
29-
### Other Changes
30-
3125
## 12.0.0-beta.6 (2024-10-14)
3226

3327
### Breaking Changes

sdk/storage/Azure.Storage.DataMovement.Blobs/README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
# Azure Storage Data Movement Blobs client library for .NET
22

3-
## Project Status: Beta
4-
5-
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.
6-
7-
---
8-
93
Azure Storage is a Microsoft-managed service providing cloud storage that is
104
highly available, secure, durable, scalable, and redundant.
115

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

2721
```dotnetcli
28-
dotnet add package Azure.Storage.DataMovement --prerelease
29-
dotnet add package Azure.Storage.DataMovement.Blobs --prerelease
22+
dotnet add package Azure.Storage.DataMovement
23+
dotnet add package Azure.Storage.DataMovement.Blobs
3024
```
3125

3226
### Prerequisites
@@ -340,6 +334,8 @@ await transfer.WaitForCompletionAsync();
340334

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

337+
See [Known Issues](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.DataMovement/KnownIssues.md) for detailed information.
338+
343339
## Next steps
344340

345341
Get started with our [Share Files Samples][share_samples].

sdk/storage/Azure.Storage.DataMovement.Blobs/src/Azure.Storage.DataMovement.Blobs.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>$(RequiredTargetFrameworks);net6.0</TargetFrameworks>
4+
<GenerateAPIListing>true</GenerateAPIListing>
45
</PropertyGroup>
56
<PropertyGroup>
67
<AssemblyTitle>Microsoft Azure.Storage.DataMovement.Blobs client library</AssemblyTitle>
7-
<Version>12.0.0-beta.7</Version>
8+
<Version>12.0.0</Version>
89
<DefineConstants>BlobDataMovementSDK;$(DefineConstants)</DefineConstants>
910
<PackageTags>Microsoft Azure Storage DataMovement Blobs AzureStorage BlobStorage azureofficial</PackageTags>
1011
<Description>

sdk/storage/Azure.Storage.DataMovement.Files.Shares/CHANGELOG.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# Release History
22

3-
## 12.0.0-beta.4 (Unreleased)
4-
5-
### Features Added
3+
## 12.0.0 (2025-02-11)
64

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

36-
### Other Changes
37-
3834
## 12.0.0-beta.3 (2024-10-14)
3935

4036
### Breaking Changes

sdk/storage/Azure.Storage.DataMovement.Files.Shares/README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
# Azure Storage Data Movement File Shares client library for .NET
22

3-
## Project Status: Beta
4-
5-
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.
6-
7-
---
8-
93
Azure Storage is a Microsoft-managed service providing cloud storage that is
104
highly available, secure, durable, scalable, and redundant. Azure Storage
115
includes Azure Blobs (objects), Azure Data Lake Storage Gen2, Azure Files,
@@ -27,8 +21,8 @@ Install the Azure Storage client library for .NET you'd like to use with
2721
[NuGet][nuget] and the `Azure.Storage.DataMovement.Files.Shares` client library will be included:
2822

2923
```dotnetcli
30-
dotnet add package Azure.Storage.DataMovement --prerelease
31-
dotnet add package Azure.Storage.DataMovement.Files.Shares --prerelease
24+
dotnet add package Azure.Storage.DataMovement
25+
dotnet add package Azure.Storage.DataMovement.Files.Shares
3226
```
3327

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

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

200+
See [Known Issues](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.DataMovement/KnownIssues.md) for detailed information.
201+
206202
## Next steps
207203

208204
Get started with our [Blob DataMovement samples][blob_samples].

sdk/storage/Azure.Storage.DataMovement.Files.Shares/src/Azure.Storage.DataMovement.Files.Shares.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>$(RequiredTargetFrameworks);net6.0</TargetFrameworks>
4+
<GenerateAPIListing>true</GenerateAPIListing>
45
<IncludeGeneratorSharedCode>true</IncludeGeneratorSharedCode>
56
</PropertyGroup>
67
<PropertyGroup>
78
<AssemblyTitle>Microsoft Azure.Storage.DataMovement.Files.Shares client library</AssemblyTitle>
8-
<Version>12.0.0-beta.4</Version>
9+
<Version>12.0.0</Version>
910
<DefineConstants>ShareDataMovementSDK;$(DefineConstants)</DefineConstants>
1011
<PackageTags>Microsoft Azure Storage DataMovement Files AzureStorage AzureFiles azureofficial</PackageTags>
1112
<Description>

sdk/storage/Azure.Storage.DataMovement/CHANGELOG.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# Release History
22

3-
## 12.0.0-beta.7 (Unreleased)
4-
5-
### Features Added
3+
## 12.0.0 (2025-02-11)
64

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

47-
### Other Changes
48-
4945
## 12.0.0-beta.6 (2024-10-14)
5046

5147
### Features Added

sdk/storage/Azure.Storage.DataMovement/README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
# Azure Storage Data Movement Common client library for .NET
22

3-
## Project Status: Beta
4-
5-
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.
6-
7-
---
8-
93
Azure Storage is a Microsoft-managed service providing cloud storage that is
104
highly available, secure, durable, scalable, and redundant.
115

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

2620
```dotnetcli
27-
dotnet add package Azure.Storage.DataMovement --prerelease
21+
dotnet add package Azure.Storage.DataMovement
2822
```
2923

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

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

131+
See [Known Issues](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.DataMovement/KnownIssues.md) for detailed information.
132+
137133
## Next steps
138134

139135
Get started with our [Blob DataMovement samples][blob_samples].

sdk/storage/Azure.Storage.DataMovement/src/Azure.Storage.DataMovement.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>$(RequiredTargetFrameworks);net6.0</TargetFrameworks>
4+
<GenerateAPIListing>true</GenerateAPIListing>
45
</PropertyGroup>
56
<PropertyGroup>
67
<AssemblyTitle>Microsoft Azure.Storage.DataMovement client library</AssemblyTitle>
7-
<Version>12.0.0-beta.7</Version>
8+
<Version>12.0.0</Version>
89
<DefineConstants>DataMovementSDK;$(DefineConstants)</DefineConstants>
910
<PackageTags>Microsoft Azure Storage DataMovement AzureStorage azureofficial</PackageTags>
1011
<Description>

0 commit comments

Comments
 (0)