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

Bump to 0.18.0~1 and set migration to configured=true #130

Merged
merged 1 commit into from
Jun 19, 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
3 changes: 1 addition & 2 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
id: lnd
title: LND
version: 0.18.0
version: 0.18.0.1
release-notes: |-
* Update to 0.18.0 [Release Notes](https://github.com/lightningnetwork/lnd/releases/tag/v0.18.0-beta)
* Add Umbrel 1.0 migration action
* Add config options for zero-conf channels, taproot channels, and sweeper settings
* Minor fixes
* Notice! If LND gets stuck in "Stopping" status after the update, the solution is to restart your server. System -> Restart.

license: MIT
wrapper-repo: "https://github.com/Start9Labs/lnd-startos"
Expand Down
10 changes: 5 additions & 5 deletions scripts/services/migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export const migration: T.ExpectedExports.migration = compat.migrations
throw new Error("Cannot downgrade");
},
},
"0.18.0": {
"0.18.0.1": {
up: compat.migrations.updateConfig(
(config: any) => {
config.advanced["protocol-zero-conf"] = false;
Expand All @@ -226,8 +226,8 @@ export const migration: T.ExpectedExports.migration = compat.migrations
}
return config;
},
false,
{ version: "0.18.0", type: "up" }
true,
{ version: "0.18.0.1", type: "up" }
),
down: compat.migrations.updateConfig(
(config) => {
Expand All @@ -247,9 +247,9 @@ export const migration: T.ExpectedExports.migration = compat.migrations
return config;
},
true,
{ version: "0.18.0", type: "down" }
{ version: "0.18.0.1", type: "down" }
)
}
},
"0.18.0",
"0.18.0.1",
);