Skip to content

Commit

Permalink
update to upstream 1.13.0 (#60)
Browse files Browse the repository at this point in the history
* update to upstream 1.13.0

* bump cln dependency

* update release notes
  • Loading branch information
elvece authored Apr 3, 2024
1 parent 4f92652 commit 28c96dd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion scripts/procedures/migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ export const migration: T.ExpectedExports.migration = async (effects, version, .
),
},
},
"1.12.4",
"1.13.0",
)(effects, version, ...args)
}

0 comments on commit 28c96dd

Please sign in to comment.