diff --git a/Dockerfile b/Dockerfile index c5d138c..4831561 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM nicolasdorier/nbxplorer:2.5.0 as nbx-builder +FROM nicolasdorier/nbxplorer:2.5.2 as nbx-builder FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0-bookworm-slim AS actions-builder ARG TARGETARCH @@ -8,7 +8,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:1.12.4 +FROM btcpayserver/btcpayserver:1.13.0 COPY --from=nbx-builder "/app" /nbxplorer COPY --from=actions-builder "/actions/build" /actions diff --git a/manifest.yaml b/manifest.yaml index 803a5a7..8540511 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -1,9 +1,9 @@ id: btcpayserver title: BTCPay Server -version: 1.12.4 +version: 1.13.0 release-notes: | - * Updates to the upstream release of [v1.12.4](https://github.com/btcpayserver/btcpayserver/releases/tag/v1.12.4), which includes the noteworthy minor release of [v1.12.0](https://github.com/btcpayserver/btcpayserver/releases/tag/v1.12.0), as well as various bug fixes, improvements, and new features. - * If you are using plugins, you will most likely find them disabled after this update, because new versions compatible with BTCPay Server v1.12.x are required. Please see the "Manage Plugins" section once updated. + * Updates to the upstream release of [v1.13.0](https://github.com/btcpayserver/btcpayserver/releases/tag/v1.13.0), which includes various bug fixes, improvements, and new features. + * Bumps version bounds for C-Lightning license: mit wrapper-repo: "https://github.com/Start9Labs/btcpayserver-wrapper" upstream-repo: "https://github.com/btcpayserver/btcpayserver" @@ -82,7 +82,7 @@ dependencies: description: Used to communicate with the Lightning Network. config: ~ c-lightning: - version: ">=0.10.0.1 <24.0" + version: ">=0.10.0.1 <26.0" requirement: type: "opt-in" how: Optionally use Core Lightning for internal lightning network node implementation. diff --git a/scripts/procedures/migrations.ts b/scripts/procedures/migrations.ts index c44b1e4..8c45df1 100644 --- a/scripts/procedures/migrations.ts +++ b/scripts/procedures/migrations.ts @@ -48,6 +48,6 @@ export const migration: T.ExpectedExports.migration = async (effects, version, . ), }, }, - "1.12.4", + "1.13.0", )(effects, version, ...args) } \ No newline at end of file