From 47d0f0ff16ec3927a952b58b148fb31592944dc3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 May 2024 16:47:05 +0000 Subject: [PATCH 1/6] Bump YamlDotNet from 13.1.0 to 15.1.4 Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 13.1.0 to 15.1.4. - [Release notes](https://github.com/aaubry/YamlDotNet/releases) - [Commits](https://github.com/aaubry/YamlDotNet/compare/v13.1.0...v15.1.4) --- updated-dependencies: - dependency-name: YamlDotNet dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- GetIntoTeachingApi/GetIntoTeachingApi.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GetIntoTeachingApi/GetIntoTeachingApi.csproj b/GetIntoTeachingApi/GetIntoTeachingApi.csproj index 4f4a54c40..be7bb3242 100644 --- a/GetIntoTeachingApi/GetIntoTeachingApi.csproj +++ b/GetIntoTeachingApi/GetIntoTeachingApi.csproj @@ -42,7 +42,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive all From b6290360d9d299e392c356cf9456d8d5d5cdd25c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 May 2024 16:47:23 +0000 Subject: [PATCH 2/6] Bump Hangfire.PostgreSql from 1.19.12 to 1.20.8 Bumps Hangfire.PostgreSql from 1.19.12 to 1.20.8. --- updated-dependencies: - dependency-name: Hangfire.PostgreSql dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- GetIntoTeachingApi/GetIntoTeachingApi.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GetIntoTeachingApi/GetIntoTeachingApi.csproj b/GetIntoTeachingApi/GetIntoTeachingApi.csproj index 4f4a54c40..668d2e88a 100644 --- a/GetIntoTeachingApi/GetIntoTeachingApi.csproj +++ b/GetIntoTeachingApi/GetIntoTeachingApi.csproj @@ -60,7 +60,7 @@ - + From 268d53e13f843c96895b6b7b38552c84ff380682 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 May 2024 05:11:54 +0000 Subject: [PATCH 3/6] Bump xunit.runner.visualstudio from 2.5.8 to 2.8.0 Bumps [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) from 2.5.8 to 2.8.0. - [Release notes](https://github.com/xunit/visualstudio.xunit/releases) - [Commits](https://github.com/xunit/visualstudio.xunit/compare/2.5.8...2.8.0) --- updated-dependencies: - dependency-name: xunit.runner.visualstudio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- GetIntoTeachingApiTests/GetIntoTeachingApiTests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GetIntoTeachingApiTests/GetIntoTeachingApiTests.csproj b/GetIntoTeachingApiTests/GetIntoTeachingApiTests.csproj index 6a5ad6959..d3c24d76e 100644 --- a/GetIntoTeachingApiTests/GetIntoTeachingApiTests.csproj +++ b/GetIntoTeachingApiTests/GetIntoTeachingApiTests.csproj @@ -32,7 +32,7 @@ - runtime; build; native; contentfiles; analyzers; buildtransitive + runtime; build; native; contentfiles; analyzers; buildtransitive all runtime; build; native; contentfiles; analyzers; buildtransitive From 360f43fd6b6839556939b4d99b9d87a1bcc79dc8 Mon Sep 17 00:00:00 2001 From: Martyn Whitwell Date: Mon, 20 May 2024 11:20:37 +0100 Subject: [PATCH 4/6] update obsolete code --- .../AppStart/ServiceCollectionExtensions.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/GetIntoTeachingApi/AppStart/ServiceCollectionExtensions.cs b/GetIntoTeachingApi/AppStart/ServiceCollectionExtensions.cs index e524fcbbf..ffd3d7d77 100644 --- a/GetIntoTeachingApi/AppStart/ServiceCollectionExtensions.cs +++ b/GetIntoTeachingApi/AppStart/ServiceCollectionExtensions.cs @@ -131,10 +131,11 @@ public static void AddHangfire(this IServiceCollection services, IEnv env, bool config.UseMemoryStorage().WithJobExpirationTimeout(JobConfiguration.ExpirationTimeout); } else - { config.UsePostgreSqlStorage(DbConfiguration.HangfireConnectionString(env), new PostgreSqlStorageOptions - { - SchemaName = "hangfire_postgres" - }); + { + config.UsePostgreSqlStorage(options => + options.UseNpgsqlConnection(DbConfiguration.HangfireConnectionString(env)), + new PostgreSqlStorageOptions { SchemaName = "hangfire_postgres" } + ); } }); From 03363638b0271ad23dbc0b4cf84aec3dbd7ec5b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 May 2024 11:24:16 +0000 Subject: [PATCH 5/6] Bump Microsoft.Extensions.Caching.StackExchangeRedis from 8.0.4 to 8.0.5 Bumps [Microsoft.Extensions.Caching.StackExchangeRedis](https://github.com/dotnet/aspnetcore) from 8.0.4 to 8.0.5. - [Release notes](https://github.com/dotnet/aspnetcore/releases) - [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md) - [Commits](https://github.com/dotnet/aspnetcore/compare/v8.0.4...v8.0.5) --- updated-dependencies: - dependency-name: Microsoft.Extensions.Caching.StackExchangeRedis dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- GetIntoTeachingApi/GetIntoTeachingApi.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GetIntoTeachingApi/GetIntoTeachingApi.csproj b/GetIntoTeachingApi/GetIntoTeachingApi.csproj index 668d2e88a..2adcc8a08 100644 --- a/GetIntoTeachingApi/GetIntoTeachingApi.csproj +++ b/GetIntoTeachingApi/GetIntoTeachingApi.csproj @@ -63,7 +63,7 @@ - + From bc1f738a3e932f2408927b68b504ff734d63d864 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 May 2024 11:55:08 +0000 Subject: [PATCH 6/6] Bump Sentry.AspNetCore from 3.33.0 to 4.6.2 Bumps [Sentry.AspNetCore](https://github.com/getsentry/sentry-dotnet) from 3.33.0 to 4.6.2. - [Release notes](https://github.com/getsentry/sentry-dotnet/releases) - [Changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md) - [Commits](https://github.com/getsentry/sentry-dotnet/compare/3.33.0...4.6.2) --- updated-dependencies: - dependency-name: Sentry.AspNetCore dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- GetIntoTeachingApi/GetIntoTeachingApi.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GetIntoTeachingApi/GetIntoTeachingApi.csproj b/GetIntoTeachingApi/GetIntoTeachingApi.csproj index c42763668..addc9d3ba 100644 --- a/GetIntoTeachingApi/GetIntoTeachingApi.csproj +++ b/GetIntoTeachingApi/GetIntoTeachingApi.csproj @@ -35,7 +35,7 @@ - +