Skip to content

Commit b258998

Browse files
committed
signer: Add CLN v24.11 to supported versions
1 parent bada31b commit b258998

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ CLN_VERSIONS = \
4949
v22.11gl1 \
5050
v23.05gl1 \
5151
v23.08gl1 \
52-
v24.02gl1
52+
v24.02gl1 \
53+
v24.11gl1
5354

5455
DOCKER_OPTIONS= \
5556
--rm \

docker/gl-testing/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ ENV CLNVM_CACHE_DIR=/opt/cln
162162
ENV GL_TESTING_IGNORE_HASH=1
163163

164164
# Enumerate all versions that gl-testing should find
165-
ENV CLN_PATH=/opt/cln/v0.10.1/usr/local/bin/:/opt/cln/v0.10.2/usr/local/bin/:/opt/cln/v0.11.0.1/usr/local/bin/:/opt/cln/v0.11.2gl2/usr/local/bin/:/opt/cln/v22.11gl1/usr/local/bin/:/opt/cln/v23.05gl1/usr/local/bin/:/opt/cln/v23.08gl1/usr/local/bin/:/opt/cln/v24.02gl1/usr/local/bin/
165+
ENV CLN_PATH=/opt/cln/v0.10.1/usr/local/bin/:/opt/cln/v0.10.2/usr/local/bin/:/opt/cln/v0.11.0.1/usr/local/bin/:/opt/cln/v0.11.2gl2/usr/local/bin/:/opt/cln/v22.11gl1/usr/local/bin/:/opt/cln/v23.05gl1/usr/local/bin/:/opt/cln/v23.08gl1/usr/local/bin/:/opt/cln/v24.02gl1/usr/local/bin/:/opt/cln/v24.11gl1/usr/local/bin/
166166

167167
# Create a non-root user.
168168
ARG GID=0

libs/gl-client/src/signer/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ pub mod model;
4747
mod report;
4848
mod resolve;
4949

50-
const VERSION: &str = "v24.02";
50+
const VERSION: &str = "v24.11";
5151
const GITHASH: &str = env!("GIT_HASH");
5252
const RUNE_VERSION: &str = "gl0";
5353
// This is the same derivation key that is used by core lightning itself.

libs/gl-testing/gltesting/utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ def is_compat(self, nv: NodeVersion) -> bool:
1919
"v23.05": ["v23.05gl1"],
2020
"v23.08": ["v23.08gl1"],
2121
"v24.02": ["v24.02gl1"],
22+
"v24.11": ["v24.11gl1"],
2223
}
2324

2425
return self.name in compat[nv.name]
@@ -35,6 +36,7 @@ def get_node_version(self):
3536
"v23.05": "v23.05gl1",
3637
"v23.08": "v23.08gl1",
3738
"v24.02": "v24.02gl1",
39+
"v24.11": "v24.11gl1",
3840
}
3941
return m[self.name]
4042

0 commit comments

Comments
 (0)