Skip to content
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
4 changes: 4 additions & 0 deletions libs/cln-version-manager/.tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ tasks:
build:
cmds:
- uv build --sdist
publish:
cmds:
- uv tool run --from build pyproject-build
- uv tool run twine upload dist/*
4 changes: 4 additions & 0 deletions libs/cln-version-manager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Fixed

- Updated the hashes for v24.02gl1 and v24.11gl1. We applied some server-side patches for these versions.

### Changed

- Adjusted the expected hashes for artifacts, after patching them
2 changes: 1 addition & 1 deletion libs/cln-version-manager/clnvm/cln_version_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class VersionDescriptor:
VersionDescriptor(
tag="v25.05gl1",
url="https://storage.googleapis.com/greenlight-artifacts/cln/lightningd-v25.05gl1.tar.bz2",
checksum="1c7d9f9e6f6f7027256ea9c7e72f6961d6fe22dbaf8a5c0d3bc8b8594822f488",
checksum="5f978b2a778f9e148bf09fec1fe5c132913b63a82e12a1bf74fd3ed507770e52",
),
]

Expand Down
11 changes: 11 additions & 0 deletions libs/gl-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

### Fixed

- Addressed an issue with signers being unable to connect to the node, due to an SNI header override that is no longer required
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ dependencies = []
[tool.uv]
dev-dependencies = [
"pytest-timeout>=2.3.1",
"python-kacl>=0.6.7",
]

[tool.uv.workspace]
Expand Down
Loading