Skip to content

Commit 094ac35

Browse files
committed
deprecations: update v26.02 to v26.03.
Signed-off-by: Rusty Russell <[email protected]>
1 parent 09e03e9 commit 094ac35

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

contrib/msggen/msggen/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36806,7 +36806,7 @@
3680636806
],
3680736807
"description": [
3680836808
"The channel state, in particular \"CHANNELD_NORMAL\" means the channel can be used normally.",
36809-
"The deprecated value 'unknown' is also present for new channels: after 26.02 this field will be omitted instead."
36809+
"The deprecated value 'unknown' is also present for new channels: after v26.03 this field will be omitted instead."
3681036810
],
3681136811
"added": "pre-v0.10.1"
3681236812
},

doc/developers-guide/deprecations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ hidden: false
2525
| close.txid | Field | v24.11 | v25.12 | Use txids array instead |
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) |
28-
| listpeerchannels.max_total_htlc_in_msat | Field | v25.02 | v26.02 | Use our_max_total_htlc_out_msat |
28+
| listpeerchannels.max_total_htlc_in_msat | Field | v25.02 | v26.03 | Use our_max_total_htlc_out_msat |
2929
| wait.details | Field | v25.05 | v26.05 | Use subsystem-specific object instead |
30-
| channel_state_changed.old_state.unknown | Notification Field | v25.05 | v26.02 | Value "unknown" is deprecated: field will be omitted instead |
30+
| 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.
3333

doc/schemas/notification/channel_state_changed.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
],
6969
"description": [
7070
"The channel state, in particular \"CHANNELD_NORMAL\" means the channel can be used normally.",
71-
"The deprecated value 'unknown' is also present for new channels: after 26.02 this field will be omitted instead."
71+
"The deprecated value 'unknown' is also present for new channels: after v26.03 this field will be omitted instead."
7272
],
7373
"added": "pre-v0.10.1"
7474
},

lightningd/notification.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ static void channel_state_changed_notification_serialize(struct json_stream *str
295295
json_add_timeiso(stream, "timestamp", timestamp);
296296
if (old_state != 0 || lightningd_deprecated_out_ok(ld, ld->deprecated_ok,
297297
"channel_state_changed", "old_state.unknown",
298-
"v25.05", "v26.02"))
298+
"v25.05", "v26.03"))
299299
json_add_string(stream, "old_state", channel_state_str(old_state));
300300
json_add_string(stream, "new_state", channel_state_str(new_state));
301301
json_add_string(stream, "cause", channel_change_state_reason_str(cause));

lightningd/peer_control.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1162,7 +1162,7 @@ static void NON_NULL_ARGS(1, 2, 4, 5) json_add_channel(struct command *cmd,
11621162
json_add_amount_sat_msat(response, "dust_limit_msat",
11631163
channel->our_config.dust_limit);
11641164
if (command_deprecated_out_ok(cmd, "max_total_htlc_in_msat",
1165-
"v25.02", "v26.02"))
1165+
"v25.02", "v26.03"))
11661166
json_add_amount_msat(response, "max_total_htlc_in_msat",
11671167
channel->our_config.max_htlc_value_in_flight);
11681168
json_add_amount_msat(

0 commit comments

Comments
 (0)