From d3c52299147eeac431fca1154d6a472bc433d0b9 Mon Sep 17 00:00:00 2001 From: Lucy <12953208+elvece@users.noreply.github.com> Date: Fri, 7 Feb 2025 09:48:00 -0500 Subject: [PATCH] update upstream and nbxplorer to latest (#74) * update upstream and nbxplorer to latest * bump migration version --- Dockerfile | 4 ++-- manifest.yaml | 5 ++--- scripts/procedures/migrations.ts | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 19f35d7..fcb7046 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM btcpayserver/monero:0.18.3.4 AS monero-wallet-rpc -FROM nicolasdorier/nbxplorer:2.5.16 AS nbx-builder +FROM nicolasdorier/nbxplorer:2.5.20 AS nbx-builder FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0-bookworm-slim AS actions-builder ARG TARGETARCH @@ -9,7 +9,7 @@ RUN dotnet restore "utils/actions/actions.csproj" -a $TARGETARCH WORKDIR "/actions" RUN dotnet build "utils/actions/actions.csproj" -c Release -a $TARGETARCH -o /actions/build -FROM btcpayserver/btcpayserver:2.0.5 +FROM btcpayserver/btcpayserver:2.0.6 COPY --from=nbx-builder "/app" /nbxplorer COPY --from=actions-builder "/actions/build" /actions diff --git a/manifest.yaml b/manifest.yaml index 78412f5..d3e0919 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -1,9 +1,8 @@ id: btcpayserver title: BTCPay Server -version: 2.0.5 +version: 2.0.6 release-notes: | - * Updates to the latest upstream [release](https://github.com/btcpayserver/btcpayserver/releases/tag/v2.0.5), which includes various bugfixes and improvements - * Includes the upstream release of [2.0.4](https://github.com/btcpayserver/btcpayserver/releases/tag/v2.0.4) as well. + * Updates to the latest upstream [release](https://github.com/btcpayserver/btcpayserver/releases/tag/v2.0.6), which includes a security fix, various bugfixes and several new features. * Updates NBXplorer to the latest version license: mit wrapper-repo: "https://github.com/Start9Labs/btcpayserver-wrapper" diff --git a/scripts/procedures/migrations.ts b/scripts/procedures/migrations.ts index 9033eaa..c7671d9 100644 --- a/scripts/procedures/migrations.ts +++ b/scripts/procedures/migrations.ts @@ -59,6 +59,6 @@ export const migration: T.ExpectedExports.migration = async ( }, }, }, - "2.0.5" + "2.0.6" )(effects, version, ...args); };