Skip to content

Commit 10d820d

Browse files
authored
STG 102 GA (Azure#59693)
1 parent eac67ac commit 10d820d

22 files changed

Lines changed: 103 additions & 64 deletions

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 12.26.0-beta.2 (Unreleased)
3+
## 12.27.0-beta.1 (Unreleased)
44

55
### Features Added
66

@@ -10,6 +10,11 @@
1010

1111
### Other Changes
1212

13+
## 12.26.0 (2026-06-04)
14+
15+
### Features Added
16+
- Includes all features from 12.26.0-beta.1
17+
1318
## 12.25.0 (2026-05-12)
1419

1520
### Features Added

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
</PropertyGroup>
66
<PropertyGroup>
77
<AssemblyTitle>Microsoft Azure.Storage.Blobs.Batch client library</AssemblyTitle>
8-
<Version>12.26.0-beta.2</Version>
8+
<Version>12.27.0-beta.1</Version>
99
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
10-
<ApiCompatVersion>12.24.0</ApiCompatVersion>
10+
<ApiCompatVersion>12.26.0</ApiCompatVersion>
1111
<DefineConstants>BlobSDK;$(DefineConstants)</DefineConstants>
1212
<PackageTags>Microsoft Azure Storage Blobs Batching;Batch blob;Batch operation;BlobBatchClient;BlobBatch;Microsoft;Azure;Blobs;Blob;Storage;StorageScalable;$(PackageCommonTags)</PackageTags>
1313
<Description>

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

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
11
# Release History
22

3-
## 12.0.0-preview.63 (Unreleased)
3+
## 12.0.0-preview.64 (Unreleased)
44

55
### Features Added
66

77
### Breaking Changes
88

99
### Bugs Fixed
10-
- Added validation for length-prefixed fields when parsing Avro responses to prevent excessive memory allocation from malformed or untrusted payloads.
1110

1211
### Other Changes
1312

13+
## 12.0.0-preview.63 (2026-06-04)
14+
15+
### Features Added
16+
- This release contains bug fixes to improve quality.
17+
18+
### Bugs Fixed
19+
- Added validation for length-prefixed fields when parsing Avro responses to prevent excessive memory allocation from malformed or untrusted payloads.
20+
1421
## 12.0.0-preview.62 (2026-05-12)
1522

1623
### Features Added

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
</PropertyGroup>
55
<PropertyGroup>
66
<AssemblyTitle>Microsoft Azure.Storage.Blobs.ChangeFeed client library</AssemblyTitle>
7-
<Version>12.0.0-preview.63</Version>
7+
<Version>12.0.0-preview.64</Version>
88
<DefineConstants>ChangeFeedSDK;$(DefineConstants)</DefineConstants>
99
<PackageTags>Microsoft Azure Change Feed;Microsoft;Azure;Storage;StorageScalable;$(PackageCommonTags)</PackageTags>
1010
<Description>

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

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,24 @@
11
# Release History
22

3-
## 12.29.0-beta.2 (Unreleased)
3+
## 12.30.0-beta.1 (Unreleased)
44

55
### Features Added
66

77
### Breaking Changes
88

99
### Bugs Fixed
10-
- Added validation for length-prefixed fields when parsing Blob Query responses to prevent excessive memory allocation from malformed or untrusted payloads.
1110

1211
### Other Changes
1312
- Improved performance of `DownloadToAsync` by buffering each range into memory concurrently instead of streaming one range at a time. This increases throughput but also increases memory consumption, as up to `MaximumConcurrency` ranges (each up to `MaximumTransferLength` in size) may be buffered simultaneously. Use `StorageTransferOptions.MaximumConcurrency` and `StorageTransferOptions.MaximumTransferLength` to control memory usage.
1413

14+
## 12.29.0 (2026-06-04)
15+
16+
### Features Added
17+
- Includes all features from 12.29.0-beta.1
18+
19+
### Bugs Fixed
20+
- Added validation for length-prefixed fields when parsing Blob Query responses to prevent excessive memory allocation from malformed or untrusted payloads.
21+
1522
## 12.28.0 (2026-05-12)
1623

1724
### Features Added

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
</PropertyGroup>
66
<PropertyGroup>
77
<AssemblyTitle>Microsoft Azure.Storage.Blobs client library</AssemblyTitle>
8-
<Version>12.29.0-beta.2</Version>
8+
<Version>12.30.0-beta.1</Version>
99
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
10-
<ApiCompatVersion>12.27.0</ApiCompatVersion>
10+
<ApiCompatVersion>12.29.0</ApiCompatVersion>
1111
<DefineConstants>BlobSDK;$(DefineConstants)</DefineConstants>
1212
<PackageTags>Microsoft Azure Storage Blobs;Microsoft;Azure;Blobs;Blob;Storage;StorageScalable;$(PackageCommonTags)</PackageTags>
1313
<DisableEnhancedAnalysis>true</DisableEnhancedAnalysis>

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 12.28.0-beta.2 (Unreleased)
3+
## 12.29.0-beta.1 (Unreleased)
44

55
### Features Added
66

@@ -10,6 +10,11 @@
1010

1111
### Other Changes
1212

13+
## 12.28.0 (2026-06-04)
14+
15+
### Features Added
16+
- This release contains bug fixes to improve quality.
17+
1318
## 12.27.0 (2026-05-12)
1419

1520
### Bugs Fixed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
</PropertyGroup>
55
<PropertyGroup>
66
<AssemblyTitle>Microsoft Azure.Storage.Common client library</AssemblyTitle>
7-
<Version>12.28.0-beta.2</Version>
7+
<Version>12.29.0-beta.1</Version>
88
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
9-
<ApiCompatVersion>12.26.0</ApiCompatVersion>
9+
<ApiCompatVersion>12.28.0</ApiCompatVersion>
1010
<DefineConstants>CommonSDK;$(DefineConstants)</DefineConstants>
1111
<PackageTags>Microsoft Azure Storage Common, Microsoft, Azure, StorageScalable, azureofficial</PackageTags>
1212
<Description>

sdk/storage/Azure.Storage.Files.DataLake/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 12.27.0-beta.2 (Unreleased)
3+
## 12.28.0-beta.1 (Unreleased)
44

55
### Features Added
66

@@ -10,6 +10,11 @@
1010

1111
### Other Changes
1212

13+
## 12.27.0 (2026-06-04)
14+
15+
### Features Added
16+
- Includes all features from 12.27.0-beta.1
17+
1318
## 12.26.0 (2026-05-12)
1419

1520
### Features Added

sdk/storage/Azure.Storage.Files.DataLake/api/Azure.Storage.Files.DataLake.net10.0.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1179,7 +1179,7 @@ public partial class PathSystemProperties
11791179
{
11801180
internal PathSystemProperties() { }
11811181
public long? ContentLength { get { throw null; } }
1182-
public System.DateTimeOffset? CreationTime { get { throw null; } }
1182+
public System.DateTimeOffset? CreatedOn { get { throw null; } }
11831183
public string EncryptionContext { get { throw null; } }
11841184
public string EncryptionKeySha256 { get { throw null; } }
11851185
public string EncryptionScope { get { throw null; } }
@@ -1188,7 +1188,7 @@ internal PathSystemProperties() { }
11881188
public string Group { get { throw null; } }
11891189
public bool? IsDirectory { get { throw null; } }
11901190
public bool? IsServerEncrypted { get { throw null; } }
1191-
public System.DateTimeOffset? LastModifiedTime { get { throw null; } }
1191+
public System.DateTimeOffset? LastModifiedOn { get { throw null; } }
11921192
public string Owner { get { throw null; } }
11931193
public Azure.Storage.Files.DataLake.Models.PathPermissions Permissions { get { throw null; } }
11941194
}

0 commit comments

Comments
 (0)