Skip to content
This repository was archived by the owner on Dec 13, 2018. It is now read-only.

Commit 8537b61

Browse files
authored
1.1.2 patch train updates (#1127)
* 1.1.2 patch train updates * Update global.json and NuGet.config * Update Microsoft.NETCore.App to 1.1.1 * Update build scripts
1 parent 0f42932 commit 8537b61

File tree

27 files changed

+120
-119
lines changed

27 files changed

+120
-119
lines changed

NuGet.config

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
<clear />
55
<add key="NuGet.org" value="https://api.nuget.org/v3/index.json" />
66
<add key="AspNetCore" value="https://dotnet.myget.org/f/aspnetcore-master/api/v3/index.json" />
7+
<add key="AspNetCore-Patch" value="https://dotnet.myget.org/F/aspnet-1-1-1-patch/api/v3/index.json" />
78
</packageSources>
8-
</configuration>
9+
</configuration>

build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ cd $PSScriptRoot
3333
$repoFolder = $PSScriptRoot
3434
$env:REPO_FOLDER = $repoFolder
3535

36-
$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/rel/1.1.0.zip"
36+
$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/rel/1.1.2.zip"
3737
if ($env:KOREBUILD_ZIP)
3838
{
3939
$koreBuildZip=$env:KOREBUILD_ZIP
@@ -64,4 +64,4 @@ if (!(Test-Path $buildFolder)) {
6464
}
6565
}
6666

67-
&"$buildFile" $args
67+
&"$buildFile" $args

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
repoFolder="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
33
cd $repoFolder
44

5-
koreBuildZip="https://github.com/aspnet/KoreBuild/archive/rel/1.1.0.zip"
5+
koreBuildZip="https://github.com/aspnet/KoreBuild/archive/rel/1.1.2.zip"
66
if [ ! -z $KOREBUILD_ZIP ]; then
77
koreBuildZip=$KOREBUILD_ZIP
88
fi
@@ -43,4 +43,4 @@ if test ! -d $buildFolder; then
4343
fi
4444
fi
4545

46-
$buildFile -r $repoFolder "$@"
46+
$buildFile -r $repoFolder "$@"

samples/CookieSample/project.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"dependencies": {
3-
"Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
4-
"Microsoft.AspNetCore.DataProtection": "1.1.0",
5-
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
6-
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
7-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
8-
"Microsoft.Extensions.Logging.Console": "1.1.0"
3+
"Microsoft.AspNetCore.Authentication.Cookies": "1.1.1",
4+
"Microsoft.AspNetCore.DataProtection": "1.1.1",
5+
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.1",
6+
"Microsoft.AspNetCore.Server.Kestrel": "1.1.1",
7+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.1",
8+
"Microsoft.Extensions.Logging.Console": "1.1.1"
99
},
1010
"buildOptions": {
1111
"emitEntryPoint": true
@@ -15,7 +15,7 @@
1515
"netcoreapp1.1": {
1616
"dependencies": {
1717
"Microsoft.NETCore.App": {
18-
"version": "1.1.0",
18+
"version": "1.1.1",
1919
"type": "platform"
2020
}
2121
}

samples/CookieSessionSample/project.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"dependencies": {
3-
"Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
4-
"Microsoft.AspNetCore.DataProtection": "1.1.0",
5-
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
6-
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
7-
"Microsoft.Extensions.Caching.Memory": "1.1.0",
8-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
9-
"Microsoft.Extensions.Logging.Console": "1.1.0"
3+
"Microsoft.AspNetCore.Authentication.Cookies": "1.1.1",
4+
"Microsoft.AspNetCore.DataProtection": "1.1.1",
5+
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.1",
6+
"Microsoft.AspNetCore.Server.Kestrel": "1.1.1",
7+
"Microsoft.Extensions.Caching.Memory": "1.1.1",
8+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.1",
9+
"Microsoft.Extensions.Logging.Console": "1.1.1"
1010
},
1111
"buildOptions": {
1212
"emitEntryPoint": true
@@ -16,7 +16,7 @@
1616
"netcoreapp1.1": {
1717
"dependencies": {
1818
"Microsoft.NETCore.App": {
19-
"version": "1.1.0",
19+
"version": "1.1.1",
2020
"type": "platform"
2121
}
2222
}

samples/JwtBearerSample/project.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
"emitEntryPoint": true
55
},
66
"dependencies": {
7-
"Microsoft.AspNetCore.Authentication.JwtBearer": "1.1.0",
8-
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
9-
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
10-
"Microsoft.AspNetCore.StaticFiles": "1.1.0",
11-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
12-
"Microsoft.Extensions.Configuration.UserSecrets": "1.1.0"
7+
"Microsoft.AspNetCore.Authentication.JwtBearer": "1.1.1",
8+
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.1",
9+
"Microsoft.AspNetCore.Server.Kestrel": "1.1.1",
10+
"Microsoft.AspNetCore.StaticFiles": "1.1.1",
11+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.1",
12+
"Microsoft.Extensions.Configuration.UserSecrets": "1.1.1"
1313
},
1414
"frameworks": {
1515
"net451": {},
1616
"netcoreapp1.1": {
1717
"dependencies": {
1818
"Microsoft.NETCore.App": {
19-
"version": "1.1.0",
19+
"version": "1.1.1",
2020
"type": "platform"
2121
}
2222
}

samples/OpenIdConnect.AzureAdSample/project.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
22
"dependencies": {
3-
"Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
4-
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.1.0",
5-
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
6-
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
7-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
8-
"Microsoft.Extensions.Configuration.UserSecrets": "1.1.0",
9-
"Microsoft.Extensions.Logging.Console": "1.1.0",
3+
"Microsoft.AspNetCore.Authentication.Cookies": "1.1.1",
4+
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.1.1",
5+
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.1",
6+
"Microsoft.AspNetCore.Server.Kestrel": "1.1.1",
7+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.1",
8+
"Microsoft.Extensions.Configuration.UserSecrets": "1.1.1",
9+
"Microsoft.Extensions.Logging.Console": "1.1.1",
1010
"Microsoft.IdentityModel.Clients.ActiveDirectory": "3.13.8"
1111
},
1212
"frameworks": {
1313
"net451": {},
1414
"netcoreapp1.1": {
1515
"dependencies": {
1616
"Microsoft.NETCore.App": {
17-
"version": "1.1.0",
17+
"version": "1.1.1",
1818
"type": "platform"
1919
}
2020
}

samples/OpenIdConnectSample/project.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{
22
"dependencies": {
3-
"Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
4-
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.1.0",
5-
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
6-
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
7-
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.1.0",
8-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
9-
"Microsoft.Extensions.Configuration.UserSecrets": "1.1.0",
3+
"Microsoft.AspNetCore.Authentication.Cookies": "1.1.1",
4+
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.1.1",
5+
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.1",
6+
"Microsoft.AspNetCore.Server.Kestrel": "1.1.1",
7+
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.1.1",
8+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.1",
9+
"Microsoft.Extensions.Configuration.UserSecrets": "1.1.1",
1010
"Microsoft.Extensions.FileProviders.Embedded": "1.1.0",
11-
"Microsoft.Extensions.Logging.Console": "1.1.0",
12-
"Microsoft.Extensions.Logging.Debug": "1.1.0"
11+
"Microsoft.Extensions.Logging.Console": "1.1.1",
12+
"Microsoft.Extensions.Logging.Debug": "1.1.1"
1313
},
1414
"frameworks": {
1515
"net451": {},
1616
"netcoreapp1.1": {
1717
"dependencies": {
1818
"Microsoft.NETCore.App": {
19-
"version": "1.1.0",
19+
"version": "1.1.1",
2020
"type": "platform"
2121
}
2222
}

samples/SocialSample/project.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"dependencies": {
3-
"Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
4-
"Microsoft.AspNetCore.Authentication.Facebook": "1.1.0",
5-
"Microsoft.AspNetCore.Authentication.Google": "1.1.0",
6-
"Microsoft.AspNetCore.Authentication.MicrosoftAccount": "1.1.0",
7-
"Microsoft.AspNetCore.Authentication.Twitter": "1.1.0",
8-
"Microsoft.AspNetCore.DataProtection": "1.1.0",
9-
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
10-
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
11-
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.1.0",
12-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
13-
"Microsoft.Extensions.Configuration.UserSecrets": "1.1.0",
3+
"Microsoft.AspNetCore.Authentication.Cookies": "1.1.1",
4+
"Microsoft.AspNetCore.Authentication.Facebook": "1.1.1",
5+
"Microsoft.AspNetCore.Authentication.Google": "1.1.1",
6+
"Microsoft.AspNetCore.Authentication.MicrosoftAccount": "1.1.1",
7+
"Microsoft.AspNetCore.Authentication.Twitter": "1.1.1",
8+
"Microsoft.AspNetCore.DataProtection": "1.1.1",
9+
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.1",
10+
"Microsoft.AspNetCore.Server.Kestrel": "1.1.1",
11+
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.1.1",
12+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.1",
13+
"Microsoft.Extensions.Configuration.UserSecrets": "1.1.1",
1414
"Microsoft.Extensions.FileProviders.Embedded": "1.1.0",
15-
"Microsoft.Extensions.Logging.Console": "1.1.0"
15+
"Microsoft.Extensions.Logging.Console": "1.1.1"
1616
},
1717
"buildOptions": {
1818
"emitEntryPoint": true
@@ -22,7 +22,7 @@
2222
"netcoreapp1.1": {
2323
"dependencies": {
2424
"Microsoft.NETCore.App": {
25-
"version": "1.1.0",
25+
"version": "1.1.1",
2626
"type": "platform"
2727
}
2828
}

src/Microsoft.AspNetCore.Authentication.Cookies/project.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0",
2+
"version": "1.1.1",
33
"description": "ASP.NET Core middleware that enables an application to use cookie based authentication.",
44
"packOptions": {
55
"repository": {
@@ -24,17 +24,17 @@
2424
]
2525
},
2626
"dependencies": {
27-
"Microsoft.AspNetCore.Authentication": "1.1.0",
27+
"Microsoft.AspNetCore.Authentication": "1.1.1",
2828
"Microsoft.AspNetCore.ChunkingCookieManager.Sources": {
29-
"version": "1.1.0-rtm-22752",
29+
"version": "1.1.1",
3030
"type": "build"
3131
},
32-
"Microsoft.Extensions.Options": "1.1.0",
32+
"Microsoft.Extensions.Options": "1.1.1",
3333
"Microsoft.Extensions.TaskCache.Sources": {
3434
"version": "1.1.0-rtm-22752",
3535
"type": "build"
3636
},
37-
"Microsoft.Extensions.WebEncoders": "1.1.0",
37+
"Microsoft.Extensions.WebEncoders": "1.1.1",
3838
"NETStandard.Library": "1.6.1"
3939
},
4040
"frameworks": {

src/Microsoft.AspNetCore.Authentication.Facebook/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0",
2+
"version": "1.1.1",
33
"description": "ASP.NET Core middleware that enables an application to support Facebook's OAuth 2.0 authentication workflow.",
44
"packOptions": {
55
"repository": {
@@ -21,7 +21,7 @@
2121
"xmlDoc": true
2222
},
2323
"dependencies": {
24-
"Microsoft.AspNetCore.Authentication.OAuth": "1.1.0",
24+
"Microsoft.AspNetCore.Authentication.OAuth": "1.1.1",
2525
"NETStandard.Library": "1.6.1"
2626
},
2727
"frameworks": {

src/Microsoft.AspNetCore.Authentication.Google/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0",
2+
"version": "1.1.1",
33
"description": "ASP.NET Core contains middleware to support Google's OpenId and OAuth 2.0 authentication workflows.",
44
"packOptions": {
55
"repository": {
@@ -21,7 +21,7 @@
2121
"xmlDoc": true
2222
},
2323
"dependencies": {
24-
"Microsoft.AspNetCore.Authentication.OAuth": "1.1.0",
24+
"Microsoft.AspNetCore.Authentication.OAuth": "1.1.1",
2525
"NETStandard.Library": "1.6.1"
2626
},
2727
"frameworks": {

src/Microsoft.AspNetCore.Authentication.JwtBearer/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0",
2+
"version": "1.1.1",
33
"description": "ASP.NET Core middleware that enables an application to receive an OpenID Connect bearer token.",
44
"packOptions": {
55
"repository": {
@@ -21,7 +21,7 @@
2121
"xmlDoc": true
2222
},
2323
"dependencies": {
24-
"Microsoft.AspNetCore.Authentication": "1.1.0",
24+
"Microsoft.AspNetCore.Authentication": "1.1.1",
2525
"Microsoft.Extensions.TaskCache.Sources": {
2626
"version": "1.1.0-rtm-22752",
2727
"type": "build"

src/Microsoft.AspNetCore.Authentication.MicrosoftAccount/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0",
2+
"version": "1.1.1",
33
"description": "ASP.NET Core middleware that enables an application to support the Microsoft Account authentication workflow.",
44
"packOptions": {
55
"repository": {
@@ -21,7 +21,7 @@
2121
"xmlDoc": true
2222
},
2323
"dependencies": {
24-
"Microsoft.AspNetCore.Authentication.OAuth": "1.1.0",
24+
"Microsoft.AspNetCore.Authentication.OAuth": "1.1.1",
2525
"NETStandard.Library": "1.6.1"
2626
},
2727
"frameworks": {

src/Microsoft.AspNetCore.Authentication.OAuth/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0",
2+
"version": "1.1.1",
33
"description": "ASP.NET Core middleware that enables an application to support any standard OAuth 2.0 authentication workflow.",
44
"packOptions": {
55
"repository": {
@@ -21,7 +21,7 @@
2121
"xmlDoc": true
2222
},
2323
"dependencies": {
24-
"Microsoft.AspNetCore.Authentication": "1.1.0",
24+
"Microsoft.AspNetCore.Authentication": "1.1.1",
2525
"Microsoft.Extensions.TaskCache.Sources": {
2626
"version": "1.1.0-rtm-22752",
2727
"type": "build"

src/Microsoft.AspNetCore.Authentication.OpenIdConnect/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0",
2+
"version": "1.1.1",
33
"description": "ASP.NET Core middleware that enables an application to support the OpenID Connect authentication workflow.",
44
"packOptions": {
55
"repository": {
@@ -21,7 +21,7 @@
2121
"xmlDoc": true
2222
},
2323
"dependencies": {
24-
"Microsoft.AspNetCore.Authentication": "1.1.0",
24+
"Microsoft.AspNetCore.Authentication": "1.1.1",
2525
"Microsoft.Extensions.TaskCache.Sources": {
2626
"version": "1.1.0-rtm-22752",
2727
"type": "build"

src/Microsoft.AspNetCore.Authentication.Twitter/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0",
2+
"version": "1.1.1",
33
"description": "ASP.NET Core middleware that enables an application to support Twitter's OAuth 1.0 authentication workflow.",
44
"packOptions": {
55
"repository": {
@@ -21,7 +21,7 @@
2121
"xmlDoc": true
2222
},
2323
"dependencies": {
24-
"Microsoft.AspNetCore.Authentication": "1.1.0",
24+
"Microsoft.AspNetCore.Authentication": "1.1.1",
2525
"Microsoft.Extensions.TaskCache.Sources": {
2626
"version": "1.1.0-rtm-22752",
2727
"type": "build"

0 commit comments

Comments
 (0)