Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to upstream 1.13.0 #60

Merged
merged 3 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)
}
Loading