Skip to content

Commit 7b960f6

Browse files
[main] Bump the runtime-dependencies group in /eng/dependabot/net9.0 with 4 updates (#8203)
* [main] Bump the runtime-dependencies group Bumps the runtime-dependencies group in /eng/dependabot/net9.0 with 4 updates: [Microsoft.Extensions.Configuration.Abstractions](https://github.com/dotnet/runtime), [Microsoft.Extensions.Logging](https://github.com/dotnet/runtime), [Microsoft.Extensions.Logging.Abstractions](https://github.com/dotnet/runtime) and [Microsoft.Extensions.Logging.Console](https://github.com/dotnet/runtime). Updates `Microsoft.Extensions.Configuration.Abstractions` from 9.0.1 to 9.0.4 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](dotnet/runtime@v9.0.1...v9.0.4) Updates `Microsoft.Extensions.Logging` from 9.0.1 to 9.0.4 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](dotnet/runtime@v9.0.1...v9.0.4) Updates `Microsoft.Extensions.Logging.Abstractions` from 9.0.1 to 9.0.4 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](dotnet/runtime@v9.0.1...v9.0.4) Updates `Microsoft.Extensions.Configuration.Abstractions` from 9.0.1 to 9.0.4 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](dotnet/runtime@v9.0.1...v9.0.4) Updates `Microsoft.Extensions.Logging` from 9.0.1 to 9.0.4 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](dotnet/runtime@v9.0.1...v9.0.4) Updates `Microsoft.Extensions.Logging.Abstractions` from 9.0.1 to 9.0.4 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](dotnet/runtime@v9.0.1...v9.0.4) Updates `Microsoft.Extensions.Logging.Console` from 9.0.1 to 9.0.4 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](dotnet/runtime@v9.0.1...v9.0.4) --- updated-dependencies: - dependency-name: Microsoft.Extensions.Configuration.Abstractions dependency-version: 9.0.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-dependencies - dependency-name: Microsoft.Extensions.Logging dependency-version: 9.0.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-dependencies - dependency-name: Microsoft.Extensions.Logging.Abstractions dependency-version: 9.0.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-dependencies - dependency-name: Microsoft.Extensions.Configuration.Abstractions dependency-version: 9.0.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-dependencies - dependency-name: Microsoft.Extensions.Logging dependency-version: 9.0.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-dependencies - dependency-name: Microsoft.Extensions.Logging.Abstractions dependency-version: 9.0.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-dependencies - dependency-name: Microsoft.Extensions.Logging.Console dependency-version: 9.0.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: runtime-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> * Update Versions.props --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Justin Anderson <[email protected]>
1 parent 79def04 commit 7b960f6

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

eng/dependabot/net9.0/Versions.props

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
<!-- Import references updated by Dependabot. -->
33
<PropertyGroup>
44
<!-- Microsoft.Extensions.Configuration.Abstractions -->
5-
<MicrosoftExtensionsConfigurationAbstractions90Version>9.0.1</MicrosoftExtensionsConfigurationAbstractions90Version>
5+
<MicrosoftExtensionsConfigurationAbstractions90Version>9.0.4</MicrosoftExtensionsConfigurationAbstractions90Version>
66
<!-- Microsoft.Extensions.Logging -->
7-
<MicrosoftExtensionsLogging90Version>9.0.1</MicrosoftExtensionsLogging90Version>
7+
<MicrosoftExtensionsLogging90Version>9.0.4</MicrosoftExtensionsLogging90Version>
88
<!-- Microsoft.Extensions.Logging.Abstractions -->
9-
<MicrosoftExtensionsLoggingAbstractions90Version>9.0.1</MicrosoftExtensionsLoggingAbstractions90Version>
9+
<MicrosoftExtensionsLoggingAbstractions90Version>9.0.4</MicrosoftExtensionsLoggingAbstractions90Version>
1010
<!-- Microsoft.Extensions.Logging.Console -->
11-
<MicrosoftExtensionsLoggingConsole90Version>9.0.1</MicrosoftExtensionsLoggingConsole90Version>
11+
<MicrosoftExtensionsLoggingConsole90Version>9.0.4</MicrosoftExtensionsLoggingConsole90Version>
1212
<!-- Microsoft.NETCore.App -->
13-
<MicrosoftNETCoreApp90Version>9.0.1</MicrosoftNETCoreApp90Version>
13+
<MicrosoftNETCoreApp90Version>9.0.4</MicrosoftNETCoreApp90Version>
1414
<!-- System.Text.Json -->
15-
<SystemTextJson90Version>9.0.0</SystemTextJson90Version>
15+
<SystemTextJson90Version>9.0.4</SystemTextJson90Version>
1616
</PropertyGroup>
1717
</Project>

src/Tests/Microsoft.Diagnostics.Monitoring.OpenApiGen/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ private static async Task<OpenApiDocument> GetOpenApiDocument(IHost host)
6969
var documentService = GetDocumentService(host.Services);
7070
var methodInfo = documentService.GetType().GetMethod("GetOpenApiDocumentAsync", BindingFlags.Public | BindingFlags.Instance)!;
7171

72-
object result = methodInfo.Invoke(documentService, new object?[] { host.Services, default(CancellationToken) })!;
72+
object result = methodInfo.Invoke(documentService, new object?[] { host.Services, null, default(CancellationToken) })!;
7373

7474
return await (Task<OpenApiDocument>)result;
7575
}

0 commit comments

Comments
 (0)