Skip to content

Commit

Permalink
Update web jobs version (#2618)
Browse files Browse the repository at this point in the history
  • Loading branch information
aishwaryabh authored Jul 19, 2024
1 parent 4b989b3 commit c5b29f3
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Runtime.CompilerServices;
using Microsoft.Azure.Functions.Worker.Extensions.Abstractions;

[assembly: ExtensionInformation("Microsoft.Azure.WebJobs.Extensions.Storage.Blobs", "5.3.0")]
[assembly: ExtensionInformation("Microsoft.Azure.WebJobs.Extensions.Storage.Blobs", "5.3.1")]
[assembly: InternalsVisibleTo("Microsoft.Azure.Functions.Worker.Extensions.Tests, PublicKey=00240000048000009400000006020000002400005253413100040000010001005148be37ac1d9f58bd40a2e472c9d380d635b6048278f7d47480b08c928858f0f7fe17a6e4ce98da0e7a7f0b8c308aecd9e9b02d7e9680a5b5b75ac7773cec096fbbc64aebd429e77cb5f89a569a79b28e9c76426783f624b6b70327eb37341eb498a2c3918af97c4860db6cdca4732787150841e395a29cfacb959c1fd971c1")]
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c547cac37abd99c8db225ef2f6c8a3602f3b3606cc9891605d02baa56104f4cfc0734aa39b93bf7852f7d9266654753cc297e7d2edfe0bac1cdcf9f717241550e0a7b191195b7667bb4f64bcb8e2121380fd1d9d46ad2d92d2d15605093924cceaf74c4861eff62abf69b9291ed0a340e113be11e6a7d3113e92484cf7045cc7")]

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Description>Azure Blob Storage extensions for .NET isolated functions</Description>

<!--Version information-->
<VersionPrefix>6.4.0</VersionPrefix>
<VersionPrefix>6.5.0</VersionPrefix>

<!--Temporarily opting out of documentation. Pending documentation-->
<GenerateDocumentationFile>false</GenerateDocumentationFile>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
using System.Runtime.CompilerServices;
using Microsoft.Azure.Functions.Worker.Extensions.Abstractions;

[assembly: ExtensionInformation("Microsoft.Azure.WebJobs.Extensions.Storage.Queues", "5.3.0")]
[assembly: ExtensionInformation("Microsoft.Azure.WebJobs.Extensions.Storage.Queues", "5.3.1")]
[assembly: InternalsVisibleTo("Microsoft.Azure.Functions.Worker.Extensions.Tests, PublicKey=00240000048000009400000006020000002400005253413100040000010001005148be37ac1d9f58bd40a2e472c9d380d635b6048278f7d47480b08c928858f0f7fe17a6e4ce98da0e7a7f0b8c308aecd9e9b02d7e9680a5b5b75ac7773cec096fbbc64aebd429e77cb5f89a569a79b28e9c76426783f624b6b70327eb37341eb498a2c3918af97c4860db6cdca4732787150841e395a29cfacb959c1fd971c1")]
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Description>Azure Queue Storage extensions for .NET isolated functions</Description>

<!--Version information-->
<VersionPrefix>5.4.0</VersionPrefix>
<VersionPrefix>5.5.0</VersionPrefix>

<!--Temporarily opting out of documentation. Pending documentation-->
<GenerateDocumentationFile>false</GenerateDocumentationFile>
Expand Down
17 changes: 7 additions & 10 deletions extensions/Worker.Extensions.Storage/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,15 @@
- My change description (#PR/#issue)
-->

### Microsoft.Azure.Functions.Worker.Extensions.Storage 6.4.0
### Microsoft.Azure.Functions.Worker.Extensions.Storage 6.5.0

- Updated `Microsoft.Azure.Functions.Worker.Extensions.Storage.Blobs` to 6.4.0
- Updated `Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues` to 5.4.0
- Updated `Microsoft.Azure.Functions.Worker.Extensions.Storage.Blobs` to 6.5.0
- Updated `Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues` to 5.5.0

### Microsoft.Azure.Functions.Worker.Extensions.Storage.Blobs 6.4.0
### Microsoft.Azure.Functions.Worker.Extensions.Storage.Blobs 6.5.0

- Updated `Microsoft.Azure.WebJobs.Extensions.Storage.Blobs` host extension to 5.3.0
- Updated `Azure.Storage.Blobs` to `12.19.1`
- Updated `Microsoft.Extensions.Azure` to `1.7.3`
- Updated `Microsoft.Azure.WebJobs.Extensions.Storage.Blobs` host extension to 5.3.1

### Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues 5.4.0
### Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues 5.5.0

- Updated `Microsoft.Azure.WebJobs.Extensions.Storage.Queues` host extension to 5.3.0
- Updated `Azure.Storage.Queues` to `12.17.1`
- Updated `Microsoft.Azure.WebJobs.Extensions.Storage.Queues` host extension to 5.3.1
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,8 @@ public void StorageFunctions()

AssertDictionary(extensions, new Dictionary<string, string>
{
{ "Microsoft.Azure.WebJobs.Extensions.Storage.Queues", "5.3.0" },
{ "Microsoft.Azure.WebJobs.Extensions.Storage.Blobs", "5.3.0" },
{ "Microsoft.Azure.WebJobs.Extensions.Storage.Queues", "5.3.1" },
{ "Microsoft.Azure.WebJobs.Extensions.Storage.Blobs", "5.3.1" },
});

void ValidateQueueTrigger(ExpandoObject b)
Expand Down Expand Up @@ -315,7 +315,7 @@ public void BlobStorageFunctions_SDKTypeBindings()

AssertDictionary(extensions, new Dictionary<string, string>
{
{ "Microsoft.Azure.WebJobs.Extensions.Storage.Blobs", "5.3.0" },
{ "Microsoft.Azure.WebJobs.Extensions.Storage.Blobs", "5.3.1" },
});

var blobClientToBlobStringFunction = functions.Single(p => p.Name == "BlobClientToBlobStringFunction");
Expand Down Expand Up @@ -401,7 +401,7 @@ public void BlobCollectionFunctions_SDKTypeBindings()

AssertDictionary(extensions, new Dictionary<string, string>
{
{ "Microsoft.Azure.WebJobs.Extensions.Storage.Blobs", "5.3.0" },
{ "Microsoft.Azure.WebJobs.Extensions.Storage.Blobs", "5.3.1" },
});

var blobStringToBlobClientEnumerable = functions.Single(p => p.Name == "BlobStringToBlobClientEnumerable");
Expand Down Expand Up @@ -594,7 +594,7 @@ public void QueueStorageFunctions_SDKTypeBindings()

AssertDictionary(extensions, new Dictionary<string, string>
{
{ "Microsoft.Azure.WebJobs.Extensions.Storage.Queues", "5.3.0" },
{ "Microsoft.Azure.WebJobs.Extensions.Storage.Queues", "5.3.1" },
});

var queueMessageTriggerFunction = functions.Single(p => p.Name == nameof(SDKTypeBindings_Queue.QueueMessageTrigger));
Expand Down Expand Up @@ -652,8 +652,8 @@ public void MultiOutput_OnReturnType()

AssertDictionary(extensions, new Dictionary<string, string>
{
{ "Microsoft.Azure.WebJobs.Extensions.Storage.Queues", "5.3.0" },
{ "Microsoft.Azure.WebJobs.Extensions.Storage.Blobs", "5.3.0" },
{ "Microsoft.Azure.WebJobs.Extensions.Storage.Queues", "5.3.1" },
{ "Microsoft.Azure.WebJobs.Extensions.Storage.Blobs", "5.3.1" },
});

void ValidateQueueTrigger(ExpandoObject b)
Expand Down Expand Up @@ -718,7 +718,7 @@ public void MultiOutput_OnReturnType_WithHttp()

AssertDictionary(extensions, new Dictionary<string, string>
{
{ "Microsoft.Azure.WebJobs.Extensions.Storage.Queues", "5.3.0" }
{ "Microsoft.Azure.WebJobs.Extensions.Storage.Queues", "5.3.1" }
});

void ValidateHttpTrigger(ExpandoObject b)
Expand Down Expand Up @@ -778,7 +778,7 @@ public void MultiOutput_OnReturnType_WithHttp_AspNet()

AssertDictionary(extensions, new Dictionary<string, string>
{
{ "Microsoft.Azure.WebJobs.Extensions.Storage.Queues", "5.3.0" }
{ "Microsoft.Azure.WebJobs.Extensions.Storage.Queues", "5.3.1" }
});

void ValidateHttpTrigger(ExpandoObject b)
Expand Down Expand Up @@ -881,7 +881,7 @@ public void MultiReturn_MultiAttribute_IsValid()

AssertDictionary(extensions, new Dictionary<string, string>
{
{ "Microsoft.Azure.WebJobs.Extensions.Storage.Queues", "5.3.0" }
{ "Microsoft.Azure.WebJobs.Extensions.Storage.Queues", "5.3.1" }
});

void ValidateHttpTrigger(ExpandoObject b)
Expand Down
4 changes: 2 additions & 2 deletions test/SdkE2ETests/PublishTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ private async Task RunPublishTest(string outputDir, string additionalParams = nu
"Microsoft.Azure.WebJobs.Extensions.FunctionMetadataLoader.Startup, Microsoft.Azure.WebJobs.Extensions.FunctionMetadataLoader, Version=1.0.0.0, Culture=neutral, PublicKeyToken=551316b6919f366c",
@"./.azurefunctions/Microsoft.Azure.WebJobs.Extensions.FunctionMetadataLoader.dll"),
new Extension("AzureStorageBlobs",
"Microsoft.Azure.WebJobs.Extensions.Storage.AzureStorageBlobsWebJobsStartup, Microsoft.Azure.WebJobs.Extensions.Storage.Blobs, Version=5.3.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Microsoft.Azure.WebJobs.Extensions.Storage.AzureStorageBlobsWebJobsStartup, Microsoft.Azure.WebJobs.Extensions.Storage.Blobs, Version=5.3.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
@"./.azurefunctions/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs.dll"),
new Extension("AzureStorageQueues",
"Microsoft.Azure.WebJobs.Extensions.Storage.AzureStorageQueuesWebJobsStartup, Microsoft.Azure.WebJobs.Extensions.Storage.Queues, Version=5.3.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
"Microsoft.Azure.WebJobs.Extensions.Storage.AzureStorageQueuesWebJobsStartup, Microsoft.Azure.WebJobs.Extensions.Storage.Queues, Version=5.3.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8",
@"./.azurefunctions/Microsoft.Azure.WebJobs.Extensions.Storage.Queues.dll")
}
});
Expand Down

0 comments on commit c5b29f3

Please sign in to comment.