File tree Expand file tree Collapse file tree 6 files changed +23
-19
lines changed
Worker.Extensions.Storage.Blobs/src
Worker.Extensions.Storage.Queues/src
Worker.Extensions.Storage Expand file tree Collapse file tree 6 files changed +23
-19
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ private BlobBindingData GetBindingDataContent(ModelBindingData bindingData)
9393
9494 return bindingData . ContentType switch
9595 {
96- Constants . JsonContentType => bindingData . Content . ToObjectFromJson < BlobBindingData > ( ) ,
96+ Constants . JsonContentType => bindingData . Content . ToObjectFromJson < BlobBindingData > ( ) ! ,
9797 _ => throw new InvalidContentTypeException ( bindingData . ContentType , Constants . JsonContentType )
9898 } ;
9999 }
Original file line number Diff line number Diff line change 66 <Description >Azure Blob Storage extensions for .NET isolated functions</Description >
77
88 <!-- Version information-->
9- <VersionPrefix >6.6.1 </VersionPrefix >
9+ <VersionPrefix >6.7.0 </VersionPrefix >
1010
1111 <!-- Temporarily opting out of documentation. Pending documentation-->
1212 <GenerateDocumentationFile >false</GenerateDocumentationFile >
1919 </ItemGroup >
2020
2121 <ItemGroup >
22- <PackageReference Include =" Azure.Storage.Blobs" Version =" 12.19.1" />
23- <PackageReference Include =" Microsoft.Bcl.AsyncInterfaces" Version =" 5.0.0" />
24- <PackageReference Include =" Microsoft.Extensions.Azure" Version =" 1.7.4" />
25- <PackageReference Include =" Microsoft.Azure.Functions.Worker.Core" Version =" 1.19.0" />
22+ <PackageReference Include =" Azure.Storage.Blobs" Version =" 12.23.0" />
23+ <PackageReference Include =" Microsoft.Extensions.Azure" Version =" 1.10.0" />
24+ <PackageReference Include =" Microsoft.Azure.Functions.Worker.Core" Version =" 1.20.0" />
2625 </ItemGroup >
2726
2827 <ItemGroup >
2928 <SharedReference Include =" ..\..\Worker.Extensions.Shared\Worker.Extensions.Shared.csproj" />
3029 </ItemGroup >
3130
3231 <ItemGroup >
33- <WebJobsExtension Include =" Microsoft.Azure.WebJobs.Extensions.Storage.Blobs" Version =" 5.3.1 " />
32+ <WebJobsExtension Include =" Microsoft.Azure.WebJobs.Extensions.Storage.Blobs" Version =" 5.3.4 " />
3433 </ItemGroup >
3534
3635</Project >
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ private QueueMessage ExtractQueueMessage(ModelBindingData modelBindingData)
3838 throw new InvalidContentTypeException ( modelBindingData . ContentType , Constants . JsonContentType ) ;
3939 }
4040
41- return modelBindingData . Content . ToObjectFromJson < QueueMessage > ( _jsonOptions ) ;
41+ return modelBindingData . Content . ToObjectFromJson < QueueMessage > ( _jsonOptions ) ! ;
4242 }
4343 }
4444}
Original file line number Diff line number Diff line change 66 <Description >Azure Queue Storage extensions for .NET isolated functions</Description >
77
88 <!-- Version information-->
9- <VersionPrefix >5.5.1 </VersionPrefix >
9+ <VersionPrefix >5.5.2 </VersionPrefix >
1010
1111 <!-- Temporarily opting out of documentation. Pending documentation-->
1212 <GenerateDocumentationFile >false</GenerateDocumentationFile >
1919 </ItemGroup >
2020
2121 <ItemGroup >
22- <PackageReference Include =" Azure.Storage.Queues" Version =" 12.17.1 " />
23- <PackageReference Include =" Microsoft.Azure.Functions.Worker.Core" Version =" 1.19 .0" />
22+ <PackageReference Include =" Azure.Storage.Queues" Version =" 12.21.0 " />
23+ <PackageReference Include =" Microsoft.Azure.Functions.Worker.Core" Version =" 1.20 .0" />
2424 </ItemGroup >
2525
2626 <ItemGroup >
2727 <SharedReference Include =" ..\..\Worker.Extensions.Shared\Worker.Extensions.Shared.csproj" />
2828 </ItemGroup >
2929
3030 <ItemGroup >
31- <WebJobsExtension Include =" Microsoft.Azure.WebJobs.Extensions.Storage.Queues" Version =" 5.3.1 " />
31+ <WebJobsExtension Include =" Microsoft.Azure.WebJobs.Extensions.Storage.Queues" Version =" 5.3.4 " />
3232 </ItemGroup >
3333
3434</Project >
Original file line number Diff line number Diff line change 44- My change description (#PR/#issue)
55-->
66
7- ### Microsoft.Azure.Functions.Worker.Extensions.Storage < version >
7+ ### Microsoft.Azure.Functions.Worker.Extensions.Storage 6.7.0
88
9- - <entry >
9+ - Update ` Microsoft.Azure.Functions.Worker.Extensions.Storage.Blobs ` to 6.7.0
10+ - Update ` Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues ` to 5.5.2
1011
12+ ### Microsoft.Azure.Functions.Worker.Extensions.Storage.Blobs 6.7.0
1113
12- ### Microsoft.Azure.Functions.Worker.Extensions.Storage.Blobs <version >
14+ - Update WebJobs package ` Microsoft.Azure.WebJobs.Extensions.Storage.Blobs ` to 5.3.4
15+ - Removed ` Microsoft.Bcl.AsyncInterfaces ` as direct dependency
16+ - Update other dependencies to latest versions
1317
14- - <entry >
1518
16- ### Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues <version >
19+ ### Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues 5.5.2
20+
21+ - Update WebJobs package ` Microsoft.Azure.WebJobs.Extensions.Storage.Queues ` to 5.3.4
22+ - Update other dependencies to latest versions
1723
18- - <entry >
Original file line number Diff line number Diff line change 66 <Description >Azure Storage extensions for .NET isolated functions</Description >
77
88 <!-- Version information-->
9- <VersionPrefix >6.6.1 </VersionPrefix >
9+ <VersionPrefix >6.7.0 </VersionPrefix >
1010
1111 <!-- Temporarily opting out of documentation. Pending documentation-->
1212 <GenerateDocumentationFile >false</GenerateDocumentationFile >
You can’t perform that action at this time.
0 commit comments