Skip to content

Commit

Permalink
Updating dependencies to the latest for EventHubs and ServiceBus (#2657)
Browse files Browse the repository at this point in the history
  • Loading branch information
surgupta-msft authored Aug 9, 2024
1 parent 3e998f5 commit 21ce5a7
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
7 changes: 3 additions & 4 deletions extensions/Worker.Extensions.EventHubs/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
- My change description (#PR/#issue)
-->

### Microsoft.Azure.Functions.Worker.Extensions.EventHubs 6.3.3
### Microsoft.Azure.Functions.Worker.Extensions.EventHubs 6.3.5

- Updated `Microsoft.Azure.WebJobs.Extensions.EventHubs` reference to 6.3.3
- Updated `Microsoft.Extensions.Azure` dependency to 1.7.4
- Updated `Azure.Messaging.EventHubs` dependency to 5.11.4
- Updated `Microsoft.Azure.WebJobs.Extensions.EventHubs` reference to 6.3.5
- Updated `Azure.Messaging.EventHubs` to 5.11.5
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.EventHubs", "6.3.3")]
[assembly: ExtensionInformation("Microsoft.Azure.WebJobs.Extensions.EventHubs", "6.3.5")]
[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 Event Hubs extensions for .NET isolated functions</Description>

<!--Version information-->
<VersionPrefix>6.3.3</VersionPrefix>
<VersionPrefix>6.3.5</VersionPrefix>

</PropertyGroup>

Expand All @@ -19,7 +19,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Azure" Version="1.7.4" />
<PackageReference Include="Azure.Messaging.EventHubs" Version="5.11.4" />
<PackageReference Include="Azure.Messaging.EventHubs" Version="5.11.5" />
</ItemGroup>

<ItemGroup>
Expand Down
5 changes: 3 additions & 2 deletions extensions/Worker.Extensions.ServiceBus/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- My change description (#PR/#issue)
-->

### Microsoft.Azure.Functions.Worker.Extensions.ServiceBus 5.20.1
### Microsoft.Azure.Functions.Worker.Extensions.ServiceBus 5.21.0

- Updated `Microsoft.Azure.WebJobs.Extensions.ServiceBus` reference to 5.16.3
- Updated `Microsoft.Azure.WebJobs.Extensions.ServiceBus` reference to 5.16.4
- Updated `Azure.Messaging.ServiceBus` to 7.18.1
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.ServiceBus", "5.16.3")]
[assembly: ExtensionInformation("Microsoft.Azure.WebJobs.Extensions.ServiceBus", "5.16.4")]
[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 Service Bus extensions for .NET isolated functions</Description>

<!--Version information-->
<VersionPrefix>5.20.1</VersionPrefix>
<VersionPrefix>5.21.0</VersionPrefix>

<!--Temporarily opting out of documentation. Pending documentation-->
<GenerateDocumentationFile>false</GenerateDocumentationFile>
Expand All @@ -16,7 +16,7 @@

<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.11.4" />
<PackageReference Include="Azure.Messaging.ServiceBus" Version="7.17.5" />
<PackageReference Include="Azure.Messaging.ServiceBus" Version="7.18.1" />
<PackageReference Include="Microsoft.Extensions.Azure" Version="1.7.4" />
<PackageReference Include="Google.Protobuf" Version="3.27.1" />
<PackageReference Include="Grpc.Tools" Version="2.64.0" PrivateAssets="All" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -985,7 +985,7 @@ public void CardinalityManyFunctions(string functionName, string entryPoint, boo
b => ValidateTrigger(b, cardinalityMany));

AssertDictionary(extensions, new Dictionary<string, string>(){
{ "Microsoft.Azure.WebJobs.Extensions.EventHubs", "6.3.3" }
{ "Microsoft.Azure.WebJobs.Extensions.EventHubs", "6.3.5" }
});

void ValidateTrigger(ExpandoObject b, bool many)
Expand Down Expand Up @@ -1212,7 +1212,7 @@ public void EventHubs_SDKTypeBindings()

AssertDictionary(extensions, new Dictionary<string, string>
{
{ "Microsoft.Azure.WebJobs.Extensions.EventHubs", "6.3.3" },
{ "Microsoft.Azure.WebJobs.Extensions.EventHubs", "6.3.5" },
});

var eventHubTriggerFunction = functions.Single(p => p.Name == nameof(SDKTypeBindings_EventHubs.EventHubTriggerFunction));
Expand Down
2 changes: 1 addition & 1 deletion test/Sdk.Generator.Tests/Sdk.Generator.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Azure.Messaging.ServiceBus" Version="7.17.5" />
<PackageReference Include="Azure.Messaging.ServiceBus" Version="7.18.1" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.SourceGenerators.Testing.XUnit" Version="1.1.2" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.8.0" PrivateAssets="all" />
Expand Down

0 comments on commit 21ce5a7

Please sign in to comment.