Update dependencies

This commit is contained in:
James Chapman 2024-10-05 17:55:58 +01:00
parent 485f58c61d
commit 68eff11fdc
Signed by: jamsch0
GPG Key ID: 765FE58130277547
4 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1.7-labs
FROM mcr.microsoft.com/dotnet/sdk:9.0-preview-alpine AS build1
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS build1
WORKDIR /src
COPY ./.config ./
@ -10,7 +10,7 @@ WORKDIR Groceries
COPY ./Groceries/libman.json ./
RUN dotnet libman restore
FROM mcr.microsoft.com/dotnet/sdk:9.0-preview-alpine AS build2
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS build2
WORKDIR /src
COPY ./Groceries.sln ./
@ -23,7 +23,7 @@ COPY . ./
COPY --from=build1 /src ./
RUN dotnet publish --no-restore --output /out
FROM mcr.microsoft.com/dotnet/aspnet:9.0-preview-alpine-composite AS base
FROM mcr.microsoft.com/dotnet/aspnet:9.0-alpine-composite AS base
WORKDIR /groceries
COPY --from=build2 /out .

View File

@ -12,7 +12,7 @@
<PackageReference Include="DbUp-PostgreSQL" Version="5.0.40" />
<PackageReference Include="EFCore.NamingConventions" Version="8.0.3" />
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.4" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.8" />
</ItemGroup>
<ItemGroup>

View File

@ -7,7 +7,7 @@
"destination": "wwwroot/lib/inter/"
},
{
"library": "@hotwired/turbo@8.0.4",
"library": "@hotwired/turbo@8.0.10",
"destination": "wwwroot/lib/hotwired/turbo/"
},
{

View File

@ -13,7 +13,7 @@ export default class ModalController extends Controller {
if (!this.element.open) {
return;
}
if (event.type === "turbo:submit-end" && (event.detail.formSubmission.method === "get" || !event.detail.success)) {
if (event.type === "turbo:submit-end" && (event.detail.formSubmission.method === "GET" || !event.detail.success)) {
// Don't close modal if form method was GET or submission failed
return;
}