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

Support W3C incoming headers in opt-in mode #735

Merged
merged 8 commits into from
Aug 21, 2018
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## Version 2.5.0-beta1
- [Adds opt-in support for W3C distributed tracing standard](https://github.com/Microsoft/ApplicationInsights-aspnetcore/pull/735)

## Version 2.4.1
- Patch release to update Web/Base SDK version dependency to 2.7.2 which fixed a bug (https://github.com/Microsoft/ApplicationInsights-dotnet-server/issues/970)

Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
namespace Microsoft.ApplicationInsights.AspNetCore.DiagnosticListeners
{
using Microsoft.ApplicationInsights.AspNetCore.Common;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text.RegularExpressions;
using Microsoft.ApplicationInsights.Common;

/// <summary>
/// Generic functions that can be used to get and set Http headers.
Expand Down
Loading