From bd0945f6c8ef20259a457024d90d8e706f60827c Mon Sep 17 00:00:00 2001 From: Mika Aaron Herrmann <65243124+MH321Productions@users.noreply.github.com> Date: Wed, 12 Feb 2025 13:10:07 +0100 Subject: [PATCH 1/4] Remove redundant accessibility modifiers from interface members (#1050) * Remove unnecessary accessibility modifiers from interfaces * Remove more accessibility modifiers --- .../Application/MessageDistributor/IMessageDistributor.cs | 2 +- .../tools/snapshot-creator/Application/Printer/Printer.cs | 2 +- .../RelationshipDistributor/IRelationshipDistributor.cs | 2 +- .../BuildingBlocks.SDK/Endpoints/Common/IAuthenticator.cs | 2 +- .../Endpoints/Common/Types/IQueryParameterStorage.cs | 2 +- .../Endpoints/Common/Types/IResponse.cs | 8 ++++---- .../Persistence/Repository/IOAuthClientsRepository.cs | 2 +- Modules/Quotas/src/Quotas.Domain/Aggregates/ICreatedAt.cs | 2 +- Modules/Quotas/src/Quotas.Domain/IMetricCalculator.cs | 2 +- .../Persistence/Repository/ITagsRepository.cs | 4 ++-- 10 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Applications/ConsumerApi/test/ConsumerApi.Tests.Performance/tools/snapshot-creator/Application/MessageDistributor/IMessageDistributor.cs b/Applications/ConsumerApi/test/ConsumerApi.Tests.Performance/tools/snapshot-creator/Application/MessageDistributor/IMessageDistributor.cs index 3ca88278b1..b271eb1b01 100644 --- a/Applications/ConsumerApi/test/ConsumerApi.Tests.Performance/tools/snapshot-creator/Application/MessageDistributor/IMessageDistributor.cs +++ b/Applications/ConsumerApi/test/ConsumerApi.Tests.Performance/tools/snapshot-creator/Application/MessageDistributor/IMessageDistributor.cs @@ -4,5 +4,5 @@ namespace Backbone.ConsumerApi.Tests.Performance.SnapshotCreator.Application.Mes public interface IMessageDistributor { - public void Distribute(IList pools); + void Distribute(IList pools); } diff --git a/Applications/ConsumerApi/test/ConsumerApi.Tests.Performance/tools/snapshot-creator/Application/Printer/Printer.cs b/Applications/ConsumerApi/test/ConsumerApi.Tests.Performance/tools/snapshot-creator/Application/Printer/Printer.cs index eb1d7f2bf2..5ec67894d8 100644 --- a/Applications/ConsumerApi/test/ConsumerApi.Tests.Performance/tools/snapshot-creator/Application/Printer/Printer.cs +++ b/Applications/ConsumerApi/test/ConsumerApi.Tests.Performance/tools/snapshot-creator/Application/Printer/Printer.cs @@ -196,7 +196,7 @@ public void PrintStringToFile(string value, string filename) public interface IPrinter { - public void OutputAll(IList pools, PrintTarget target = PrintTarget.All); + void OutputAll(IList pools, PrintTarget target = PrintTarget.All); protected internal void PrintRelationships(IList pools, bool summaryOnly = false); protected internal void PrintMessages(IList pools, bool summaryOnly = false); void PrintStringToFile(string value, string filename); diff --git a/Applications/ConsumerApi/test/ConsumerApi.Tests.Performance/tools/snapshot-creator/Application/RelationshipDistributor/IRelationshipDistributor.cs b/Applications/ConsumerApi/test/ConsumerApi.Tests.Performance/tools/snapshot-creator/Application/RelationshipDistributor/IRelationshipDistributor.cs index 7236fb667b..e25851419f 100644 --- a/Applications/ConsumerApi/test/ConsumerApi.Tests.Performance/tools/snapshot-creator/Application/RelationshipDistributor/IRelationshipDistributor.cs +++ b/Applications/ConsumerApi/test/ConsumerApi.Tests.Performance/tools/snapshot-creator/Application/RelationshipDistributor/IRelationshipDistributor.cs @@ -4,5 +4,5 @@ namespace Backbone.ConsumerApi.Tests.Performance.SnapshotCreator.Application.Rel public interface IRelationshipDistributor { - public void Distribute(IList pools); + void Distribute(IList pools); } diff --git a/BuildingBlocks/src/BuildingBlocks.SDK/Endpoints/Common/IAuthenticator.cs b/BuildingBlocks/src/BuildingBlocks.SDK/Endpoints/Common/IAuthenticator.cs index fed0de22ec..28584eb10f 100644 --- a/BuildingBlocks/src/BuildingBlocks.SDK/Endpoints/Common/IAuthenticator.cs +++ b/BuildingBlocks/src/BuildingBlocks.SDK/Endpoints/Common/IAuthenticator.cs @@ -2,5 +2,5 @@ public interface IAuthenticator { - public Task Authenticate(HttpRequestMessage request); + Task Authenticate(HttpRequestMessage request); } diff --git a/BuildingBlocks/src/BuildingBlocks.SDK/Endpoints/Common/Types/IQueryParameterStorage.cs b/BuildingBlocks/src/BuildingBlocks.SDK/Endpoints/Common/Types/IQueryParameterStorage.cs index bda5341628..d5e617c794 100644 --- a/BuildingBlocks/src/BuildingBlocks.SDK/Endpoints/Common/Types/IQueryParameterStorage.cs +++ b/BuildingBlocks/src/BuildingBlocks.SDK/Endpoints/Common/Types/IQueryParameterStorage.cs @@ -4,5 +4,5 @@ namespace Backbone.BuildingBlocks.SDK.Endpoints.Common.Types; public interface IQueryParameterStorage { - public NameValueCollection ToQueryParameters(); + NameValueCollection ToQueryParameters(); } diff --git a/BuildingBlocks/src/BuildingBlocks.SDK/Endpoints/Common/Types/IResponse.cs b/BuildingBlocks/src/BuildingBlocks.SDK/Endpoints/Common/Types/IResponse.cs index 67916755b2..2915f68427 100644 --- a/BuildingBlocks/src/BuildingBlocks.SDK/Endpoints/Common/Types/IResponse.cs +++ b/BuildingBlocks/src/BuildingBlocks.SDK/Endpoints/Common/Types/IResponse.cs @@ -4,8 +4,8 @@ namespace Backbone.BuildingBlocks.SDK.Endpoints.Common.Types; public interface IResponse { - public bool IsSuccess { get; } - public bool IsError { get; } - public ApiError? Error { get; set; } - public HttpStatusCode Status { get; set; } + bool IsSuccess { get; } + bool IsError { get; } + ApiError? Error { get; set; } + HttpStatusCode Status { get; set; } } diff --git a/Modules/Devices/src/Devices.Application/Infrastructure/Persistence/Repository/IOAuthClientsRepository.cs b/Modules/Devices/src/Devices.Application/Infrastructure/Persistence/Repository/IOAuthClientsRepository.cs index 484da20894..3d8f84a573 100644 --- a/Modules/Devices/src/Devices.Application/Infrastructure/Persistence/Repository/IOAuthClientsRepository.cs +++ b/Modules/Devices/src/Devices.Application/Infrastructure/Persistence/Repository/IOAuthClientsRepository.cs @@ -5,7 +5,7 @@ namespace Backbone.Modules.Devices.Application.Infrastructure.Persistence.Reposi public interface IOAuthClientsRepository { Task> FindAll(CancellationToken cancellationToken, bool track = false); - public Task> CountIdentities(List clients, CancellationToken cancellationToken); + Task> CountIdentities(List clients, CancellationToken cancellationToken); Task Find(string clientId, CancellationToken cancellationToken, bool track = false); Task Exists(string clientId, CancellationToken cancellationToken); Task Add(OAuthClient client, string clientSecret, CancellationToken cancellationToken); diff --git a/Modules/Quotas/src/Quotas.Domain/Aggregates/ICreatedAt.cs b/Modules/Quotas/src/Quotas.Domain/Aggregates/ICreatedAt.cs index 4291b4d312..5d6537064c 100644 --- a/Modules/Quotas/src/Quotas.Domain/Aggregates/ICreatedAt.cs +++ b/Modules/Quotas/src/Quotas.Domain/Aggregates/ICreatedAt.cs @@ -2,5 +2,5 @@ namespace Backbone.Modules.Quotas.Domain.Aggregates; public interface ICreatedAt { - public DateTime CreatedAt { get; } + DateTime CreatedAt { get; } } diff --git a/Modules/Quotas/src/Quotas.Domain/IMetricCalculator.cs b/Modules/Quotas/src/Quotas.Domain/IMetricCalculator.cs index e2fed7559d..9299f84806 100644 --- a/Modules/Quotas/src/Quotas.Domain/IMetricCalculator.cs +++ b/Modules/Quotas/src/Quotas.Domain/IMetricCalculator.cs @@ -1,5 +1,5 @@ namespace Backbone.Modules.Quotas.Domain; public interface IMetricCalculator { - public Task CalculateUsage(DateTime from, DateTime to, string identityAddress, CancellationToken cancellationToken); + Task CalculateUsage(DateTime from, DateTime to, string identityAddress, CancellationToken cancellationToken); } diff --git a/Modules/Tags/src/Tags.Application/Infrastructure/Persistence/Repository/ITagsRepository.cs b/Modules/Tags/src/Tags.Application/Infrastructure/Persistence/Repository/ITagsRepository.cs index 9815619c40..be27b2ad9a 100644 --- a/Modules/Tags/src/Tags.Application/Infrastructure/Persistence/Repository/ITagsRepository.cs +++ b/Modules/Tags/src/Tags.Application/Infrastructure/Persistence/Repository/ITagsRepository.cs @@ -4,6 +4,6 @@ namespace Backbone.Modules.Tags.Application.Infrastructure.Persistence.Repositor public interface ITagsRepository { - public IEnumerable GetSupportedLanguages(); - public Dictionary> GetAttributes(); + IEnumerable GetSupportedLanguages(); + Dictionary> GetAttributes(); } From c63a44369ae78e505c79feee00983128391e0ef4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 12 Feb 2025 12:22:33 +0000 Subject: [PATCH 2/4] fix(deps): update patch-all (#1049) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .../AdminApi/src/AdminApi/AdminApi.csproj | 2 +- .../AdminApi.Tests.Integration.csproj | 12 ++++++------ .../ConsumerApi/src/ConsumerApi.csproj | 8 ++++---- .../ConsumerApi.Tests.Integration.csproj | 12 ++++++------ .../tools/crypto-sidecar/package-lock.json | 7 ++++--- ...pi.Tests.Performance.SnapshotCreator.csproj | 2 +- .../DatabaseMigrator/DatabaseMigrator.csproj | 8 ++++---- .../Job.IdentityDeletion.csproj | 2 +- .../SseServer/src/SseServer/SseServer.csproj | 4 ++-- .../BuildingBlocks.API.csproj | 4 ++-- ...ldingBlocks.Application.Abstractions.csproj | 2 +- .../BuildingBlocks.Application.csproj | 4 ++-- .../BuildingBlocks.Infrastructure.csproj | 18 +++++++++--------- BuildingBlocks/src/Tooling/Tooling.csproj | 2 +- .../src/UnitTestTools/UnitTestTools.csproj | 2 +- .../Common.Infrastructure.csproj | 2 +- .../Announcements.ConsumerApi.csproj | 2 +- .../Announcements.Infrastructure.csproj | 6 +++--- .../Challenges.ConsumerApi.csproj | 2 +- .../Challenges.Infrastructure.csproj | 4 ++-- .../Challenges.Jobs.Cleanup.csproj | 2 +- .../Devices.ConsumerApi.csproj | 2 +- .../src/Devices.Domain/Devices.Domain.csproj | 2 +- .../Devices.Infrastructure.csproj | 16 ++++++++-------- .../Files.ConsumerApi/Files.ConsumerApi.csproj | 2 +- .../Files.Infrastructure.csproj | 4 ++-- .../Messages.ConsumerApi.csproj | 2 +- .../Messages.Infrastructure.csproj | 4 ++-- .../Quotas.ConsumerApi.csproj | 2 +- .../Quotas.Infrastructure.csproj | 6 +++--- .../Relationships.ConsumerApi.csproj | 2 +- .../Relationships.Infrastructure.csproj | 4 ++-- .../Synchronization.ConsumerApi.csproj | 2 +- .../Synchronization.Infrastructure.csproj | 6 +++--- .../Tags.ConsumerApi/Tags.ConsumerApi.csproj | 2 +- .../Tokens.ConsumerApi.csproj | 2 +- .../Tokens.Infrastructure.csproj | 4 ++-- 37 files changed, 85 insertions(+), 84 deletions(-) diff --git a/Applications/AdminApi/src/AdminApi/AdminApi.csproj b/Applications/AdminApi/src/AdminApi/AdminApi.csproj index ff1e8509a1..c5ff73c1c7 100644 --- a/Applications/AdminApi/src/AdminApi/AdminApi.csproj +++ b/Applications/AdminApi/src/AdminApi/AdminApi.csproj @@ -10,7 +10,7 @@ - + diff --git a/Applications/AdminApi/test/AdminApi.Tests.Integration/AdminApi.Tests.Integration.csproj b/Applications/AdminApi/test/AdminApi.Tests.Integration/AdminApi.Tests.Integration.csproj index 2544606ea3..2ba523ac15 100644 --- a/Applications/AdminApi/test/AdminApi.Tests.Integration/AdminApi.Tests.Integration.csproj +++ b/Applications/AdminApi/test/AdminApi.Tests.Integration/AdminApi.Tests.Integration.csproj @@ -5,14 +5,14 @@ - - - - - + + + + + - + diff --git a/Applications/ConsumerApi/src/ConsumerApi.csproj b/Applications/ConsumerApi/src/ConsumerApi.csproj index b24cef7b6f..cd52bf3846 100644 --- a/Applications/ConsumerApi/src/ConsumerApi.csproj +++ b/Applications/ConsumerApi/src/ConsumerApi.csproj @@ -7,13 +7,13 @@ - + - - + + - + diff --git a/Applications/ConsumerApi/test/ConsumerApi.Tests.Integration/ConsumerApi.Tests.Integration.csproj b/Applications/ConsumerApi/test/ConsumerApi.Tests.Integration/ConsumerApi.Tests.Integration.csproj index d736d666d1..3d927267b2 100644 --- a/Applications/ConsumerApi/test/ConsumerApi.Tests.Integration/ConsumerApi.Tests.Integration.csproj +++ b/Applications/ConsumerApi/test/ConsumerApi.Tests.Integration/ConsumerApi.Tests.Integration.csproj @@ -5,14 +5,14 @@ - - - - - + + + + + - + diff --git a/Applications/ConsumerApi/test/ConsumerApi.Tests.Performance/tools/crypto-sidecar/package-lock.json b/Applications/ConsumerApi/test/ConsumerApi.Tests.Performance/tools/crypto-sidecar/package-lock.json index 5e90e4af65..108baac959 100644 --- a/Applications/ConsumerApi/test/ConsumerApi.Tests.Performance/tools/crypto-sidecar/package-lock.json +++ b/Applications/ConsumerApi/test/ConsumerApi.Tests.Performance/tools/crypto-sidecar/package-lock.json @@ -718,9 +718,10 @@ } }, "node_modules/koa": { - "version": "2.15.3", - "resolved": "https://registry.npmjs.org/koa/-/koa-2.15.3.tgz", - "integrity": "sha512-j/8tY9j5t+GVMLeioLaxweJiKUayFhlGqNTzf2ZGwL0ZCQijd2RLHK0SLW5Tsko8YyyqCZC2cojIb0/s62qTAg==", + "version": "2.15.4", + "resolved": "https://registry.npmjs.org/koa/-/koa-2.15.4.tgz", + "integrity": "sha512-7fNBIdrU2PEgLljXoPWoyY4r1e+ToWCmzS/wwMPbUNs7X+5MMET1ObhJBlUkF5uZG9B6QhM2zS1TsH6adegkiQ==", + "license": "MIT", "dependencies": { "accepts": "^1.3.5", "cache-content-type": "^1.0.0", diff --git a/Applications/ConsumerApi/test/ConsumerApi.Tests.Performance/tools/snapshot-creator/ConsumerApi.Tests.Performance.SnapshotCreator.csproj b/Applications/ConsumerApi/test/ConsumerApi.Tests.Performance/tools/snapshot-creator/ConsumerApi.Tests.Performance.SnapshotCreator.csproj index 8bd8dd923c..0537ebca01 100644 --- a/Applications/ConsumerApi/test/ConsumerApi.Tests.Performance/tools/snapshot-creator/ConsumerApi.Tests.Performance.SnapshotCreator.csproj +++ b/Applications/ConsumerApi/test/ConsumerApi.Tests.Performance/tools/snapshot-creator/ConsumerApi.Tests.Performance.SnapshotCreator.csproj @@ -6,7 +6,7 @@ - + diff --git a/Applications/DatabaseMigrator/src/DatabaseMigrator/DatabaseMigrator.csproj b/Applications/DatabaseMigrator/src/DatabaseMigrator/DatabaseMigrator.csproj index 979fc74279..e4c14e91aa 100644 --- a/Applications/DatabaseMigrator/src/DatabaseMigrator/DatabaseMigrator.csproj +++ b/Applications/DatabaseMigrator/src/DatabaseMigrator/DatabaseMigrator.csproj @@ -7,13 +7,13 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - + + + diff --git a/Applications/IdentityDeletionJobs/src/Job.IdentityDeletion/Job.IdentityDeletion.csproj b/Applications/IdentityDeletionJobs/src/Job.IdentityDeletion/Job.IdentityDeletion.csproj index 49f2850c08..1b2f2619b0 100644 --- a/Applications/IdentityDeletionJobs/src/Job.IdentityDeletion/Job.IdentityDeletion.csproj +++ b/Applications/IdentityDeletionJobs/src/Job.IdentityDeletion/Job.IdentityDeletion.csproj @@ -8,7 +8,7 @@ - + diff --git a/Applications/SseServer/src/SseServer/SseServer.csproj b/Applications/SseServer/src/SseServer/SseServer.csproj index 797c060318..e8b6bc15b0 100644 --- a/Applications/SseServer/src/SseServer/SseServer.csproj +++ b/Applications/SseServer/src/SseServer/SseServer.csproj @@ -2,10 +2,10 @@ - + - + diff --git a/BuildingBlocks/src/BuildingBlocks.API/BuildingBlocks.API.csproj b/BuildingBlocks/src/BuildingBlocks.API/BuildingBlocks.API.csproj index e40495553f..76df9d1b84 100644 --- a/BuildingBlocks/src/BuildingBlocks.API/BuildingBlocks.API.csproj +++ b/BuildingBlocks/src/BuildingBlocks.API/BuildingBlocks.API.csproj @@ -3,8 +3,8 @@ - - + + diff --git a/BuildingBlocks/src/BuildingBlocks.Application.Abstractions/BuildingBlocks.Application.Abstractions.csproj b/BuildingBlocks/src/BuildingBlocks.Application.Abstractions/BuildingBlocks.Application.Abstractions.csproj index 219327b78c..34b5c8774d 100644 --- a/BuildingBlocks/src/BuildingBlocks.Application.Abstractions/BuildingBlocks.Application.Abstractions.csproj +++ b/BuildingBlocks/src/BuildingBlocks.Application.Abstractions/BuildingBlocks.Application.Abstractions.csproj @@ -10,7 +10,7 @@ - + diff --git a/BuildingBlocks/src/BuildingBlocks.Application/BuildingBlocks.Application.csproj b/BuildingBlocks/src/BuildingBlocks.Application/BuildingBlocks.Application.csproj index 91251bd531..27d40e90c9 100644 --- a/BuildingBlocks/src/BuildingBlocks.Application/BuildingBlocks.Application.csproj +++ b/BuildingBlocks/src/BuildingBlocks.Application/BuildingBlocks.Application.csproj @@ -3,9 +3,9 @@ - + - + diff --git a/BuildingBlocks/src/BuildingBlocks.Infrastructure/BuildingBlocks.Infrastructure.csproj b/BuildingBlocks/src/BuildingBlocks.Infrastructure/BuildingBlocks.Infrastructure.csproj index 6b185452f6..983d5035c7 100644 --- a/BuildingBlocks/src/BuildingBlocks.Infrastructure/BuildingBlocks.Infrastructure.csproj +++ b/BuildingBlocks/src/BuildingBlocks.Infrastructure/BuildingBlocks.Infrastructure.csproj @@ -2,20 +2,20 @@ - - + + - - - - - + + + + + - + - + diff --git a/BuildingBlocks/src/Tooling/Tooling.csproj b/BuildingBlocks/src/Tooling/Tooling.csproj index f7e5e01627..c812249542 100644 --- a/BuildingBlocks/src/Tooling/Tooling.csproj +++ b/BuildingBlocks/src/Tooling/Tooling.csproj @@ -1,7 +1,7 @@ - + diff --git a/BuildingBlocks/src/UnitTestTools/UnitTestTools.csproj b/BuildingBlocks/src/UnitTestTools/UnitTestTools.csproj index 390e9b68c3..42d10059eb 100644 --- a/BuildingBlocks/src/UnitTestTools/UnitTestTools.csproj +++ b/BuildingBlocks/src/UnitTestTools/UnitTestTools.csproj @@ -10,7 +10,7 @@ - + diff --git a/Common/src/Common.Infrastructure/Common.Infrastructure.csproj b/Common/src/Common.Infrastructure/Common.Infrastructure.csproj index f36d38bb96..b9db647103 100644 --- a/Common/src/Common.Infrastructure/Common.Infrastructure.csproj +++ b/Common/src/Common.Infrastructure/Common.Infrastructure.csproj @@ -2,7 +2,7 @@ - + diff --git a/Modules/Announcements/src/Announcements.ConsumerApi/Announcements.ConsumerApi.csproj b/Modules/Announcements/src/Announcements.ConsumerApi/Announcements.ConsumerApi.csproj index d3a414d1b4..fe0eb78f41 100644 --- a/Modules/Announcements/src/Announcements.ConsumerApi/Announcements.ConsumerApi.csproj +++ b/Modules/Announcements/src/Announcements.ConsumerApi/Announcements.ConsumerApi.csproj @@ -9,7 +9,7 @@ - + diff --git a/Modules/Announcements/src/Announcements.Infrastructure/Announcements.Infrastructure.csproj b/Modules/Announcements/src/Announcements.Infrastructure/Announcements.Infrastructure.csproj index 4a022bcfee..0d22c8f46b 100644 --- a/Modules/Announcements/src/Announcements.Infrastructure/Announcements.Infrastructure.csproj +++ b/Modules/Announcements/src/Announcements.Infrastructure/Announcements.Infrastructure.csproj @@ -1,9 +1,9 @@  - - - + + + diff --git a/Modules/Challenges/src/Challenges.ConsumerApi/Challenges.ConsumerApi.csproj b/Modules/Challenges/src/Challenges.ConsumerApi/Challenges.ConsumerApi.csproj index 73c38a054b..2b632c42a7 100644 --- a/Modules/Challenges/src/Challenges.ConsumerApi/Challenges.ConsumerApi.csproj +++ b/Modules/Challenges/src/Challenges.ConsumerApi/Challenges.ConsumerApi.csproj @@ -10,6 +10,6 @@ - + diff --git a/Modules/Challenges/src/Challenges.Infrastructure/Challenges.Infrastructure.csproj b/Modules/Challenges/src/Challenges.Infrastructure/Challenges.Infrastructure.csproj index 3efe963083..9a5bd7e85c 100644 --- a/Modules/Challenges/src/Challenges.Infrastructure/Challenges.Infrastructure.csproj +++ b/Modules/Challenges/src/Challenges.Infrastructure/Challenges.Infrastructure.csproj @@ -1,8 +1,8 @@ - - + + diff --git a/Modules/Challenges/src/Challenges.Jobs.Cleanup/Challenges.Jobs.Cleanup.csproj b/Modules/Challenges/src/Challenges.Jobs.Cleanup/Challenges.Jobs.Cleanup.csproj index 9a0eb2cc96..76344e2b16 100644 --- a/Modules/Challenges/src/Challenges.Jobs.Cleanup/Challenges.Jobs.Cleanup.csproj +++ b/Modules/Challenges/src/Challenges.Jobs.Cleanup/Challenges.Jobs.Cleanup.csproj @@ -5,7 +5,7 @@ - + diff --git a/Modules/Devices/src/Devices.ConsumerApi/Devices.ConsumerApi.csproj b/Modules/Devices/src/Devices.ConsumerApi/Devices.ConsumerApi.csproj index c5b16feb18..44578c1111 100644 --- a/Modules/Devices/src/Devices.ConsumerApi/Devices.ConsumerApi.csproj +++ b/Modules/Devices/src/Devices.ConsumerApi/Devices.ConsumerApi.csproj @@ -10,6 +10,6 @@ - + diff --git a/Modules/Devices/src/Devices.Domain/Devices.Domain.csproj b/Modules/Devices/src/Devices.Domain/Devices.Domain.csproj index 6b3319689e..23da05199c 100644 --- a/Modules/Devices/src/Devices.Domain/Devices.Domain.csproj +++ b/Modules/Devices/src/Devices.Domain/Devices.Domain.csproj @@ -1,7 +1,7 @@ - + diff --git a/Modules/Devices/src/Devices.Infrastructure/Devices.Infrastructure.csproj b/Modules/Devices/src/Devices.Infrastructure/Devices.Infrastructure.csproj index 411891dd97..d0ed5522c6 100644 --- a/Modules/Devices/src/Devices.Infrastructure/Devices.Infrastructure.csproj +++ b/Modules/Devices/src/Devices.Infrastructure/Devices.Infrastructure.csproj @@ -3,19 +3,19 @@ - - - - - - + + + + + + - + - + diff --git a/Modules/Files/src/Files.ConsumerApi/Files.ConsumerApi.csproj b/Modules/Files/src/Files.ConsumerApi/Files.ConsumerApi.csproj index 2a6706accc..f7522cedb6 100644 --- a/Modules/Files/src/Files.ConsumerApi/Files.ConsumerApi.csproj +++ b/Modules/Files/src/Files.ConsumerApi/Files.ConsumerApi.csproj @@ -11,6 +11,6 @@ - + diff --git a/Modules/Files/src/Files.Infrastructure/Files.Infrastructure.csproj b/Modules/Files/src/Files.Infrastructure/Files.Infrastructure.csproj index 3045244b52..1f2f085edc 100644 --- a/Modules/Files/src/Files.Infrastructure/Files.Infrastructure.csproj +++ b/Modules/Files/src/Files.Infrastructure/Files.Infrastructure.csproj @@ -1,8 +1,8 @@ - - + + diff --git a/Modules/Messages/src/Messages.ConsumerApi/Messages.ConsumerApi.csproj b/Modules/Messages/src/Messages.ConsumerApi/Messages.ConsumerApi.csproj index 3a64b68916..db36af3c71 100644 --- a/Modules/Messages/src/Messages.ConsumerApi/Messages.ConsumerApi.csproj +++ b/Modules/Messages/src/Messages.ConsumerApi/Messages.ConsumerApi.csproj @@ -10,7 +10,7 @@ - + diff --git a/Modules/Messages/src/Messages.Infrastructure/Messages.Infrastructure.csproj b/Modules/Messages/src/Messages.Infrastructure/Messages.Infrastructure.csproj index fc0b127f5e..ebdcb47fde 100644 --- a/Modules/Messages/src/Messages.Infrastructure/Messages.Infrastructure.csproj +++ b/Modules/Messages/src/Messages.Infrastructure/Messages.Infrastructure.csproj @@ -1,8 +1,8 @@ - - + + diff --git a/Modules/Quotas/src/Quotas.ConsumerApi/Quotas.ConsumerApi.csproj b/Modules/Quotas/src/Quotas.ConsumerApi/Quotas.ConsumerApi.csproj index 9eeabe3345..63e151a2d8 100644 --- a/Modules/Quotas/src/Quotas.ConsumerApi/Quotas.ConsumerApi.csproj +++ b/Modules/Quotas/src/Quotas.ConsumerApi/Quotas.ConsumerApi.csproj @@ -9,7 +9,7 @@ - + diff --git a/Modules/Quotas/src/Quotas.Infrastructure/Quotas.Infrastructure.csproj b/Modules/Quotas/src/Quotas.Infrastructure/Quotas.Infrastructure.csproj index feac4e6993..62c5e88fc6 100644 --- a/Modules/Quotas/src/Quotas.Infrastructure/Quotas.Infrastructure.csproj +++ b/Modules/Quotas/src/Quotas.Infrastructure/Quotas.Infrastructure.csproj @@ -1,10 +1,10 @@ - - + + - + diff --git a/Modules/Relationships/src/Relationships.ConsumerApi/Relationships.ConsumerApi.csproj b/Modules/Relationships/src/Relationships.ConsumerApi/Relationships.ConsumerApi.csproj index 9436840e64..a5bd281e5d 100644 --- a/Modules/Relationships/src/Relationships.ConsumerApi/Relationships.ConsumerApi.csproj +++ b/Modules/Relationships/src/Relationships.ConsumerApi/Relationships.ConsumerApi.csproj @@ -11,6 +11,6 @@ - + diff --git a/Modules/Relationships/src/Relationships.Infrastructure/Relationships.Infrastructure.csproj b/Modules/Relationships/src/Relationships.Infrastructure/Relationships.Infrastructure.csproj index 87a3c464aa..e61f13d4d8 100644 --- a/Modules/Relationships/src/Relationships.Infrastructure/Relationships.Infrastructure.csproj +++ b/Modules/Relationships/src/Relationships.Infrastructure/Relationships.Infrastructure.csproj @@ -1,8 +1,8 @@ - - + + diff --git a/Modules/Synchronization/src/Synchronization.ConsumerApi/Synchronization.ConsumerApi.csproj b/Modules/Synchronization/src/Synchronization.ConsumerApi/Synchronization.ConsumerApi.csproj index 1f582dfc64..e607df2131 100644 --- a/Modules/Synchronization/src/Synchronization.ConsumerApi/Synchronization.ConsumerApi.csproj +++ b/Modules/Synchronization/src/Synchronization.ConsumerApi/Synchronization.ConsumerApi.csproj @@ -10,6 +10,6 @@ - + diff --git a/Modules/Synchronization/src/Synchronization.Infrastructure/Synchronization.Infrastructure.csproj b/Modules/Synchronization/src/Synchronization.Infrastructure/Synchronization.Infrastructure.csproj index 93cabc3fe3..72cf89abe1 100644 --- a/Modules/Synchronization/src/Synchronization.Infrastructure/Synchronization.Infrastructure.csproj +++ b/Modules/Synchronization/src/Synchronization.Infrastructure/Synchronization.Infrastructure.csproj @@ -7,9 +7,9 @@ - - - + + + diff --git a/Modules/Tags/src/Tags.ConsumerApi/Tags.ConsumerApi.csproj b/Modules/Tags/src/Tags.ConsumerApi/Tags.ConsumerApi.csproj index c02941a729..5e2b340243 100644 --- a/Modules/Tags/src/Tags.ConsumerApi/Tags.ConsumerApi.csproj +++ b/Modules/Tags/src/Tags.ConsumerApi/Tags.ConsumerApi.csproj @@ -6,6 +6,6 @@ - + diff --git a/Modules/Tokens/src/Tokens.ConsumerApi/Tokens.ConsumerApi.csproj b/Modules/Tokens/src/Tokens.ConsumerApi/Tokens.ConsumerApi.csproj index 35c72187cb..f855cbf9be 100644 --- a/Modules/Tokens/src/Tokens.ConsumerApi/Tokens.ConsumerApi.csproj +++ b/Modules/Tokens/src/Tokens.ConsumerApi/Tokens.ConsumerApi.csproj @@ -10,6 +10,6 @@ - + diff --git a/Modules/Tokens/src/Tokens.Infrastructure/Tokens.Infrastructure.csproj b/Modules/Tokens/src/Tokens.Infrastructure/Tokens.Infrastructure.csproj index 4064442266..a6e4d1baa4 100644 --- a/Modules/Tokens/src/Tokens.Infrastructure/Tokens.Infrastructure.csproj +++ b/Modules/Tokens/src/Tokens.Infrastructure/Tokens.Infrastructure.csproj @@ -1,8 +1,8 @@ - - + + From 8574358b4ae5c8f97900378cc5c8b219e940e543 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 12 Feb 2025 22:57:33 +0000 Subject: [PATCH 3/4] chore(deps): update dependency awssdk.s3 to 3.7.414.4 --- .../BuildingBlocks.Infrastructure.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BuildingBlocks/src/BuildingBlocks.Infrastructure/BuildingBlocks.Infrastructure.csproj b/BuildingBlocks/src/BuildingBlocks.Infrastructure/BuildingBlocks.Infrastructure.csproj index 983d5035c7..ac3d760a87 100644 --- a/BuildingBlocks/src/BuildingBlocks.Infrastructure/BuildingBlocks.Infrastructure.csproj +++ b/BuildingBlocks/src/BuildingBlocks.Infrastructure/BuildingBlocks.Infrastructure.csproj @@ -2,7 +2,7 @@ - + From 9f4b4920b11e5d810d33eb1121bf8aedce9750e3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 13 Feb 2025 06:27:16 +0000 Subject: [PATCH 4/4] chore(deps): update golang docker tag to v1.24 (#1051) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Timo Notheisen <65653426+tnotheis@users.noreply.github.com> --- Applications/AdminApi/src/AdminApi/Dockerfile | 2 +- Applications/ConsumerApi/src/Dockerfile | 2 +- Applications/SseServer/src/SseServer/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Applications/AdminApi/src/AdminApi/Dockerfile b/Applications/AdminApi/src/AdminApi/Dockerfile index 5246292d7c..dc4ad85b8b 100644 --- a/Applications/AdminApi/src/AdminApi/Dockerfile +++ b/Applications/AdminApi/src/AdminApi/Dockerfile @@ -4,7 +4,7 @@ # (see https://github.com/dotnet/dotnet-docker/discussions/4527). # They are copied from https://github.com/ubuntu-rocks/dotnet/issues/21 ################################################################################################################ -FROM golang:1.23 AS chisel +FROM golang:1.24 AS chisel RUN git clone --depth 1 -b main https://github.com/canonical/chisel /opt/chisel WORKDIR /opt/chisel diff --git a/Applications/ConsumerApi/src/Dockerfile b/Applications/ConsumerApi/src/Dockerfile index aeb7b45f5c..132537f2dd 100644 --- a/Applications/ConsumerApi/src/Dockerfile +++ b/Applications/ConsumerApi/src/Dockerfile @@ -4,7 +4,7 @@ # (see https://github.com/dotnet/dotnet-docker/discussions/4527). # They are copied from https://github.com/ubuntu-rocks/dotnet/issues/21 ################################################################################################################ -FROM golang:1.23 AS chisel +FROM golang:1.24 AS chisel RUN git clone --depth 1 -b main https://github.com/canonical/chisel /opt/chisel WORKDIR /opt/chisel diff --git a/Applications/SseServer/src/SseServer/Dockerfile b/Applications/SseServer/src/SseServer/Dockerfile index 557e62218c..3bee96ba48 100644 --- a/Applications/SseServer/src/SseServer/Dockerfile +++ b/Applications/SseServer/src/SseServer/Dockerfile @@ -4,7 +4,7 @@ # (see https://github.com/dotnet/dotnet-docker/discussions/4527). # They are copied from https://github.com/ubuntu-rocks/dotnet/issues/21 ################################################################################################################ -FROM golang:1.23 AS chisel +FROM golang:1.24 AS chisel RUN git clone --depth 1 -b main https://github.com/canonical/chisel /opt/chisel WORKDIR /opt/chisel