Skip to content

Commit 50a1dbc

Browse files
build: bump the all group with 6 updates (#146)
* build: bump the all group with 6 updates Bumps the all group with 8 updates: | Package | From | To | | --- | --- | --- | | [Microsoft.Extensions.Hosting.Abstractions](https://github.com/dotnet/runtime) | `9.0.2` | `9.0.3` | | [Microsoft.Extensions.Logging.Abstractions](https://github.com/dotnet/runtime) | `9.0.2` | `9.0.3` | | [Sentry.Serilog](https://github.com/getsentry/sentry-dotnet) | `5.2.0` | `5.4.0` | | [Microsoft.Extensions.Hosting.Abstractions](https://github.com/dotnet/runtime) | `9.0.2` | `9.0.0` | | [Microsoft.Extensions.Logging.Abstractions](https://github.com/dotnet/runtime) | `9.0.2` | `9.0.0` | | [Serilog.Enrichers.AzureClaims](https://github.com/Intility/serilog-enrichers-azureclaims) | `1.1.2` | `1.1.3` | | [Swashbuckle.AspNetCore](https://github.com/domaindrivendev/Swashbuckle.AspNetCore) | `7.3.1` | `8.1.0` | | [Microsoft.Extensions.Hosting](https://github.com/dotnet/runtime) | `9.0.2` | `9.0.3` | Updates `Microsoft.Extensions.Hosting.Abstractions` from 9.0.2 to 9.0.3 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](dotnet/runtime@v9.0.2...v9.0.3) Updates `Microsoft.Extensions.Logging.Abstractions` from 9.0.2 to 9.0.3 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](dotnet/runtime@v9.0.2...v9.0.3) Updates `Sentry.Serilog` from 5.2.0 to 5.4.0 - [Release notes](https://github.com/getsentry/sentry-dotnet/releases) - [Changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md) - [Commits](getsentry/sentry-dotnet@5.2.0...5.4.0) Updates `Microsoft.Extensions.Hosting.Abstractions` from 9.0.2 to 9.0.0 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](dotnet/runtime@v9.0.2...v9.0.3) Updates `Microsoft.Extensions.Logging.Abstractions` from 9.0.2 to 9.0.0 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](dotnet/runtime@v9.0.2...v9.0.3) Updates `Serilog.Enrichers.AzureClaims` from 1.1.2 to 1.1.3 - [Release notes](https://github.com/Intility/serilog-enrichers-azureclaims/releases) - [Commits](intility/serilog-enrichers-azureclaims@1.1.2...1.1.3) Updates `Swashbuckle.AspNetCore` from 7.3.1 to 8.1.0 - [Release notes](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases) - [Commits](domaindrivendev/Swashbuckle.AspNetCore@v7.3.1...v8.1.0) Updates `Microsoft.Extensions.Hosting` from 9.0.2 to 9.0.3 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](dotnet/runtime@v9.0.2...v9.0.3) --- updated-dependencies: - dependency-name: Microsoft.Extensions.Hosting.Abstractions dependency-version: 9.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: Microsoft.Extensions.Logging.Abstractions dependency-version: 9.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: Sentry.Serilog dependency-version: 5.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: Microsoft.Extensions.Hosting.Abstractions dependency-version: 9.0.0 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: Microsoft.Extensions.Logging.Abstractions dependency-version: 9.0.0 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: Serilog.Enrichers.AzureClaims dependency-version: 1.1.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: Swashbuckle.AspNetCore dependency-version: 8.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: Microsoft.Extensions.Hosting dependency-version: 9.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all ... Signed-off-by: dependabot[bot] <[email protected]> * fix: bump aspnet deps as well --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Herman Jensen <[email protected]>
1 parent c169b6f commit 50a1dbc

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

samples/MinimalApiSample/MinimalApiSample.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Web">
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
44
<TargetFramework>net9.0</TargetFramework>
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.3.1" />
10+
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.0" />
1111
<ProjectReference Include="..\..\src\Intility.Extensions.Logging.Elasticsearch\Intility.Extensions.Logging.Elasticsearch.csproj" />
1212
<ProjectReference Include="..\..\src\Intility.Extensions.Logging.Sentry\Intility.Extensions.Logging.Sentry.csproj" />
1313
<ProjectReference Include="..\..\src\Intility.Logging.AspNetCore\Intility.Logging.AspNetCore.csproj" />

samples/WorkerSample/WorkerSample.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Worker">
1+
<Project Sdk="Microsoft.NET.Sdk.Worker">
22

33
<PropertyGroup>
44
<TargetFramework>net9.0</TargetFramework>
55
<UserSecretsId>dotnet-WorkerSample-E1FD34C8-B239-4D87-8143-0BA5129DDB52</UserSecretsId>
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.2" />
10-
<PackageReference Include="Serilog.Enrichers.AzureClaims" Version="1.1.2" />
9+
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.3" />
10+
<PackageReference Include="Serilog.Enrichers.AzureClaims" Version="1.1.3" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

src/Intility.Extensions.Logging.Sentry/Intility.Extensions.Logging.Sentry.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
<ItemGroup>
2323
<PackageReference Include="Sentry.AspNetCore" Version="5.0.1" />
24-
<PackageReference Include="Sentry.Serilog" Version="5.2.0" />
24+
<PackageReference Include="Sentry.Serilog" Version="5.4.0" />
2525
</ItemGroup>
2626

2727
<ItemGroup>

src/Intility.Extensions.Logging/Intility.Extensions.Logging.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
@@ -29,7 +29,7 @@
2929
</ItemGroup>
3030

3131
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
32-
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.2" />
32+
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.3" />
3333
</ItemGroup>
3434

3535
<ItemGroup>

src/Intility.Logging.AspNetCore/Intility.Logging.AspNetCore.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
</ItemGroup>
3636

3737
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
38-
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.2" />
39-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.2" />
38+
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.3" />
39+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.3" />
4040
<PackageReference Include="Serilog.AspNetCore" Version="9.0.0" />
4141
</ItemGroup>
4242

0 commit comments

Comments
 (0)