Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(images): add support for LND v0.16.0-beta #702

Merged
merged 1 commit into from
Apr 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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