Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

Commit

Permalink
Upgraded to version 4.2.1 of Microsoft.Azure.ServiceBus dependency (#133
Browse files Browse the repository at this point in the history
)

* Upgraded to version 4.2.1 of Microsoft.Azure.ServiceBus dependency
* Added a release notes file
  • Loading branch information
sidkri committed Jan 22, 2021
1 parent c72b7e4 commit da43efe
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
### Release notes
<!-- Please add your release notes in the following format:
- My change description (#PR)
-->
#### Version 4.2.1
- Upgraded to version 4.2.1 of Microsoft.Azure.ServiceBus dependency (PR# 133)
- Bug fix in scaling related metrics gathering logic (PR# 121)

**Release sprint:** Sprint 94
[ [bugs](https://github.com/Azure/azure-functions-servicebus-extension/issues?q=is%3Aissue+milestone%3A%22Functions+Sprint+94%22+label%3Abug+is%3Aclosed) | [features](https://github.com/Azure/azure-functions-servicebus-extension/issues?q=is%3Aissue+milestone%3A%22Functions+Sprint+94%22+label%3Afeature+is%3Aclosed) ]
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<RootNamespace>Microsoft.Azure.WebJobs.ServiceBus</RootNamespace>
<PackageId>Microsoft.Azure.WebJobs.Extensions.ServiceBus</PackageId>
<Description>Microsoft Azure WebJobs SDK ServiceBus Extension</Description>
<Version>4.2.0</Version>
<Version>4.2.1</Version>
<CommitHash Condition="$(CommitHash) == ''">N/A</CommitHash>
<InformationalVersion>$(Version) Commit hash: $(CommitHash)</InformationalVersion>
<Authors>Microsoft</Authors>
Expand Down Expand Up @@ -38,7 +38,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Azure.ServiceBus" Version="4.2.0" />
<PackageReference Include="Microsoft.Azure.ServiceBus" Version="4.2.1" />
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.19" />
<PackageReference Include="Microsoft.Azure.WebJobs.Sources" Version="3.0.19" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta004">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Integration tests are implemented in the `EndToEndTests` and `SessionsEndToEndTe

All configuration is done via a json file called `appsettings.tests.json` which on windows should be located in the `%USERPROFILE%\.azurefunctions` folder (e.g. `C:\Users\user123\.azurefunctions`)

**Note:** *The specifics of the configuration will change when the validation code is modified so check the code for the latest configuration if the tests do not pass as this readme file may not have been updated with each code change.*
**Note:** *The specifics of the configuration may change when validation code is modified so check the code for the latest configuration settings if tests do not pass in case this readme file was not updated.*

Create the appropriate Azure resources if needed as explained below and create or update the `appsettings.tests.json` file in the location specified above by copying the configuration below and replacing all the `PLACEHOLDER` values

Expand All @@ -28,7 +28,7 @@ Create two service bus namespaces and configure their connection strings in `Con
2. In the namespace configured into `ConnectionStrings:ServiceBus`, create topics and subscriptions with the following names:
1. `core-test-topic1` with two subscriptions: `sub1` and `sub2`
2. `core-test-topic1-sessions` with one subscription: `sub1-sessions` (enable sessions in the subscription when creating)
2. In the namespace configured into `ConnectionStrings:ServiceBusSecondary`, create queues with the following names:
3. In the namespace configured into `ConnectionStrings:ServiceBusSecondary`, create a queue with the following name:
1. `core-test-queue1`

Change the message lock duration setting on all queues and subscriptions to 5 minutes to all for delays associated with stepping through code in debug mode.
Change the message lock duration setting on all queues and topic subscriptions to 5 minutes to allow for delays associated with stepping through code in debug mode.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Azure.ServiceBus" Version="4.2.0" />
<PackageReference Include="Microsoft.Azure.ServiceBus" Version="4.2.1" />
<PackageReference Include="Microsoft.Azure.WebJobs.Host.TestCommon" Version="3.0.19" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta004">
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit da43efe

Please sign in to comment.