From bdf0225afbae2cb53874a627b6f2e8b7d4c420c2 Mon Sep 17 00:00:00 2001 From: Phantom Dave Date: Fri, 14 Nov 2025 23:41:50 +0000 Subject: [PATCH 1/2] refactor(app.config): remove redundant comment about UploadHttpLink usage --- frontend/src/app/app.config.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/app/app.config.ts b/frontend/src/app/app.config.ts index f17dbda..45e16c5 100644 --- a/frontend/src/app/app.config.ts +++ b/frontend/src/app/app.config.ts @@ -51,7 +51,6 @@ export const appConfig: ApplicationConfig = { return { headers }; }); - // Use UploadHttpLink to support GraphQL multipart requests for file uploads const uploadLink = new UploadHttpLink({ uri: environment.graphqlUri }); return { From f90dfc5d575c632ade3f108ece26aba0656bf385 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Sat, 15 Nov 2025 00:52:43 +0100 Subject: [PATCH 2/2] Upgrade backend to .NET 10 (#55) * Initial plan * Update backend to .NET 10 Co-authored-by: PhantomDave <34485699+PhantomDave@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: PhantomDave <34485699+PhantomDave@users.noreply.github.com> --- Directory.Packages.props | 10 +++++----- Dockerfile | 2 +- .../PhantomDave.BankTracking.Api.csproj | 2 +- .../PhantomDave.BankTracking.Data.csproj | 2 +- .../PhantomDave.BankTracking.Library.csproj | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 14c1040..e0fd8f5 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -13,14 +13,14 @@ - - - + + + - + - + diff --git a/Dockerfile b/Dockerfile index 4a1b010..a2ea4f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build WORKDIR /src diff --git a/PhantomDave.BankTracking.Api/PhantomDave.BankTracking.Api.csproj b/PhantomDave.BankTracking.Api/PhantomDave.BankTracking.Api.csproj index 856504b..f80d168 100644 --- a/PhantomDave.BankTracking.Api/PhantomDave.BankTracking.Api.csproj +++ b/PhantomDave.BankTracking.Api/PhantomDave.BankTracking.Api.csproj @@ -1,7 +1,7 @@ - net9.0 + net10.0 enable enable preview diff --git a/PhantomDave.BankTracking.Data/PhantomDave.BankTracking.Data.csproj b/PhantomDave.BankTracking.Data/PhantomDave.BankTracking.Data.csproj index 6a671ff..6787af6 100644 --- a/PhantomDave.BankTracking.Data/PhantomDave.BankTracking.Data.csproj +++ b/PhantomDave.BankTracking.Data/PhantomDave.BankTracking.Data.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable diff --git a/PhantomDave.BankTracking.Library/PhantomDave.BankTracking.Library.csproj b/PhantomDave.BankTracking.Library/PhantomDave.BankTracking.Library.csproj index 43f7aa5..8d0ee1d 100644 --- a/PhantomDave.BankTracking.Library/PhantomDave.BankTracking.Library.csproj +++ b/PhantomDave.BankTracking.Library/PhantomDave.BankTracking.Library.csproj @@ -1,6 +1,6 @@ - net9.0 + net10.0 enable enable PhantomDave.BankTracking.Library