Skip to content

Commit

Permalink
Updated SignalR .NET Core client to 1.0.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
dicky authored and dicky committed Aug 29, 2018
1 parent a6d9ce1 commit 91ae4c0
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ASP.NET Core Demo/WebApplication.Knockout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"knockout": "^3.4.1",
"requirejs": "^2.3.2",
"signalr": "^2.2.2",
"@aspnet/signalr": "1.0.0"
"@aspnet/signalr": "1.0.3"
},
"devDependencies": {
"grunt": "^1.0.1",
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -9380,7 +9380,7 @@ if (true)

/* WEBPACK VAR INJECTION */(function(global, process) {/**
* @overview ASP.NET Core SignalR JavaScript Client.
* @version 1.0.0.
* @version 1.0.3.
* @license
* Copyright (c) .NET Foundation. All rights reserved.
* Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
Expand Down Expand Up @@ -10934,6 +10934,8 @@ if (true)
xhr.open(request.method, request.url, true);
xhr.withCredentials = true;
xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest");
// Explicitly setting the Content-Type header for React Native on Android platform.
xhr.setRequestHeader("Content-Type", "text/plain;charset=UTF-8");
if (request.headers) {
Object.keys(request.headers)
.forEach(function (header) { return xhr.setRequestHeader(header, request.headers[header]); });
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion dist/signalR-netcore.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/signalR-netcore.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dotnetify",
"version": "3.0.1",
"version": "3.0.2",
"description": "Simple, lightweight, yet powerful way to build realtime .NET web apps.",
"main": "index.js",
"files": [
Expand Down
4 changes: 3 additions & 1 deletion src/signalR-netcore.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 91ae4c0

Please sign in to comment.