Skip to content

Commit

Permalink
feat(images): add support for CLN v24.08
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvinator07 authored and jamaljsr committed Sep 12, 2024
1 parent 26c4a17 commit ebf22c6
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ With Polar you can:
Supported Network Node Versions:

- [LND](https://github.com/lightningnetwork/lnd) - v0.18.0, v0.17.5, v0.17.4, v0.17.3, v0.17.2, v0.17.1, v0.17.0, v0.16.4, v0.16.2, v0.16.1, v0.16.0, v0.15.5, v0.14.3, v0.13.1
- [Core Lightning](https://github.com/ElementsProject/lightning) - v24.05, v24.02.2, v23.11.2
- [Core Lightning](https://github.com/ElementsProject/lightning) - 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) - v27.0, v26.0, v25.0, v24.0, v23.0, v22.0, v0.21.1
- [Taproot Assets](https://github.com/lightninglabs/taproot-assets) - v0.4.1, v0.4.0, v0.3.3, v0.3.2
Expand Down
1 change: 1 addition & 0 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ Replace `<version>` with the desired LND version (ex: `0.7.1-beta`)

### Tags

- `24.08` ([clightning/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/clightning/Dockerfile))
- `24.05` ([clightning/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/clightning/Dockerfile))
- `24.02.2` ([clightning/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/clightning/Dockerfile))
- `23.11.2` ([clightning/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/clightning/Dockerfile))
Expand Down
6 changes: 3 additions & 3 deletions docker/nodes.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": 64,
"version": 65,
"images": {
"LND": {
"latest": "0.18.2-beta",
Expand All @@ -21,8 +21,8 @@
}
},
"c-lightning": {
"latest": "24.05",
"versions": ["24.05", "24.02.2", "23.11.2"]
"latest": "24.08",
"versions": ["24.08", "24.05", "24.02.2", "23.11.2"]
},
"eclair": {
"latest": "0.10.0",
Expand Down
6 changes: 3 additions & 3 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ 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: 64,
version: 65,
images: {
LND: {
latest: '0.18.2-beta',
Expand All @@ -355,8 +355,8 @@ export const defaultRepoState: DockerRepoState = {
},
},
'c-lightning': {
latest: '24.05',
versions: ['24.05', '24.02.2', '23.11.2'],
latest: '24.08',
versions: ['24.08', '24.05', '24.02.2', '23.11.2'],
},
eclair: {
latest: '0.10.0',
Expand Down
6 changes: 3 additions & 3 deletions src/utils/tests/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const testCustomImages: CustomImage[] = [
];

export const testRepoState: DockerRepoState = {
version: 49,
version: 50,
images: {
LND: {
latest: '0.18.2-beta',
Expand Down Expand Up @@ -144,8 +144,8 @@ export const testRepoState: DockerRepoState = {
},
},
'c-lightning': {
latest: '23.05.2',
versions: ['23.05.2', '23.02.2', '22.11', '0.12.0', '0.11.2', '0.10.2'],
latest: '24.08',
versions: ['24.08', '24.05', '24.02.2', '23.11.2'],
},
eclair: {
latest: '0.10.0',
Expand Down

0 comments on commit ebf22c6

Please sign in to comment.