Skip to content

Commit 8847786

Browse files
committed
deprecations: update v26.05 to v26.06.
Signed-off-by: Rusty Russell <[email protected]> Changelog-Changed: Future release schedule moved one month: v25.05 is now v25.06, and all deprecations incremented accordingly.
1 parent 094ac35 commit 8847786

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

contrib/msggen/msggen/schema.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23684,7 +23684,7 @@
2368423684
],
2368523685
"deprecated": [
2368623686
"v25.02",
23687-
"v26.05"
23687+
"v26.06"
2368823688
]
2368923689
},
2369023690
"their_max_htlc_value_in_flight_msat": {
@@ -34884,7 +34884,7 @@
3488434884
"additionalProperties": false,
3488534885
"deprecated": [
3488634886
"v25.05",
34887-
"v26.05"
34887+
"v26.06"
3488834888
],
3488934889
"properties": {
3489034890
"status": {
@@ -34998,7 +34998,7 @@
3499834998
"additionalProperties": false,
3499934999
"deprecated": [
3500035000
"v25.05",
35001-
"v26.05"
35001+
"v26.06"
3500235002
],
3500335003
"properties": {
3500435004
"status": {
@@ -35114,7 +35114,7 @@
3511435114
"additionalProperties": false,
3511535115
"deprecated": [
3511635116
"v25.05",
35117-
"v26.05"
35117+
"v26.06"
3511835118
],
3511935119
"properties": {
3512035120
"status": {

doc/developers-guide/deprecations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ hidden: false
2626
| experimental-offers | Config | v24.11 | v25.05 | Now the default |
2727
| xpay.ignore_bolt12_mpp | Field | v25.05 | v25.12 | Try MPP even if the BOLT12 invoice doesn't explicitly allow it (CLN didn't until 25.02) |
2828
| listpeerchannels.max_total_htlc_in_msat | Field | v25.02 | v26.03 | Use our_max_total_htlc_out_msat |
29-
| wait.details | Field | v25.05 | v26.05 | Use subsystem-specific object instead |
29+
| wait.details | Field | v25.05 | v26.06 | Use subsystem-specific object instead |
3030
| channel_state_changed.old_state.unknown | Notification Field | v25.05 | v26.03 | Value "unknown" is deprecated: field will be omitted instead |
3131

3232
Inevitably there are features which need to change: either to be generalized, or removed when they can no longer be supported.

doc/schemas/listpeerchannels.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@
554554
],
555555
"deprecated": [
556556
"v25.02",
557-
"v26.05"
557+
"v26.06"
558558
]
559559
},
560560
"their_max_htlc_value_in_flight_msat": {

doc/schemas/wait.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
"additionalProperties": false,
118118
"deprecated": [
119119
"v25.05",
120-
"v26.05"
120+
"v26.06"
121121
],
122122
"properties": {
123123
"status": {
@@ -231,7 +231,7 @@
231231
"additionalProperties": false,
232232
"deprecated": [
233233
"v25.05",
234-
"v26.05"
234+
"v26.06"
235235
],
236236
"properties": {
237237
"status": {
@@ -347,7 +347,7 @@
347347
"additionalProperties": false,
348348
"deprecated": [
349349
"v25.05",
350-
"v26.05"
350+
"v26.06"
351351
],
352352
"properties": {
353353
"status": {

lightningd/wait.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ static void json_add_index(struct command *cmd,
8888
va_copy(ap2, *ap);
8989
/* "htlcs" never had details field: it came after! */
9090
if (subsystem != WAIT_SUBSYSTEM_HTLCS
91-
&& command_deprecated_out_ok(cmd, "details", "v25.05", "v26.05")) {
91+
&& command_deprecated_out_ok(cmd, "details", "v25.05", "v26.06")) {
9292
json_object_start(response, "details");
9393
while ((name = va_arg(*ap, const char *)) != NULL) {
9494
value = va_arg(*ap, const char *);

0 commit comments

Comments
 (0)