Skip to content

Commit

Permalink
feat(images): add support for LND v0.16.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
jamaljsr committed Apr 1, 2023
1 parent d6897ba commit 35d9d0c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 40 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ With Polar you can:

Supported Network Node Versions:

- [LND](https://github.com/lightningnetwork/lnd) - v0.15.5, v0.15.4, v0.15.3, v0.15.2, v0.15.1, v0.15.0, v0.14.3, v0.13.1
- [LND](https://github.com/lightningnetwork/lnd) - v0.16.0, v0.15.5, v0.14.3, v0.13.1
- [Core Lightning](https://github.com/ElementsProject/lightning) - v23.02.2, v22.11, v0.12.0, v0.11.2, v0.10.2
- [Eclair](https://github.com/ACINQ/eclair/) - v0.8.0, v0.7.0, v0.6.2, v0.5.0
- [Bitcoin Core](https://github.com/bitcoin/bitcoin) - v24.0, v23.0, v22.0, v0.21.1
Expand Down
2 changes: 1 addition & 1 deletion docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ $ docker push polarlightning/bitcoind:<version>

### Tags

- `0.16.0-beta.rc5` ([lnd/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/lnd/Dockerfile))
- `0.16.0-beta` ([lnd/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/lnd/Dockerfile))
- `0.15.5-beta` ([lnd/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/lnd/Dockerfile))
- `0.15.4-beta` ([lnd/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/lnd/Dockerfile))
- `0.15.3-beta` ([lnd/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/lnd/Dockerfile))
Expand Down
23 changes: 4 additions & 19 deletions docker/nodes.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,12 @@
{
"version": 45,
"version": 46,
"images": {
"LND": {
"latest": "0.15.5-beta",
"versions": [
"0.16.0-beta.rc5",
"0.15.5-beta",
"0.15.4-beta",
"0.15.3-beta",
"0.15.2-beta",
"0.15.1-beta",
"0.15.0-beta",
"0.14.3-beta",
"0.13.1-beta"
],
"latest": "0.16.0-beta",
"versions": ["0.16.0-beta", "0.15.5-beta", "0.14.3-beta", "0.13.1-beta"],
"compatibility": {
"0.16.0-beta.rc5": "24.0",
"0.16.0-beta": "24.0",
"0.15.5-beta": "24.0",
"0.15.4-beta": "24.0",
"0.15.3-beta": "24.0",
"0.15.2-beta": "24.0",
"0.15.1-beta": "24.0",
"0.15.0-beta": "24.0",
"0.14.3-beta": "24.0",
"0.13.1-beta": "24.0"
}
Expand Down
23 changes: 4 additions & 19 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,31 +222,16 @@ export const REPO_STATE_URL =
* are pushed to Docker Hub, this list should be updated along with the /docker/nodes.json file.
*/
export const defaultRepoState: DockerRepoState = {
version: 45,
version: 46,
images: {
LND: {
latest: '0.15.5-beta',
versions: [
'0.16.0-beta.rc5',
'0.15.5-beta',
'0.15.4-beta',
'0.15.3-beta',
'0.15.2-beta',
'0.15.1-beta',
'0.15.0-beta',
'0.14.3-beta',
'0.13.1-beta',
],
latest: '0.16.0-beta',
versions: ['0.16.0-beta', '0.15.5-beta', '0.14.3-beta', '0.13.1-beta'],
// not all LND versions are compatible with all bitcoind versions.
// this mapping specifies the highest compatible bitcoind for each LND version
compatibility: {
'0.16.0-beta.rc5': '24.0',
'0.16.0-beta': '24.0',
'0.15.5-beta': '24.0',
'0.15.4-beta': '24.0',
'0.15.3-beta': '24.0',
'0.15.2-beta': '24.0',
'0.15.1-beta': '24.0',
'0.15.0-beta': '24.0',
'0.14.3-beta': '24.0',
'0.13.1-beta': '24.0',
},
Expand Down

0 comments on commit 35d9d0c

Please sign in to comment.