Skip to content

Commit 09e03e9

Browse files
committed
deprecations: update v25.11 to v25.12.
Signed-off-by: Rusty Russell <[email protected]>
1 parent f69fdd2 commit 09e03e9

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

contrib/msggen/msggen/schema.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5277,7 +5277,7 @@
52775277
"type": "hex",
52785278
"deprecated": [
52795279
"v24.11",
5280-
"v25.11"
5280+
"v25.12"
52815281
],
52825282
"description": [
52835283
"The raw bitcoin transaction used to close the channel (if it was open)."
@@ -5287,7 +5287,7 @@
52875287
"type": "txid",
52885288
"deprecated": [
52895289
"v24.11",
5290-
"v25.11"
5290+
"v25.12"
52915291
],
52925292
"description": [
52935293
"The transaction id of the *tx* field."
@@ -10497,7 +10497,7 @@
1049710497
"added": "v23.05",
1049810498
"depecated": [
1049910499
"v24.11",
10500-
"v25.11"
10500+
"v25.12"
1050110501
],
1050210502
"rpc": "decodepay",
1050310503
"title": "Command for decoding a bolt11 string (low-level)",

doc/developers-guide/deprecations.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ hidden: false
2020
| experimental-onion-messages | Config | v24.08 | v25.02 | Now the default |
2121
| decode.blinding | Field | v24.11 | v25.05 | Renamed to `first_path_key` in BOLT 4 (available in `decode` from v24.11) |
2222
| onion_message_recv.blinding | Hook Field | v24.11 | v25.05 | Renamed to `first_path_key` in BOLT 4 (available in hook from v24.11) |
23-
| decodepay | Command | v24.11 | v25.11 | Use `decode` which is more powerful (since v23.05) |
24-
| close.tx | Field | v24.11 | v25.11 | Use txs array instead |
25-
| close.txid | Field | v24.11 | v25.11 | Use txids array instead |
23+
| decodepay | Command | v24.11 | v25.12 | Use `decode` which is more powerful (since v23.05) |
24+
| close.tx | Field | v24.11 | v25.12 | Use txs array instead |
25+
| close.txid | Field | v24.11 | v25.12 | Use txids array instead |
2626
| experimental-offers | Config | v24.11 | v25.05 | Now the default |
27-
| xpay.ignore_bolt12_mpp | Field | v25.05 | v25.11 | Try MPP even if the BOLT12 invoice doesn't explicitly allow it (CLN didn't until 25.02) |
27+
| 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.02 | Use our_max_total_htlc_out_msat |
2929
| wait.details | Field | v25.05 | v26.05 | Use subsystem-specific object instead |
3030
| channel_state_changed.old_state.unknown | Notification Field | v25.05 | v26.02 | Value "unknown" is deprecated: field will be omitted instead |

doc/schemas/close.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
"type": "hex",
116116
"deprecated": [
117117
"v24.11",
118-
"v25.11"
118+
"v25.12"
119119
],
120120
"description": [
121121
"The raw bitcoin transaction used to close the channel (if it was open)."
@@ -125,7 +125,7 @@
125125
"type": "txid",
126126
"deprecated": [
127127
"v24.11",
128-
"v25.11"
128+
"v25.12"
129129
],
130130
"description": [
131131
"The transaction id of the *tx* field."

doc/schemas/decodepay.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"added": "v23.05",
55
"depecated": [
66
"v24.11",
7-
"v25.11"
7+
"v25.12"
88
],
99
"rpc": "decodepay",
1010
"title": "Command for decoding a bolt11 string (low-level)",

lightningd/closing_control.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ resolve_one_close_command(struct close_command *cc, bool cooperative,
5858
struct json_stream *result = json_stream_success(cc->cmd);
5959
const struct bitcoin_tx *close_tx = close_txs[tal_count(close_txs) - 1];
6060

61-
if (command_deprecated_out_ok(cc->cmd, "tx", "v24.11", "v25.11"))
61+
if (command_deprecated_out_ok(cc->cmd, "tx", "v24.11", "v25.12"))
6262
json_add_tx(result, "tx", close_tx);
6363
if (!invalid_last_tx(close_tx)) {
6464
struct bitcoin_txid txid;
6565
bitcoin_txid(close_tx, &txid);
66-
if (command_deprecated_out_ok(cc->cmd, "txid", "v24.11", "v25.11"))
66+
if (command_deprecated_out_ok(cc->cmd, "txid", "v24.11", "v25.12"))
6767
json_add_txid(result, "txid", &txid);
6868
}
6969

lightningd/invoice.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1586,7 +1586,7 @@ static const struct json_command decodepay_command = {
15861586
"decodepay",
15871587
json_decodepay,
15881588
.depr_start = "v24.11",
1589-
.depr_end = "v25.11"
1589+
.depr_end = "v25.12"
15901590
};
15911591
AUTODATA(json_command, &decodepay_command);
15921592

lightningd/options.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1261,7 +1261,7 @@ static char *opt_set_shutdown_wrong_funding(struct lightningd *ld)
12611261
static char *opt_set_peer_storage(struct lightningd *ld)
12621262
{
12631263
if (!opt_deprecated_ok(ld, "experimental-peer-storage", NULL,
1264-
"v25.05", "v25.11"))
1264+
"v25.05", "v25.12"))
12651265
return "--experimental-peer-storage is now enabled by default";
12661266
return NULL;
12671267
}

plugins/xpay/xpay.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1641,7 +1641,7 @@ static struct command_result *json_xpay_core(struct command *cmd,
16411641
payment->final_cltv = 0;
16421642
/* We will start honoring this flag in future */
16431643
payment->disable_mpp = !feature_offered(b12inv->invoice_features, OPT_BASIC_MPP);
1644-
if (payment->disable_mpp && command_deprecated_in_ok(cmd, "ignore_bolt12_mpp", "v25.05", "v25.11"))
1644+
if (payment->disable_mpp && command_deprecated_in_ok(cmd, "ignore_bolt12_mpp", "v25.05", "v25.12"))
16451645
payment->disable_mpp = false;
16461646
} else {
16471647
struct bolt11 *b11

0 commit comments

Comments
 (0)