Skip to content

Commit c621060

Browse files
authored
Merge branch 'main' into feature/android-token-refresh-sample
2 parents f3bcede + 1d801c7 commit c621060

20 files changed

Lines changed: 433 additions & 384 deletions

File tree

samples/angular/login-pkce/yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3900,9 +3900,9 @@ __metadata:
39003900
linkType: hard
39013901

39023902
"hono@npm:^4.11.4":
3903-
version: 4.12.17
3904-
resolution: "hono@npm:4.12.17"
3905-
checksum: 10c0/046dfa8ef88c1f30d79f3734f297aad0c5cb5b330e1115505977d034551a79405c5168bae59f8bab1b591e9ab0345442c5b50bfd8937fbd265de8b8162847a50
3903+
version: 4.12.18
3904+
resolution: "hono@npm:4.12.18"
3905+
checksum: 10c0/b0b9688fd9e41a1847b077d579dc0e92a28b67c247c6ee7d1e751c0bae269824c30c7773feff1a2874e40ea36a3d2f9d1fc5ba618a28ecdf2ca1b33ed2473864
39063906
languageName: node
39073907
linkType: hard
39083908

samples/angular/token-refresh/yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3900,9 +3900,9 @@ __metadata:
39003900
linkType: hard
39013901

39023902
"hono@npm:^4.11.4":
3903-
version: 4.12.17
3904-
resolution: "hono@npm:4.12.17"
3905-
checksum: 10c0/046dfa8ef88c1f30d79f3734f297aad0c5cb5b330e1115505977d034551a79405c5168bae59f8bab1b591e9ab0345442c5b50bfd8937fbd265de8b8162847a50
3903+
version: 4.12.18
3904+
resolution: "hono@npm:4.12.18"
3905+
checksum: 10c0/b0b9688fd9e41a1847b077d579dc0e92a28b67c247c6ee7d1e751c0bae269824c30c7773feff1a2874e40ea36a3d2f9d1fc5ba618a28ecdf2ca1b33ed2473864
39063906
languageName: node
39073907
linkType: hard
39083908

samples/dotnet/login-auth-code/tests/login-auth-code.tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<RootNamespace>LoginAuthCode.Tests</RootNamespace>
99
</PropertyGroup>
1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.5.1" />
1212
<PackageReference Include="xunit" Version="2.9.3" />
1313
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" />
1414
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.7" />

samples/dotnet/saml-sp-login/tests/saml-sp-login.tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
<RootNamespace>SamlSpLogin.Tests</RootNamespace>
99
</PropertyGroup>
1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.5.1" />
1212
<PackageReference Include="xunit" Version="2.9.3" />
1313
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" />
1414
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.7" />
1515
<!-- Override transitive dep with vulnerable System.Drawing.Common 4.7.0 (NU1904 / GHSA-rxg9-xrhp-64gj). -->
16-
<PackageReference Include="System.Drawing.Common" Version="8.0.26" />
16+
<PackageReference Include="System.Drawing.Common" Version="10.0.7" />
1717
</ItemGroup>
1818
<ItemGroup>
1919
<ProjectReference Include="..\src\saml-sp-login.csproj" />

samples/dotnet/token-refresh/src/token-refresh.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
<ItemGroup>
1010
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="10.0.7" />
1111
<PackageReference Include="DotNetEnv" Version="3.2.0" />
12-
<PackageReference Include="Duende.IdentityModel" Version="7.1.0" />
12+
<PackageReference Include="Duende.IdentityModel" Version="8.1.0" />
1313
</ItemGroup>
1414
</Project>

samples/dotnet/token-refresh/tests/token-refresh.tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<RootNamespace>TokenRefresh.Tests</RootNamespace>
99
</PropertyGroup>
1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.5.1" />
1212
<PackageReference Include="xunit" Version="2.9.3" />
1313
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" />
1414
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.7" />

