Skip to content

Commit 38c0497

Browse files
committed
Upgrading WebJobs to 3.0.20 and disabling flaky test
1 parent bd8417a commit 38c0497

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

release_notes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
- My change description (#PR)
44
-->
55

6+
- Upgrade WebJobs to 3.0.20 ([Release Notes](https://github.com/Azure/azure-webjobs-sdk/releases/tag/v3.0.20))
7+
- Add "EventName" App Insights telemetry ([PR](https://github.com/Azure/azure-webjobs-sdk/pull/2544))
68
- Upgrade PowerShell Workers to 3.0.446 ([Release Notes](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v3.0.446)) and 3.0.452 ([Release Notes](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v3.0.452))
79
- Update Python Worker to 1.1.4([Release Note](https://github.com/Azure/azure-functions-python-worker/releases/tag/1.1.4))
810
- Update Python Library to 1.3.0([Release Note](https://github.com/Azure/azure-functions-python-library/releases/tag/1.3.0))

src/WebJobs.Script.WebHost/WebJobs.Script.WebHost.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
<PackageReference Include="Microsoft.Azure.Services.AppAuthentication" Version="1.0.3" />
6565
<PackageReference Include="Microsoft.Azure.Storage.File" Version="11.1.7" />
6666
<PackageReference Include="Microsoft.Azure.WebJobs.Host.Storage" Version="4.0.1" />
67-
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.19" />
67+
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.20" />
6868
<PackageReference Include="Microsoft.Azure.KeyVault" Version="3.0.3" />
6969
<PackageReference Include="Microsoft.Azure.WebJobs.Logging" Version="4.0.1" />
7070
<PackageReference Include="Microsoft.Azure.WebSites.DataProtection" Version="2.1.91-alpha" />

src/WebJobs.Script/WebJobs.Script.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@
4646
<PackageReference Include="Microsoft.Azure.Functions.NodeJsWorker" Version="2.0.5" />
4747
<PackageReference Include="Microsoft.Azure.Functions.PowerShellWorker.PS6" Version="3.0.446" />
4848
<PackageReference Include="Microsoft.Azure.Functions.PowerShellWorker.PS7" Version="3.0.452" />
49-
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.19" />
49+
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.20" />
5050
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="4.0.1" />
5151
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.0.8" />
52-
<PackageReference Include="Microsoft.Azure.WebJobs.Logging.ApplicationInsights" Version="3.0.18" />
52+
<PackageReference Include="Microsoft.Azure.WebJobs.Logging.ApplicationInsights" Version="3.0.20" />
5353
<PackageReference Include="Microsoft.Azure.WebJobs.Script.Abstractions" Version="1.0.0-preview" />
5454
<PackageReference Include="Microsoft.Build" Version="15.8.166" />
5555
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="3.3.1" />

test/WebJobs.Script.Tests.Integration/ApplicationInsights/ApplicationInsightsEndToEndTestsBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ private void ValidateException(ExceptionTelemetry telemetry, string expectedInvo
235235
ValidateTelemetry(telemetry, expectedInvocationId, expectedOperationName, expectedCategory, SeverityLevel.Error);
236236
}
237237

238-
[Fact]
238+
[Fact(Skip = "Disabled due to https://github.com/Azure/azure-functions-host/issues/6521")]
239239
public async Task Validate_HostLogs()
240240
{
241241
// Validate the host startup traces. Order by message string as the requests may come in

test/WebJobsStartupTests/WebJobsStartupTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</PropertyGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.19" />
23+
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.20" />
2424
<PackageReference Include="Microsoft.Net.Sdk.Functions" Version="3.0.*" />
2525
</ItemGroup>
2626

0 commit comments

Comments
 (0)