Skip to content
This repository was archived by the owner on Jun 10, 2020. It is now read-only.

Commit 05e634b

Browse files
authored
2.7.1 Hotfix (#909)
* ApplicationInsights StartupFilter should not swallow exceptions from downstream ApplicationBuilder (#899) * bump to 2.7.1 hotfix
1 parent 61cb449 commit 05e634b

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## Version 2.7.1
4+
- [Fix - ApplicationInsights StartupFilter should not swallow exceptions from downstream ApplicationBuilder.](https://github.com/microsoft/ApplicationInsights-aspnetcore/issues/897)
5+
36
## Version 2.7.0
47
- Updated Web/Base SDK version dependency to 2.10.0
58
- [Remove unused reference to System.Net.Http](https://github.com/microsoft/ApplicationInsights-aspnetcore/pull/879)

src/Microsoft.ApplicationInsights.AspNetCore/Implementation/ApplicationInsightsStartupFilter.cs

+4-2
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,14 @@ public Action<IApplicationBuilder> Configure(Action<IApplicationBuilder> next)
2323
// via <see cref="TelemetryConfigurationOptionsSetup"/> class which triggers
2424
// initialization of TelemetryModules and construction of TelemetryProcessor pipeline.
2525
var tc = app.ApplicationServices.GetService<TelemetryConfiguration>();
26-
next(app);
2726
}
2827
catch (Exception ex)
2928
{
3029
AspNetCoreEventSource.Instance.LogWarning(ex.Message);
31-
}
30+
}
31+
32+
// Invoking next builder is not wrapped in try catch to ensure any exceptions gets propogated up.
33+
next(app);
3234
};
3335
}
3436
}

src/Microsoft.ApplicationInsights.AspNetCore/Microsoft.ApplicationInsights.AspNetCore.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<AssemblyName>Microsoft.ApplicationInsights.AspNetCore</AssemblyName>
4-
<VersionPrefix>2.7.0</VersionPrefix>
4+
<VersionPrefix>2.7.1</VersionPrefix>
55
<Authors>Microsoft</Authors>
66
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
77
<AssemblyTitle>Application Insights for ASP.NET Core Web Applications</AssemblyTitle>

0 commit comments

Comments
 (0)