samples/node/login-auth-code/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"devDependencies": {
2323
"@types/express": "5.0.6",
2424
"@types/express-session": "1.19.0",
25-
"@types/node": "25.6.0",
25+
"@types/node": "25.6.1",
2626
"@types/supertest": "7.2.0",
2727
"prettier": "3.8.3",
2828
"supertest": "7.2.2",

samples/node/login-auth-code/yarn.lock

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ __metadata:
1111
dependencies:
1212
"@types/express": "npm:5.0.6"
1313
"@types/express-session": "npm:1.19.0"
14-
"@types/node": "npm:25.6.0"
14+
"@types/node": "npm:25.6.1"
1515
"@types/supertest": "npm:7.2.0"
1616
dotenv: "npm:17.4.2"
1717
express: "npm:5.2.1"
@@ -667,7 +667,7 @@ __metadata:
667667
languageName: node
668668
linkType: hard
669669

670-
"@types/node@npm:*, @types/node@npm:25.6.0":
670+
"@types/node@npm:*":
671671
version: 25.6.0
672672
resolution: "@types/node@npm:25.6.0"
673673
dependencies:
@@ -676,6 +676,15 @@ __metadata:
676676
languageName: node
677677
linkType: hard
678678

679+
"@types/node@npm:25.6.1":
680+
version: 25.6.1
681+
resolution: "@types/node@npm:25.6.1"
682+
dependencies:
683+
undici-types: "npm:~7.19.0"
684+
checksum: 10c0/4aea21cf3dd98eed57ea2666aa89e2665a2478bdc46f76791d15bd0c3cf8ed812401f4906cfb0e47ee591fc7461179caf8da790b77c19307423e5268de9eb6f9
685+
languageName: node
686+
linkType: hard
687+
679688
"@types/qs@npm:*":
680689
version: 6.15.0
681690
resolution: "@types/qs@npm:6.15.0"

samples/node/saml-sp-login/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"devDependencies": {
2424
"@types/express": "5.0.6",
2525
"@types/express-session": "1.19.0",
26-
"@types/node": "25.6.0",
26+
"@types/node": "25.6.1",
2727
"@types/passport": "1.0.17",
2828
"@types/supertest": "7.2.0",
2929
"prettier": "3.8.3",

samples/node/saml-sp-login/yarn.lock

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ __metadata:
1212
"@node-saml/passport-saml": "npm:5.1.0"
1313
"@types/express": "npm:5.0.6"
1414
"@types/express-session": "npm:1.19.0"
15-
"@types/node": "npm:25.6.0"
15+
"@types/node": "npm:25.6.1"
1616
"@types/passport": "npm:1.0.17"
1717
"@types/supertest": "npm:7.2.0"
1818
dotenv: "npm:17.4.2"
@@ -750,7 +750,7 @@ __metadata:
750750
languageName: node
751751
linkType: hard
752752

753-
"@types/node@npm:*, @types/node@npm:25.6.0":
753+
"@types/node@npm:*":
754754
version: 25.6.0
755755
resolution: "@types/node@npm:25.6.0"
756756
dependencies:
@@ -759,6 +759,15 @@ __metadata:
759759
languageName: node
760760
linkType: hard
761761

762+
"@types/node@npm:25.6.1":
763+
version: 25.6.1
764+
resolution: "@types/node@npm:25.6.1"
765+
dependencies:
766+
undici-types: "npm:~7.19.0"
767+
checksum: 10c0/4aea21cf3dd98eed57ea2666aa89e2665a2478bdc46f76791d15bd0c3cf8ed812401f4906cfb0e47ee591fc7461179caf8da790b77c19307423e5268de9eb6f9
768+
languageName: node
769+
linkType: hard
770+
762771
"@types/passport-strategy@npm:^0.2.38":
763772
version: 0.2.38
764773
resolution: "@types/passport-strategy@npm:0.2.38"

0 commit comments

Comments
 (0)