Skip to content

Commit 41f83cd

Browse files
authoredSep 8, 2019
Switch to ASP.NET Core 3 (#3609)
* updated storage * update version * Update azure-pipelines.yml for Azure Pipelines * install right SDK for Linux * start modifying IdentityServer itself * compiles on 3 * update to new hosting model * added endpoint info to request logger * started working on EF * remove extra line * Cherry Pick request object PR * fix cherry pick * Set client id in user login events from resource owner password validator (#3442) (cherry picked from commit 6ef66a1) * Easier Authorization Code extensibility (#3463) * separate code creation and storage * added properties to AuthorizationCode * updated dictionary (cherry picked from commit f7362df) * Easier support for impersonating clients (#3464) * add new property to ValidatedTokenRequest * check for impersonation flag in default claims service * add test * requested changes (cherry picked from commit 94ee194) * 3445 refresh token logs (#3468) * #3445 Modify token revocation logs to more clearly indicate behavior * #3445 Modify log to log both client id's * #3445 Test revoke of another client's refresh token should not skipped but still return success * #3445 Revoking another client's access token should return success but not revoke the token (cherry picked from commit 0038e71) * update to .NET Core Preview 7 * move Storage back to netstandard * workaround for strongly typed HttpClientFactory problem * add todo * temporarily disable tests * fix artifacts directory * csproj cleanup * consolidate strong naming keys * migrated EF.Storage - tests don't work - skipped for now. * more fixes for tests required * updated EF * update AspId * install right SDK for CI * clean up * ensure SDK version for MinVer is installed (#3490) * updgrade bullseye * change middleware order * CORS validation handling normalized URIs (#3478) * Added failing tests * Changed CORS origin check to allow for normalized ports (cherry picked from commit 80d7a39) * fix JS for automatic signout redirect (#3491) * fix JS for automatic signout redirect to wait until iframe is done loading #3475 * revert back to the load event for redirect after signout (cherry picked from commit 13430dc) * remove extra out of index msg template that cause exception during logging (#3494) To resolve DuendeArchive/IdentityServer4#3482 (cherry picked from commit 1a7fb8e) * Fix/3431 (#3467) * Protected data members should be properties, not fields (CA1051). * Using structured logging messages to avoid unnecessary string allocations at runtime. * Restricting refresh_token's sliding lifetime when creating new refresh_tokens. Adding warning about incorrectly configured clients. * Adding test. (cherry picked from commit 3752f76) * set Json.Net version to 12.0.1 * remove IdentityServerPrincipal * Update add_apis.rst (#3508) (cherry picked from commit c719bfc) * Update request_object.rst (#3509) (cherry picked from commit 7a50dcc) * update build scripts * Add support for additional signing algorithms (#3511) * allow specifying signing algorithm on all helper methods * add support for variable length c_hash and at_hash * add EC * add StateHash property to authorization code * add s_hash support * added test for s_hash for code flow * cleanup crypto extensions * consolidate StateHash and StateToHash * Move to IdentityModel v4 * update tests * update IdM version * work on EF tests * move context accessor access (#3517) (cherry picked from commit 835f519) * Set typ header for access tokens (#3513) * set typ header for access tokens (and enforce in API) * add jwt type to options * update token validator to use jwt type * adjust testrs * adjust tests * clean up DefaultCustomTokenValidator * exclude vs directory from clean script * update migrations * skip one more test where ef in-mem provider seems broken * update connection strings and host for 3.0 style * update aspnet identity host for 3.0 style * add docs for jwt access token type setting * add support for ECDSA keys in disovery * add helper for ECDSA * update clients to 3.0 * add Json.Net to host * sponsors update for july (cherry picked from commit 3c109dc) * Update readme.md (#3525) fix discription for hybrid authentication (cherry picked from commit cfd2d5d) * make EC work by hard-coding crv (for now) * Update README.md (cherry picked from commit 56eaba8) * update to netcore preview8 * Update specs.rst (#3556) (cherry picked from commit ca5e557) * Ecdsa curve handling (#3534) * Handling for crv values * Added handling for curve mismatch * Set id_token_signing_alg_values_supported based on signing credential * Used CryptoHelper.GetCrvValueFromCurve to use constants * update IdentityModel * cleanup ECDSA code * update samples * Add convenience overloads for setting signing keys (cherry picked from commit f8a7c51) * Support specific signing algorithms per validation key (#3561) * Add convenience overloads for setting signing keys * add indirection to signing keys to support specific algorithms per key * added null checks around getting the signing credential + cleanup * Added test for validation keys with different algorithms (#3532) (#3562) * changed ClaimValueTypes.Integer to Integer64 (#3563) * Fix ConsentGrantedEvent xml document (#3540) (cherry picked from commit 28b971d) * Update 8_aspnet_identity.rst (#3476) Remove "the a" (cherry picked from commit 00fb686) * move logging before removal so the PromptMode is included in the logging (#3523) (cherry picked from commit 0c097ee) * Fixed null reference (#3565) * cleanup * cleanup crypto * update dependency * update serilog * add comment for azure diagnostics * update IdentityModel * Re-factor logic to turn Secrets into SecurityKeys (#3584) * added extension method to turn secret collection to SecurityKeys * changed JwtRequestValidator and PrivateKeyJwtValidator to use new extension method * update host logging * add return code for host * update to netcore preview9 * update samples * update AzDO * Fixed Typo (#3595) dynamical to ydynamically (cherry picked from commit 86da612) * Updated tests for EF Core 3 (#3582) * Removed usage of in-memory database until EF Core 3 is ready * Made CORS service pull full client record into memory until EF Core 3 is ready * Added integration tests for token cleanup * reenable in-mem tests * added package icon * re-enabled tests * move cors service to EF project * split clean scripts * moved unit tests * rework token cleanup service * add expiration index * updated migrations * update automapper * update source link * reverted to icon url * identify the builds for each solution in the logs (#3586) * key management samples (#3606) (cherry picked from commit a401ec2)
1 parent a401ec2 commit 41f83cd

File tree

168 files changed

+3041
-2062
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

168 files changed

+3041
-2062
lines changed
 

‎azure-pipelines.yml

+22
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ jobs:
77
pool:
88
vmImage: 'ubuntu-16.04'
99
steps:
10+
- task: UseDotNet@2
11+
displayName: 'Install .NET Core 2.x SDK'
12+
inputs:
13+
packageType: 'sdk'
14+
version: '2.x'
15+
- task: UseDotNet@2
16+
displayName: 'Install .NET Core 3.x SDK'
17+
inputs:
18+
packageType: 'sdk'
19+
version: '3.0.100-preview9-014004'
20+
includePreviewVersions: true
1021
- task: Bash@3
1122
displayName: 'Build Script'
1223
inputs:
@@ -17,6 +28,17 @@ jobs:
1728
pool:
1829
vmImage: 'vs2017-win2016'
1930
steps:
31+
- task: UseDotNet@2
32+
displayName: 'Install .NET Core 2.x SDK'
33+
inputs:
34+
packageType: 'sdk'
35+
version: '2.x'
36+
- task: UseDotNet@2
37+
displayName: 'Install .NET Core 3.x SDK'
38+
inputs:
39+
packageType: 'sdk'
40+
version: '3.0.100-preview9-014004'
41+
includePreviewVersions: true
2042
- task: PowerShell@2
2143
displayName: 'Build Script'
2244
inputs:

‎build.ps1

+1-15
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@ if ($LASTEXITCODE -ne 0)
1818
exit $LASTEXITCODE
1919
}
2020

21-
Copy-Item -path .\src\Storage\artifacts\*.nupkg -Destination .\nuget
22-
23-
24-
2521
# core
2622
""
2723
"###########################################"
@@ -37,10 +33,6 @@ if ($LASTEXITCODE -ne 0)
3733
exit $LASTEXITCODE
3834
}
3935

40-
Copy-Item -path .\src\IdentityServer4\artifacts\*.nupkg -Destination .\nuget
41-
42-
43-
4436
# EF storage
4537
""
4638
"############################################################"
@@ -56,8 +48,6 @@ if ($LASTEXITCODE -ne 0)
5648
exit $LASTEXITCODE
5749
}
5850

59-
Copy-Item -path .\src\EntityFramework.Storage\artifacts\*.nupkg -Destination .\nuget
60-
6151
# EF
6252
""
6353
"###################################################"
@@ -73,8 +63,6 @@ if ($LASTEXITCODE -ne 0)
7363
exit $LASTEXITCODE
7464
}
7565

76-
Copy-Item -path .\src\EntityFramework\artifacts\*.nupkg -Destination .\nuget
77-
7866
# aspid
7967
""
8068
"###################################################"
@@ -88,6 +76,4 @@ Set-Location $cd
8876
if ($LASTEXITCODE -ne 0)
8977
{
9078
exit $LASTEXITCODE
91-
}
92-
93-
Copy-Item -path .\src\AspNetIdentity\artifacts\*.nupkg -Destination .\nuget
79+
}

0 commit comments

Comments
 (0)
Please sign in to comment.