Skip to content

Commit 11736d0

Browse files
authored
Preparing for Storage WebJobs Extension Release for Blobs (#38123)
* Preparing for Storage WebJobs Extension Release for Blobs * Updated changelogs to prepare for GA release * Updated package versions * Point Microsoft.Azure.WebJobs.Extensions.Storage to the released version of Queues
1 parent ce1d633 commit 11736d0

File tree

4 files changed

+10
-20
lines changed

4 files changed

+10
-20
lines changed

sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs/CHANGELOG.md

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

3-
## 5.2.0-beta.1 (Unreleased)
3+
## 5.2.0 (2023-08-10)
44

55
### Features Added
66
- Added support for `BlobsOptions.MaxDequeueCount`
77

8-
### Breaking Changes
9-
10-
### Bugs Fixed
11-
12-
### Other Changes
13-
148
## 5.1.3 (2023-06-26)
159
- Loosen parameter binding data parsing and validation to allow binding BlobContainerClient without blob name. (#37124)
1610

sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs/src/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
44
</PropertyGroup>
55
<PropertyGroup>
6-
<Version>5.2.0-beta.1</Version>
6+
<Version>5.2.0</Version>
77
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
88
<ApiCompatVersion>5.1.3</ApiCompatVersion>
99
<Description>This extension adds bindings for Storage</Description>

sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage/CHANGELOG.md

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

3-
## 5.2.0-beta.1 (Unreleased)
4-
5-
### Features Added
6-
7-
### Breaking Changes
8-
9-
### Bugs Fixed
10-
11-
### Other Changes
3+
## 5.2.0 (2023-08-10)
4+
Please refer to [`Microsoft.Azure.WebJobs.Extension.Storage.Blobs`](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs/CHANGELOG.md) and [`Microsoft.Azure.WebJobs.Extension.Storage.Queues`](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Queues/CHANGELOG.md) for detailed list of changes.
125

136
## 5.1.3 (2023-06-26)
147
Please refer to [`Microsoft.Azure.WebJobs.Extension.Storage.Blobs`](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs/CHANGELOG.md) and [`Microsoft.Azure.WebJobs.Extension.Storage.Queues`](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Queues/CHANGELOG.md) for detailed list of changes.

sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage/src/Microsoft.Azure.WebJobs.Extensions.Storage.csproj

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
44
</PropertyGroup>
55
<PropertyGroup>
6-
<Version>5.2.0-beta.1</Version>
6+
<Version>5.2.0</Version>
77
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
88
<ApiCompatVersion>5.1.3</ApiCompatVersion>
99
<RunApiCompat>false</RunApiCompat>
@@ -15,6 +15,9 @@
1515
</PropertyGroup>
1616
<ItemGroup>
1717
<ProjectReference Include="..\..\Microsoft.Azure.WebJobs.Extensions.Storage.Blobs\src\Microsoft.Azure.WebJobs.Extensions.Storage.Blobs.csproj" />
18-
<ProjectReference Include="..\..\Microsoft.Azure.WebJobs.Extensions.Storage.Queues\src\Microsoft.Azure.WebJobs.Extensions.Storage.Queues.csproj" />
18+
<!-- Remove pointing to the released package of Microsoft.Azure.WebJobs.Extensions.Storage.Queues and reenable pointing to the unreleased version after
19+
release the common package. https://github.com/Azure/azure-sdk-for-net/issues/38145 -->
20+
<!--<ProjectReference Include="..\..\Microsoft.Azure.WebJobs.Extensions.Storage.Queues\src\Microsoft.Azure.WebJobs.Extensions.Storage.Queues.csproj" /> -->
21+
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Storage.Queues" VersionOverride="5.1.3"/>
1922
</ItemGroup>
2023
</Project>

0 commit comments

Comments
 (0)