Skip to content

Commit

Permalink
Update/v23.02.2.3 (#87)
Browse files Browse the repository at this point in the history
* remove ui

* update release notes

* remove ui health check
  • Loading branch information
Dominion5254 authored May 25, 2023
1 parent a991a45 commit 26cf05d
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 31 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ scripts/embassy.js
instructions.md
.DS_Store
docker-images
node_modules
2 changes: 1 addition & 1 deletion docker_entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ lightningd_child=$!

while ! [ -e /root/.lightning/bitcoin/lightning-rpc ]; do
echo "Waiting for lightning rpc to start..."
sleep 1
sleep 30
if ! ps -p $lightningd_child > /dev/null; then
echo "lightningd has stopped, exiting container"
exit 1
Expand Down
54 changes: 25 additions & 29 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
id: c-lightning
version: 23.02.2.2
version: 23.02.2.3
title: Core Lightning
license: BSD-MIT
wrapper-repo: https://github.com/Start9Labs/c-lightning-wrapper
upstream-repo: https://github.com/ElementsProject/lightning
support-site: https://github.com/ElementsProject/lightning/issues
marketing-site: https://blockstream.com/lightning
release-notes: |-
* New user interface!
* Require offers and onion-messages enabled
* Updated c-lightning-REST to v0.10.2
* Add support for more fiat currency conversion
release-notes: Remove UI
build: ["make"]
description:
short: "An implementation of the Lightning Network protocol by Blockstream."
Expand Down Expand Up @@ -40,15 +36,15 @@ health-checks:
mounts: {}
io-format: json
inject: true
web-ui:
name: Web UI
success-message: The Web-UI is ready to be visited in your browser.
type: docker
image: main
entrypoint: check-web-ui.sh
args: []
io-format: json
inject: true
# web-ui:
# name: Web UI
# success-message: The Web-UI is ready to be visited in your browser.
# type: docker
# image: main
# entrypoint: check-web-ui.sh
# args: []
# io-format: json
# inject: true
synced:
name: Synced
success-message: Synced to chain and ready to perform on-chain operations
Expand Down Expand Up @@ -91,20 +87,20 @@ alerts:
since the last backup will be forgotten and may linger indefinitely, and channels contained in the backup will be
closed and their funds returned to your wallet, assuming your peers choose to cooperate.
interfaces:
web-ui:
name: Web User Interface
description: A web user interface for CLN
tor-config:
port-mapping:
80: "4500"
lan-config:
443:
ssl: true
internal: 4500
ui: true
protocols:
- tcp
- http
# web-ui:
# name: Web User Interface
# description: A web user interface for CLN
# tor-config:
# port-mapping:
# 80: "4500"
# lan-config:
# 443:
# ssl: true
# internal: 4500
# ui: true
# protocols:
# - tcp
# - http
rpc:
name: RPC Interface
description: Listens for JSON-RPC commands over HTTP.
Expand Down
14 changes: 13 additions & 1 deletion scripts/procedures/migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,18 @@ export const migration: T.ExpectedExports.migration =
throw new Error("Cannot downgrade");
},
},
"23.02.2.2": {
up: compat.migrations.updateConfig(
(config) => {
return config;
},
false,
{ version: "23.02.2.2", type: "up" }
),
down: () => {
throw new Error("Cannot downgrade");
},
},
},
"23.02.2.2"
"23.02.2.3"
);

0 comments on commit 26cf05d

Please sign in to comment.