Skip to content

Commit bc61b99

Browse files
committed
Bump the .NET SDK and dependencies
1 parent f5d6a18 commit bc61b99

File tree

6 files changed

+103
-90
lines changed

6 files changed

+103
-90
lines changed

Directory.Packages.props

Lines changed: 73 additions & 73 deletions
Large diffs are not rendered by default.

WorkloadRollback.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"microsoft.net.sdk.android": "35.0.61/9.0.100",
3-
"microsoft.net.sdk.ios": "18.4.9288/9.0.100",
4-
"microsoft.net.sdk.maccatalyst": "18.4.9288/9.0.100",
5-
"microsoft.net.sdk.macos": "15.4.9288/9.0.100",
6-
"microsoft.net.sdk.maui": "9.0.51/9.0.100",
7-
"microsoft.net.sdk.tvos": "18.4.9288/9.0.100",
8-
"microsoft.net.workload.mono.toolchain.current": "9.0.6/9.0.100",
9-
"microsoft.net.workload.emscripten.current": "9.0.6/9.0.100",
10-
"microsoft.net.workload.emscripten.net6": "9.0.6/9.0.100",
11-
"microsoft.net.workload.emscripten.net7": "9.0.6/9.0.100",
12-
"microsoft.net.workload.emscripten.net8": "9.0.6/9.0.100",
13-
"microsoft.net.workload.mono.toolchain.net6": "9.0.6/9.0.100",
14-
"microsoft.net.workload.mono.toolchain.net7": "9.0.6/9.0.100",
15-
"microsoft.net.workload.mono.toolchain.net8": "9.0.6/9.0.100",
2+
"microsoft.net.sdk.android": "35.0.78/9.0.100",
3+
"microsoft.net.sdk.ios": "18.5.9214/9.0.100",
4+
"microsoft.net.sdk.maccatalyst": "18.5.9214/9.0.100",
5+
"microsoft.net.sdk.macos": "15.5.9214/9.0.100",
6+
"microsoft.net.sdk.maui": "9.0.82/9.0.100",
7+
"microsoft.net.sdk.tvos": "18.5.9214/9.0.100",
8+
"microsoft.net.workload.mono.toolchain.current": "9.0.9/9.0.100",
9+
"microsoft.net.workload.emscripten.current": "9.0.9/9.0.100",
10+
"microsoft.net.workload.emscripten.net6": "9.0.9/9.0.100",
11+
"microsoft.net.workload.emscripten.net7": "9.0.9/9.0.100",
12+
"microsoft.net.workload.emscripten.net8": "9.0.9/9.0.100",
13+
"microsoft.net.workload.mono.toolchain.net6": "9.0.9/9.0.100",
14+
"microsoft.net.workload.mono.toolchain.net7": "9.0.9/9.0.100",
15+
"microsoft.net.workload.mono.toolchain.net8": "9.0.9/9.0.100",
1616
"microsoft.net.sdk.aspire": "8.2.2/8.0.100"
1717
}

global.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"sdk": {
3-
"version": "9.0.301",
3+
"version": "9.0.305",
44
"allowPrerelease": true,
55
"rollForward": "major"
66
},
77

88
"tools": {
9-
"dotnet": "9.0.301",
9+
"dotnet": "9.0.305",
1010

1111
"runtimes": {
1212
"aspnetcore": [
13-
"8.0.17"
13+
"8.0.20"
1414
]
1515
}
1616
},

src/OpenIddict.Abstractions/OpenIddictResources.resx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1799,6 +1799,9 @@ Alternatively, any value respecting the '[region]-[subregion]-[identifier]' patt
17991799
<data name="ID0496" xml:space="preserve">
18001800
<value>The issuer cannot be retrieved from the server options or inferred from the current request or is not a valid value.</value>
18011801
</data>
1802+
<data name="ID0497" xml:space="preserve">
1803+
<value>An unknown error occurred while trying to start a custom tabs intent.</value>
1804+
</data>
18021805
<data name="ID2000" xml:space="preserve">
18031806
<value>The security token is missing.</value>
18041807
</data>

src/OpenIddict.Client.SystemIntegration/OpenIddictClientSystemIntegrationHandlers.Authentication.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,11 @@ public async ValueTask HandleAsync(ApplyAuthorizationRequestContext context)
342342
using var builder = new CustomTabsIntent.Builder();
343343
using var intent = builder.Build();
344344

345+
if (intent is not { Intent: not null })
346+
{
347+
throw new InvalidOperationException(SR.GetResourceString(SR.ID0497));
348+
}
349+
345350
// Note: using ActivityFlags.NewTask is required when
346351
// creating intents without a parent activity attached.
347352
intent.Intent.AddFlags(ActivityFlags.NewTask);

src/OpenIddict.Client.SystemIntegration/OpenIddictClientSystemIntegrationHandlers.Session.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,11 @@ public async ValueTask HandleAsync(ApplyEndSessionRequestContext context)
342342
using var builder = new CustomTabsIntent.Builder();
343343
using var intent = builder.Build();
344344

345+
if (intent is not { Intent: not null })
346+
{
347+
throw new InvalidOperationException(SR.GetResourceString(SR.ID0497));
348+
}
349+
345350
// Note: using ActivityFlags.NewTask is required when
346351
// creating intents without a parent activity attached.
347352
intent.Intent.AddFlags(ActivityFlags.NewTask);

0 commit comments

Comments
 (0)