From d1a6e19622307f8c2accf0e2f2a1213a9862dd1a Mon Sep 17 00:00:00 2001 From: Stuart Ferguson Date: Sun, 12 Jan 2025 20:07:17 +0000 Subject: [PATCH 1/2] Update package versions across multiple projects Updated the `Shared` package to version `2025.1.2` in `EstateReportingAPI.BusinessLogic.csproj`, `EstateReportingAPI.Client.csproj`, `EstateReportingAPI.IntegrationTests.csproj`, and `EstateReportingAPI.csproj`. Also updated `ClientProxyBase` and `Shared.Results` to version `2025.1.2` in relevant projects. In `EstateReportingAPI.IntegrationTests.csproj`, `Shared.IntegrationTesting` was updated to `2025.1.2`, and `SecurityService.Client` was updated to `2025.1.1`. These changes reflect an overall upgrade of several package dependencies to their latest versions. --- .../EstateReportingAPI.BusinessLogic.csproj | 2 +- EstateReportingAPI.Client/EstateReportingAPI.Client.csproj | 4 ++-- .../EstateReportingAPI.IntegrationTests.csproj | 6 +++--- EstateReportingAPI/EstateReportingAPI.csproj | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/EstateReportingAPI.BusinessLogic/EstateReportingAPI.BusinessLogic.csproj b/EstateReportingAPI.BusinessLogic/EstateReportingAPI.BusinessLogic.csproj index 5f3eb7d..63c76ae 100644 --- a/EstateReportingAPI.BusinessLogic/EstateReportingAPI.BusinessLogic.csproj +++ b/EstateReportingAPI.BusinessLogic/EstateReportingAPI.BusinessLogic.csproj @@ -9,7 +9,7 @@ - + diff --git a/EstateReportingAPI.Client/EstateReportingAPI.Client.csproj b/EstateReportingAPI.Client/EstateReportingAPI.Client.csproj index 47dafd6..b5bd98e 100644 --- a/EstateReportingAPI.Client/EstateReportingAPI.Client.csproj +++ b/EstateReportingAPI.Client/EstateReportingAPI.Client.csproj @@ -7,9 +7,9 @@ - + - + diff --git a/EstateReportingAPI.IntegrationTests/EstateReportingAPI.IntegrationTests.csproj b/EstateReportingAPI.IntegrationTests/EstateReportingAPI.IntegrationTests.csproj index 669a827..43fa634 100644 --- a/EstateReportingAPI.IntegrationTests/EstateReportingAPI.IntegrationTests.csproj +++ b/EstateReportingAPI.IntegrationTests/EstateReportingAPI.IntegrationTests.csproj @@ -21,12 +21,12 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - - + + - + diff --git a/EstateReportingAPI/EstateReportingAPI.csproj b/EstateReportingAPI/EstateReportingAPI.csproj index f035490..43586c3 100644 --- a/EstateReportingAPI/EstateReportingAPI.csproj +++ b/EstateReportingAPI/EstateReportingAPI.csproj @@ -12,7 +12,7 @@ - + @@ -20,7 +20,7 @@ - + From 54cd33ac6835353122324f6cea00c54e84125d1d Mon Sep 17 00:00:00 2001 From: Stuart Ferguson Date: Sun, 12 Jan 2025 23:41:52 +0000 Subject: [PATCH 2/2] Add 2025 calendar year to test setup This commit updates the `SetupStandingData` method in the `FactSettlementsControllerTests.cs` file to include a call to `await helper.AddCalendarYear(2025);`, allowing the test setup to account for the calendar year 2025 in addition to 2024. --- .../FactSettlementsControllerTests.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/EstateReportingAPI.IntegrationTests/FactSettlementsControllerTests.cs b/EstateReportingAPI.IntegrationTests/FactSettlementsControllerTests.cs index 9313385..66da2a7 100644 --- a/EstateReportingAPI.IntegrationTests/FactSettlementsControllerTests.cs +++ b/EstateReportingAPI.IntegrationTests/FactSettlementsControllerTests.cs @@ -22,6 +22,7 @@ protected override async Task ClearStandingData() { protected override async Task SetupStandingData() { await helper.AddCalendarYear(2024); + await helper.AddCalendarYear(2025); // Estates await helper.AddEstate("Test Estate", "Ref1");