From 13ffe273c753737095f6eb6c9ac3defe74347c2e Mon Sep 17 00:00:00 2001 From: Lucy Cifferello <12953208+elvece@users.noreply.github.com> Date: Thu, 28 Mar 2024 19:42:15 -0400 Subject: [PATCH 1/3] update to upstream 1.13.0 --- Dockerfile | 4 ++-- manifest.yaml | 5 ++--- scripts/procedures/migrations.ts | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) 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..8b5da32 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -1,9 +1,8 @@ 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. license: mit wrapper-repo: "https://github.com/Start9Labs/btcpayserver-wrapper" upstream-repo: "https://github.com/btcpayserver/btcpayserver" 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 From 5e9a4d96838f5a5219476a6600029cebe99d9258 Mon Sep 17 00:00:00 2001 From: Lucy Cifferello <12953208+elvece@users.noreply.github.com> Date: Tue, 2 Apr 2024 12:23:27 -0400 Subject: [PATCH 2/3] bump cln dependency --- manifest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.yaml b/manifest.yaml index 8b5da32..de54647 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -81,7 +81,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. From 6663c50b851cffd7c26d4f7b3f1d58da060b5d46 Mon Sep 17 00:00:00 2001 From: Lucy Cifferello <12953208+elvece@users.noreply.github.com> Date: Tue, 2 Apr 2024 14:50:41 -0400 Subject: [PATCH 3/3] update release notes --- manifest.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/manifest.yaml b/manifest.yaml index de54647..8540511 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -3,6 +3,7 @@ title: BTCPay Server version: 1.13.0 release-notes: | * 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"