Skip to content

Commit

Permalink
Merge pull request #108 from MindscapeHQ/filter-headers
Browse files Browse the repository at this point in the history
Filter HTTP request headers
  • Loading branch information
QuantumNightmare committed Jan 15, 2014
2 parents a225824 + 7714824 commit bbff552
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions AssemblyVersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.9.0")]
[assembly: AssemblyFileVersion("1.1.9.0")]
[assembly: AssemblyVersion("1.1.10.0")]
[assembly: AssemblyFileVersion("1.1.10.0")]
4 changes: 2 additions & 2 deletions Mindscape.Raygun4Net.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata minClientVersion="2.5">
<id>Mindscape.Raygun4Net</id>
<version>1.1.9</version>
<version>1.1.10</version>
<title />
<authors>Mindscape</authors>
<owners />
Expand All @@ -27,7 +27,7 @@
<!-- Windows Phone -->
<file src="build\Mindscape.Raygun4Net.WindowsPhone.dll" target="lib\wp71\Mindscape.Raygun4Net.WindowsPhone.dll" />
<file src="build\Mindscape.Raygun4Net.WindowsPhone.pdb" target="lib\wp71\Mindscape.Raygun4Net.WindowsPhone.pdb" />

<file src="readme.txt" />
</files>
</package>
2 changes: 1 addition & 1 deletion Mindscape.Raygun4Net/Messages/RaygunRequestMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public RaygunRequestMessage(HttpRequest request, List<string> ignoredFormNames)
IPAddress = request.UserHostAddress;
Data = ToDictionary(request.ServerVariables, Enumerable.Empty<string>());
QueryString = ToDictionary(request.QueryString, Enumerable.Empty<string>());
Headers = ToDictionary(request.Headers, Enumerable.Empty<string>());
Headers = ToDictionary(request.Headers, ignoredFormNames ?? Enumerable.Empty<string>());
Form = ToDictionary(request.Form, ignoredFormNames ?? Enumerable.Empty<string>(), true);

try
Expand Down
2 changes: 1 addition & 1 deletion XamarinComponent/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ require "rake/clean"
CLEAN.include "*.xam"
CLEAN.include "xpkg"

COMPONENT = "raygun4net-1.1.9.xam"
COMPONENT = "raygun4net-1.1.10.xam"

file "xpkg/xpkg.exe" do
sh "if exist xpkg del /Q xpkg & rd xpkg"
Expand Down

0 comments on commit bbff552

Please sign in to comment.