Skip to content

Commit

Permalink
feat(images): remove outdate node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jamaljsr committed Aug 31, 2022
1 parent fcb90ad commit 97dabad
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 44 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ With Polar you can:

Supported Network Node Versions:

- [LND](https://github.com/lightningnetwork/lnd) - v0.15.1, v0.15.0, v0.14.3, v0.14.2, v0.14.1, v0.13.1, v0.13.0, v0.12.1, v0.11.1, v0.10.3
- [Core Lightning](https://github.com/ElementsProject/lightning) - v0.12.0, v0.11.2, v0.11.1, v0.11.0, v0.10.3, v0.10.2, v0.10.0, v0.9.3, v0.8.2
- [Eclair](https://github.com/ACINQ/eclair/) - v0.7.0, v0.6.2, v0.6.0, v0.5.0, v0.4.2
- [LND](https://github.com/lightningnetwork/lnd) - v0.15.1, v0.15.0, v0.14.3, v0.13.1
- [Core Lightning](https://github.com/ElementsProject/lightning) - v0.12.0, v0.11.2, v0.10.2
- [Eclair](https://github.com/ACINQ/eclair/) - v0.7.0, v0.6.2, v0.5.0
- [Bitcoin Core](https://github.com/bitcoin/bitcoin) - v23.0, v22.0, v0.21.1

## Dependencies
Expand Down
25 changes: 4 additions & 21 deletions docker/nodes.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,38 +3,21 @@
"images": {
"LND": {
"latest": "0.15.1-beta",
"versions": [
"0.15.1-beta",
"0.15.0-beta",
"0.14.3-beta",
"0.14.2-beta",
"0.14.1-beta",
"0.13.1-beta",
"0.13.0-beta",
"0.12.1-beta",
"0.11.1-beta",
"0.10.3-beta"
],
"versions": ["0.15.1-beta", "0.15.0-beta", "0.14.3-beta", "0.13.1-beta"],
"compatibility": {
"0.15.1-beta": "23.0",
"0.15.0-beta": "23.0",
"0.14.3-beta": "23.0",
"0.14.2-beta": "23.0",
"0.14.1-beta": "23.0",
"0.13.1-beta": "23.0",
"0.13.0-beta": "23.0",
"0.12.1-beta": "23.0",
"0.11.1-beta": "23.0",
"0.10.3-beta": "23.0"
"0.13.1-beta": "23.0"
}
},
"c-lightning": {
"latest": "0.12.0",
"versions": ["0.12.0", "0.11.1", "0.10.2", "0.10.0", "0.9.3", "0.8.2"]
"versions": ["0.12.0", "0.11.1", "0.10.2"]
},
"eclair": {
"latest": "0.7.0",
"versions": ["0.7.0", "0.6.2", "0.6.1", "0.6.0", "0.5.0", "0.4.2"]
"versions": ["0.7.0", "0.6.2", "0.5.0"]
},
"bitcoind": {
"latest": "23.0",
Expand Down
23 changes: 3 additions & 20 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,40 +223,23 @@ export const defaultRepoState: DockerRepoState = {
images: {
LND: {
latest: '0.15.1-beta',
versions: [
'0.15.1-beta',
'0.15.0-beta',
'0.14.3-beta',
'0.14.2-beta',
'0.14.1-beta',
'0.13.1-beta',
'0.13.0-beta',
'0.12.1-beta',
'0.11.1-beta',
'0.10.3-beta',
],
versions: ['0.15.1-beta', '0.15.0-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.15.1-beta': '23.0',
'0.15.0-beta': '23.0',
'0.14.3-beta': '23.0',
'0.14.2-beta': '23.0',
'0.14.1-beta': '23.0',
'0.13.1-beta': '23.0',
'0.13.0-beta': '23.0',
'0.12.1-beta': '23.0',
'0.11.1-beta': '23.0',
'0.10.3-beta': '23.0',
},
},
'c-lightning': {
latest: '0.12.0',
versions: ['0.12.0', '0.11.2', '0.11.1', '0.10.2', '0.10.0', '0.9.3', '0.8.2'],
versions: ['0.12.0', '0.11.2', '0.10.2'],
},
eclair: {
latest: '0.7.0',
versions: ['0.7.0', '0.6.2', '0.6.1', '0.6.0', '0.5.0', '0.4.2'],
versions: ['0.7.0', '0.6.2', '0.5.0'],
},
bitcoind: {
latest: '23.0',
Expand Down

0 comments on commit 97dabad

Please sign in to comment.