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

Commit f05e614

Browse files
authored
Merge pull request #961 from microsoft/develop
Dev to Master for 2.8.0-beta2
2 parents 15476de + c2929a9 commit f05e614

22 files changed

+228
-227
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
11
# Changelog
22

3+
## Version 2.8.0-beta2
4+
- [Fix MVCBeforeAction property fetcher to work with .NET Core 3.0 changes.](https://github.com/microsoft/ApplicationInsights-aspnetcore/issues/936)
5+
- [Catch generic exception from DiagnosticSourceListeners and log instead of failing user request.](https://github.com/microsoft/ApplicationInsights-aspnetcore/issues/957)
6+
- [Correct names for Asp.Net Core EventCounters.](https://github.com/microsoft/ApplicationInsights-aspnetcore/issues/945)
7+
- [Obsolete extension methods on IWebHostBuilder in favor of AddApplicationInsights extension method on IServiceCollection.](https://github.com/microsoft/ApplicationInsights-aspnetcore/issues/919)
8+
- [Remove support for deprecated x-ms based correlation headers.](https://github.com/microsoft/ApplicationInsights-aspnetcore/issues/939)
9+
- [Uri for multiple hosts headers is set to "Multiple-Host".](https://github.com/Microsoft/ApplicationInsights-aspnetcore/issues/862)
10+
- [LogLevel changed to Error and stack trace added for generic unknown exception within SDK.](https://github.com/microsoft/ApplicationInsights-aspnetcore/pull/946)
11+
312
## Version 2.8.0-beta1
413
- [Add EventCounter collection.](https://github.com/microsoft/ApplicationInsights-aspnetcore/issues/913)
514
- [Performance fixes: One DiagSource Listener; Head Sampling Feature; No Concurrent Dictionary; etc...](https://github.com/microsoft/ApplicationInsights-aspnetcore/pull/907)
615
- [Fix: Add `IJavaScriptSnippet` service interface and update the `IServiceCollection` extension to register it for `JavaScriptSnippet`.](https://github.com/microsoft/ApplicationInsights-aspnetcore/issues/890)
716
- [Make JavaScriptEncoder optional and Fallback to JavaScriptEncoder.Default.](https://github.com/microsoft/ApplicationInsights-aspnetcore/pull/918)
17+
- Updated Web/Base SDK version dependency to 2.10.0-beta4
18+
- Updated Microsoft.Extensions.Logging.ApplicationInsights to 2.10.0-beta4
819

920
## Version 2.7.1
1021
- [Fix - ApplicationInsights StartupFilter should not swallow exceptions from downstream ApplicationBuilder.](https://github.com/microsoft/ApplicationInsights-aspnetcore/issues/897)

Schema/PublicSchema/ContextTagKeys.bond

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ struct ContextTagKeys
7070
[MaxStringLength("1024")]
7171
505: string UserAccountId = "ai.user.accountId";
7272

73-
[Description("The browser's user agent string as reported by the browser. This property will be used to extract informaiton regarding the customer's browser but will not be stored. Use custom properties to store the original user agent.")]
73+
[Description("The browser's user agent string as reported by the browser. This property will be used to extract information regarding the customer's browser but will not be stored. Use custom properties to store the original user agent.")]
7474
[MaxStringLength("2048")]
7575
510: string UserAgent = "ai.user.userAgent";
7676

@@ -86,7 +86,7 @@ struct ContextTagKeys
8686
[MaxStringLength("256")]
8787
705: string CloudRole = "ai.cloud.role";
8888

89-
[Description("Name of the instance where the application is running. Computer name for on-premisis, instance name for Azure.")]
89+
[Description("Name of the instance where the application is running. Computer name for on-premises, instance name for Azure.")]
9090
[MaxStringLength("256")]
9191
715: string CloudRoleInstance = "ai.cloud.roleInstance";
9292

Schema/PublicSchema/MessageData.bond

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import "SeverityLevel.bond"
33

44
namespace AI
55

6-
[Description("Instances of Message represent printf-like trace statements that are text-searched. Log4Net, NLog and other text-based log file entries are translated into intances of this type. The message does not have measurements.")]
6+
[Description("Instances of Message represent printf-like trace statements that are text-searched. Log4Net, NLog and other text-based log file entries are translated into instances of this type. The message does not have measurements.")]
77
struct MessageData
88
: Domain
99
{

Schema/PublicSchema/RemoteDependencyData.bond

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ struct RemoteDependencyData
2626
[ActAsRequired("Renaming value to duration.")]
2727
61: required string duration;
2828

29-
[Description("Indication of successfull or unsuccessfull call.")]
29+
[Description("Indication of successful or unsuccessful call.")]
3030
120: bool success = true;
3131

3232
[MaxStringLength("8192")]

Schema/PublicSchema/RequestData.bond

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ struct RequestData
2121
[Description("Result of a request execution. HTTP status code for HTTP requests.")]
2222
60: required string responseCode;
2323

24-
[Description("Indication of successfull or unsuccessfull call.")]
24+
[Description("Indication of successful or unsuccessful call.")]
2525
70: required bool success;
2626

2727
[MaxStringLength("1024")]

Signing.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
<ItemGroup>
1717
<!-- Automatically sign binary generated by the project that imports Signing.props and all ps1 files -->
1818
<FilesToSign Include="$(TargetPath)" >
19-
<Authenticode>Microsoft</Authenticode>
19+
<Authenticode>Microsoft400</Authenticode>
2020
<StrongName>MsSharedLib72</StrongName>
2121
</FilesToSign>
2222
<FilesToSign Include="$(OutputPath)*.ps1">
23-
<Authenticode>MicrosoftSHA1</Authenticode>
23+
<Authenticode>Microsoft400</Authenticode>
2424
<StrongName>10006</StrongName>
2525
</FilesToSign>
2626
</ItemGroup>

0 commit comments

Comments
 (0)