Skip to content

Commit f6b7256

Browse files
brettsammhoeger
authored andcommitted
updating to WebJobs 3.0.8 (#4352)
1 parent bb17928 commit f6b7256

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.3" />
5555
<PackageReference Include="Microsoft.Azure.AppService.Proxy.Client" Version="2.0.8100001-0126c21e" />
5656
<PackageReference Include="Microsoft.Azure.Services.AppAuthentication" Version="1.0.3" />
57-
<PackageReference Include="Microsoft.Azure.WebJobs.Host.Storage" Version="3.0.7" />
58-
<PackageReference Include="Microsoft.Azure.WebJobs.Logging" Version="3.0.7" />
57+
<PackageReference Include="Microsoft.Azure.WebJobs.Host.Storage" Version="3.0.8" />
58+
<PackageReference Include="Microsoft.Azure.WebJobs.Logging" Version="3.0.8" />
5959
<PackageReference Include="Microsoft.Azure.KeyVault" Version="3.0.3" />
6060
<PackageReference Include="Microsoft.Azure.WebSites.DataProtection" Version="2.1.88-alpha" />
6161
<PackageReference Include="System.Net.Primitives" Version="4.3.0" />

src/WebJobs.Script/WebJobs.Script.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@
4141
<PackageReference Include="Microsoft.Azure.Functions.JavaWorker" Version="1.3.1-SNAPSHOT" />
4242
<PackageReference Include="Microsoft.Azure.Functions.NodeJsWorker" Version="1.0.2" />
4343
<PackageReference Include="Microsoft.Azure.Functions.PowerShellWorker" Version="0.1.97-preview" />
44-
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.7" />
44+
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.8" />
4545
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="3.0.2" />
4646
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.0.2" />
47-
<PackageReference Include="Microsoft.Azure.WebJobs.Logging.ApplicationInsights" Version="3.0.7" />
47+
<PackageReference Include="Microsoft.Azure.WebJobs.Logging.ApplicationInsights" Version="3.0.8" />
4848
<PackageReference Include="Microsoft.Build" Version="15.8.166" />
4949
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="2.8.2" />
5050
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="2.1.0" />

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ private static void ValidateMetric(MetricTelemetry telemetry, string expectedInv
383383
Assert.Equal(23, telemetry.Max);
384384
Assert.Equal("100", telemetry.Properties[$"{LogConstants.CustomPropertyPrefix}MyCustomMetricProperty"]);
385385

386-
ValidateSdkVersion(telemetry);
386+
ValidateSdkVersion(telemetry, "f_");
387387
}
388388

389389
protected static void ValidateTrace(TraceTelemetry telemetry, string expectedMessageContains,
@@ -449,9 +449,9 @@ private static void AssertHasKey(IDictionary<string, string> dict, string keyNam
449449
}
450450
}
451451

452-
private static void ValidateSdkVersion(ITelemetry telemetry)
452+
private static void ValidateSdkVersion(ITelemetry telemetry, string prefix = null)
453453
{
454-
Assert.StartsWith("azurefunctions: ", telemetry.Context.GetInternalContext().SdkVersion);
454+
Assert.StartsWith($"{prefix}azurefunctions: ", telemetry.Context.GetInternalContext().SdkVersion);
455455
}
456456

457457
private static string GetInvocationId(ISupportProperties telemetry)

0 commit comments

Comments
 (0)