diff --git a/.version b/.version index de34cf8b8..99b6fab94 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -25.02 +25.05rc1 diff --git a/contrib/msggen/msggen/schema.json b/contrib/msggen/msggen/schema.json index b00e60f9e..a4e7e0839 100644 --- a/contrib/msggen/msggen/schema.json +++ b/contrib/msggen/msggen/schema.json @@ -6597,7 +6597,7 @@ "netaddr": [ "127.0.0.1:19736" ], - "features": "08a0882a8a59a1" + "features": "08a8882a8a59a1" } ] } @@ -6830,7 +6830,7 @@ }, "response": { "id": "nodeid020202020202020202020202020202020202020202020202020202020202", - "features": "08a0882a8a59a1", + "features": "08a8882a8a59a1", "direction": "out", "address": { "type": "ipv4", @@ -6851,7 +6851,7 @@ }, "response": { "id": "nodeid030303030303030303030303030303030303030303030303030303030303", - "features": "08a0882a8a59a1", + "features": "08a8882a8a59a1", "direction": "out", "address": { "type": "ipv4", @@ -7974,7 +7974,7 @@ "response": { "datastoreusage": { "key": "[]", - "total_bytes": 161 + "total_bytes": 2909 } } }, @@ -15384,14 +15384,14 @@ "port": 19735 } ], - "version": "v25.02", + "version": "v25.05rc1", "blockheight": 110, "network": "regtest", "fees_collected_msat": 0, "lightning-dir": "/tmp/.lightning/regtest", "our_features": { - "init": "08a0882a8a59a1", - "node": "88a0882a8a59a1", + "init": "08a8882a8a59a1", + "node": "88a8882a8a59a1", "channel": "", "invoice": "02000002024100" } @@ -20167,10 +20167,6 @@ "set": true, "source": "cmdline" }, - "experimental-peer-storage": { - "set": false, - "source": "default" - }, "experimental-quiesce": { "set": false, "source": "default" @@ -21716,7 +21712,7 @@ "updated_index": 18, "short_channel_id": "109x1x1", "id": 1, - "expiry": 136, + "expiry": 135, "direction": "out", "amount_msat": 10001, "payment_hash": "paymenthashinvl0310031003100310031003100310031003100310031003100", @@ -22625,7 +22621,7 @@ "alias": "HOPPINGFIRE", "color": "035d2b", "last_timestamp": 1738000000, - "features": "88a0882a8a59a1", + "features": "88a8882a8a59a1", "addresses": [] } ] @@ -22644,7 +22640,7 @@ "alias": "SILENTARTIST", "color": "022d22", "last_timestamp": 1738000000, - "features": "88a0882a8a59a1", + "features": "88a8882a8a59a1", "addresses": [] }, { @@ -22652,7 +22648,7 @@ "alias": "JUNIORBEAM", "color": "0266e4", "last_timestamp": 1738010000, - "features": "88a0882a8a59a1", + "features": "88a8882a8a59a1", "addresses": [] }, { @@ -22660,7 +22656,7 @@ "alias": "HOPPINGFIRE", "color": "035d2b", "last_timestamp": 1738020000, - "features": "88a0882a8a59a1", + "features": "88a8882a8a59a1", "addresses": [] }, { @@ -22668,7 +22664,7 @@ "alias": "JUNIORFELONY", "color": "0382ce", "last_timestamp": 1738030000, - "features": "88a0882a8a59a1", + "features": "88a8882a8a59a1", "addresses": [] } ] @@ -25345,7 +25341,7 @@ "netaddr": [ "127.0.0.1:19736" ], - "features": "08a0882a8a59a1" + "features": "08a8882a8a59a1" } ] } @@ -25365,7 +25361,7 @@ "netaddr": [ "127.0.0.1:19734" ], - "features": "08a0882a8a59a1" + "features": "08a8882a8a59a1" }, { "id": "nodeid030303030303030303030303030303030303030303030303030303030303", @@ -25374,13 +25370,13 @@ "netaddr": [ "127.0.0.1:19736" ], - "features": "08a0882a8a59a1" + "features": "08a8882a8a59a1" }, { "id": "nodeid040404040404040404040404040404040404040404040404040404040404", "connected": false, "num_channels": 1, - "features": "08a0882a8a59a1" + "features": "08a8882a8a59a1" } ] } diff --git a/contrib/pyln-client/pyln/client/__init__.py b/contrib/pyln-client/pyln/client/__init__.py index 45b3fe365..b5a812fb4 100644 --- a/contrib/pyln-client/pyln/client/__init__.py +++ b/contrib/pyln-client/pyln/client/__init__.py @@ -4,7 +4,7 @@ from .gossmap import Gossmap, GossmapNode, GossmapChannel, GossmapHalfchannel, G from .gossmapstats import GossmapStats from .version import NodeVersion -__version__ = "25.02" +__version__ = "25.05rc1" __all__ = [ "LightningRpc", diff --git a/contrib/pyln-client/pyproject.toml b/contrib/pyln-client/pyproject.toml index c9c01ee82..5caee344e 100644 --- a/contrib/pyln-client/pyproject.toml +++ b/contrib/pyln-client/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyln-client" -version = "25.02" +version = "25.05rc1" description = "Client library and plugin library for Core Lightning" authors = ["Christian Decker "] license = "BSD-MIT" diff --git a/contrib/pyln-proto/pyln/proto/__init__.py b/contrib/pyln-proto/pyln/proto/__init__.py index 5a9d4a04f..2e3876300 100644 --- a/contrib/pyln-proto/pyln/proto/__init__.py +++ b/contrib/pyln-proto/pyln/proto/__init__.py @@ -4,7 +4,7 @@ from .invoice import Invoice from .onion import OnionPayload, TlvPayload, LegacyOnionPayload from .wire import LightningConnection, LightningServerSocket -__version__ = "25.02" +__version__ = "25.05rc1" __all__ = [ "Invoice", diff --git a/contrib/pyln-proto/pyproject.toml b/contrib/pyln-proto/pyproject.toml index 9d006eca7..49ef867a9 100644 --- a/contrib/pyln-proto/pyproject.toml +++ b/contrib/pyln-proto/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyln-proto" -version = "25.02" +version = "25.05rc1" description = "This package implements some of the Lightning Network protocol in pure python. It is intended for protocol testing and some minor tooling only. It is not deemed secure enough to handle any amount of real funds (you have been warned!)." authors = ["Christian Decker "] license = "BSD-MIT" diff --git a/contrib/pyln-testing/pyln/testing/__init__.py b/contrib/pyln-testing/pyln/testing/__init__.py index 3d45a9bcf..ee735081d 100644 --- a/contrib/pyln-testing/pyln/testing/__init__.py +++ b/contrib/pyln-testing/pyln/testing/__init__.py @@ -1,4 +1,4 @@ -__version__ = "25.02" +__version__ = "25.05rc1" __all__ = [ "__version__", diff --git a/contrib/pyln-testing/pyproject.toml b/contrib/pyln-testing/pyproject.toml index 8b9cda88c..0068816c1 100644 --- a/contrib/pyln-testing/pyproject.toml +++ b/contrib/pyln-testing/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyln-testing" -version = "25.02" +version = "25.05rc1" description = "Test your Core Lightning integration, plugins or whatever you want" authors = ["Christian Decker "] license = "BSD-MIT" diff --git a/doc/schemas/commando.json b/doc/schemas/commando.json index 8b6f868e4..7d7016992 100644 --- a/doc/schemas/commando.json +++ b/doc/schemas/commando.json @@ -124,7 +124,7 @@ "netaddr": [ "127.0.0.1:19736" ], - "features": "08a0882a8a59a1" + "features": "08a8882a8a59a1" } ] } diff --git a/doc/schemas/connect.json b/doc/schemas/connect.json index cc2f8adee..8375cec14 100644 --- a/doc/schemas/connect.json +++ b/doc/schemas/connect.json @@ -199,7 +199,7 @@ }, "response": { "id": "nodeid020202020202020202020202020202020202020202020202020202020202", - "features": "08a0882a8a59a1", + "features": "08a8882a8a59a1", "direction": "out", "address": { "type": "ipv4", @@ -220,7 +220,7 @@ }, "response": { "id": "nodeid030303030303030303030303030303030303030303030303030303030303", - "features": "08a0882a8a59a1", + "features": "08a8882a8a59a1", "direction": "out", "address": { "type": "ipv4", diff --git a/doc/schemas/datastoreusage.json b/doc/schemas/datastoreusage.json index cb3f6ac49..c86f10326 100644 --- a/doc/schemas/datastoreusage.json +++ b/doc/schemas/datastoreusage.json @@ -84,7 +84,7 @@ "response": { "datastoreusage": { "key": "[]", - "total_bytes": 161 + "total_bytes": 2909 } } }, diff --git a/doc/schemas/getinfo.json b/doc/schemas/getinfo.json index 1fcf60628..20e164832 100644 --- a/doc/schemas/getinfo.json +++ b/doc/schemas/getinfo.json @@ -410,14 +410,14 @@ "port": 19735 } ], - "version": "v25.02", + "version": "v25.05rc1", "blockheight": 110, "network": "regtest", "fees_collected_msat": 0, "lightning-dir": "/tmp/.lightning/regtest", "our_features": { - "init": "08a0882a8a59a1", - "node": "88a0882a8a59a1", + "init": "08a8882a8a59a1", + "node": "88a8882a8a59a1", "channel": "", "invoice": "02000002024100" } diff --git a/doc/schemas/listconfigs.json b/doc/schemas/listconfigs.json index 4ca235058..c2a27ea6c 100644 --- a/doc/schemas/listconfigs.json +++ b/doc/schemas/listconfigs.json @@ -1941,10 +1941,6 @@ "set": true, "source": "cmdline" }, - "experimental-peer-storage": { - "set": false, - "source": "default" - }, "experimental-quiesce": { "set": false, "source": "default" diff --git a/doc/schemas/listhtlcs.json b/doc/schemas/listhtlcs.json index 6054f178d..6507dc4c7 100644 --- a/doc/schemas/listhtlcs.json +++ b/doc/schemas/listhtlcs.json @@ -192,7 +192,7 @@ "updated_index": 18, "short_channel_id": "109x1x1", "id": 1, - "expiry": 136, + "expiry": 135, "direction": "out", "amount_msat": 10001, "payment_hash": "paymenthashinvl0310031003100310031003100310031003100310031003100", diff --git a/doc/schemas/listnodes.json b/doc/schemas/listnodes.json index 606495ebe..33cbef527 100644 --- a/doc/schemas/listnodes.json +++ b/doc/schemas/listnodes.json @@ -280,7 +280,7 @@ "alias": "HOPPINGFIRE", "color": "035d2b", "last_timestamp": 1738000000, - "features": "88a0882a8a59a1", + "features": "88a8882a8a59a1", "addresses": [] } ] @@ -299,7 +299,7 @@ "alias": "SILENTARTIST", "color": "022d22", "last_timestamp": 1738000000, - "features": "88a0882a8a59a1", + "features": "88a8882a8a59a1", "addresses": [] }, { @@ -307,7 +307,7 @@ "alias": "JUNIORBEAM", "color": "0266e4", "last_timestamp": 1738010000, - "features": "88a0882a8a59a1", + "features": "88a8882a8a59a1", "addresses": [] }, { @@ -315,7 +315,7 @@ "alias": "HOPPINGFIRE", "color": "035d2b", "last_timestamp": 1738020000, - "features": "88a0882a8a59a1", + "features": "88a8882a8a59a1", "addresses": [] }, { @@ -323,7 +323,7 @@ "alias": "JUNIORFELONY", "color": "0382ce", "last_timestamp": 1738030000, - "features": "88a0882a8a59a1", + "features": "88a8882a8a59a1", "addresses": [] } ] diff --git a/doc/schemas/listpeers.json b/doc/schemas/listpeers.json index 05c2c7559..db9999126 100644 --- a/doc/schemas/listpeers.json +++ b/doc/schemas/listpeers.json @@ -342,7 +342,7 @@ "netaddr": [ "127.0.0.1:19736" ], - "features": "08a0882a8a59a1" + "features": "08a8882a8a59a1" } ] } @@ -362,7 +362,7 @@ "netaddr": [ "127.0.0.1:19734" ], - "features": "08a0882a8a59a1" + "features": "08a8882a8a59a1" }, { "id": "nodeid030303030303030303030303030303030303030303030303030303030303", @@ -371,13 +371,13 @@ "netaddr": [ "127.0.0.1:19736" ], - "features": "08a0882a8a59a1" + "features": "08a8882a8a59a1" }, { "id": "nodeid040404040404040404040404040404040404040404040404040404040404", "connected": false, "num_channels": 1, - "features": "08a0882a8a59a1" + "features": "08a8882a8a59a1" } ] } diff --git a/plugins/wss-proxy/pyproject.toml b/plugins/wss-proxy/pyproject.toml index b09513272..e15d4100c 100644 --- a/plugins/wss-proxy/pyproject.toml +++ b/plugins/wss-proxy/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "wss-proxy" -version = "25.02" +version = "25.05rc1" description = "Web secure socket proxy" authors = ["ShahanaFarooqui "] [tool.poetry.dependencies] python = "^3.8" -pyln-client = ">=24.11 <25.05" +pyln-client = ">=24.11 <25.09" websockets = "^12.0" diff --git a/poetry.lock b/poetry.lock index d913a8bf8..9c2b31288 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1550,7 +1550,7 @@ files = [ [[package]] name = "pyln-client" -version = "25.02" +version = "25.05rc1" description = "Client library and plugin library for Core Lightning" optional = false python-versions = "^3.8" @@ -1586,7 +1586,7 @@ url = "contrib/pyln-grpc-proto" [[package]] name = "pyln-proto" -version = "25.02" +version = "25.05rc1" description = "This package implements some of the Lightning Network protocol in pure python. It is intended for protocol testing and some minor tooling only. It is not deemed secure enough to handle any amount of real funds (you have been warned!)." optional = false python-versions = "^3.8" @@ -1607,7 +1607,7 @@ url = "contrib/pyln-proto" [[package]] name = "pyln-testing" -version = "25.02" +version = "25.05rc1" description = "Test your Core Lightning integration, plugins or whatever you want" optional = false python-versions = "^3.8" @@ -2205,7 +2205,7 @@ h11 = ">=0.9.0,<1" [[package]] name = "wss-proxy" -version = "25.02" +version = "25.05rc1" description = "Web secure socket proxy" optional = false python-versions = "^3.8" @@ -2214,7 +2214,7 @@ files = [] develop = true [package.dependencies] -pyln-client = ">=24.11 <25.05" +pyln-client = ">=24.11 <25.09" websockets = "^12.0" [package.source] diff --git a/tools/reckless b/tools/reckless index 36586d580..9942e4288 100755 --- a/tools/reckless +++ b/tools/reckless @@ -21,7 +21,7 @@ from urllib.error import HTTPError import venv -__VERSION__ = '25.02rc1' +__VERSION__ = '25.05rc1' logging.basicConfig( level=logging.INFO,