Skip to content

Commit

Permalink
feat(images): remove outdated node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jamaljsr committed Dec 20, 2024
1 parent 3672fe6 commit 818a182
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 18 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ With Polar you can:

Supported Network Node Versions:

- [LND](https://github.com/lightningnetwork/lnd) - v0.18.4, v0.18.3, v0.17.5, v0.16.4, v0.15.5, v0.14.3, v0.13.1
- [Core Lightning](https://github.com/ElementsProject/lightning) - v24.11, v24.08, v24.05, v24.02.2, v23.11.2
- [Eclair](https://github.com/ACINQ/eclair/) - v0.10.0, v0.9.0, v0.8.0, v0.7.0, v0.6.2, v0.5.0
- [Bitcoin Core](https://github.com/bitcoin/bitcoin) - v28.0, v27.0, v26.0, v25.0, v24.0, v23.0, v22.0, v0.21.1
- [LND](https://github.com/lightningnetwork/lnd) - v0.18.4, v0.18.3, v0.17.5, v0.16.4
- [Core Lightning](https://github.com/ElementsProject/lightning) - v24.11, v24.08, v24.05
- [Eclair](https://github.com/ACINQ/eclair/) - v0.11.0, v0.10.0, v0.9.0
- [Bitcoin Core](https://github.com/bitcoin/bitcoin) - v28.0, v27.0, v26.0
- [Taproot Assets](https://github.com/lightninglabs/taproot-assets) - v0.5.0, v0.4.1, v0.3.3
- [Terminal](https://github.com/lightninglabs/lightning-terminal) - v0.14.0

Expand Down
18 changes: 4 additions & 14 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,6 @@ export const defaultRepoState: DockerRepoState = {
'0.18.0-beta',
'0.17.5-beta',
'0.16.4-beta',
'0.15.5-beta',
],
// not all LND versions are compatible with all bitcoind versions.
// this mapping specifies the highest compatible bitcoind for each LND version
Expand All @@ -357,42 +356,33 @@ export const defaultRepoState: DockerRepoState = {
'0.18.0-beta': '27.0',
'0.17.5-beta': '27.0',
'0.16.4-beta': '27.0',
'0.15.5-beta': '27.0',
},
},
'c-lightning': {
latest: '24.11.1',
versions: ['24.11.1', '24.11', '24.08.1', '24.08', '24.05', '24.02.2', '23.11.2'],
versions: ['24.11.1', '24.11', '24.08.1', '24.05'],
},
eclair: {
latest: '0.11.0',
versions: ['0.11.0', '0.10.0', '0.9.0', '0.8.0', '0.7.0', '0.6.2', '0.5.0'],
versions: ['0.11.0', '0.10.0', '0.9.0'],
},
bitcoind: {
latest: '28.0',
versions: ['28.0', '27.0', '26.0', '25.0', '24.0', '23.0', '22.0', '0.21.1'],
versions: ['28.0', '27.0', '26.0'],
},
btcd: {
latest: '',
versions: [],
},
tapd: {
latest: '0.5.0-alpha',
versions: [
'0.5.0-alpha',
'0.4.1-alpha',
'0.4.0-alpha',
'0.3.3-alpha',
'0.3.2-alpha',
],
versions: ['0.5.0-alpha', '0.4.1-alpha', '0.3.3-alpha'],
// Not all tapd versions are compatible with all LND versions.
// This mapping specifies the minimum compatible LND for each tapd version
compatibility: {
'0.5.0-alpha': '0.18.4-beta',
'0.4.1-alpha': '0.18.0-beta',
'0.4.0-alpha': '0.18.0-beta',
'0.3.3-alpha': '0.16.0-beta',
'0.3.2-alpha': '0.16.0-beta',
},
},
litd: {
Expand Down

0 comments on commit 818a182

Please sign in to comment.