v0.69.0-beta
What's Changed
- Implement Activities by @danielgranhao in #1257
- Handle
ReverseSwapUpdated
event by @andrei-21 in #1258
UDL Changes
modified src/lipalightninglib.udl
@@ -53,6 +53,9 @@ interface LightningNode {
[Throws=LnError]
OutgoingPaymentInfo get_outgoing_payment(string hash);
+ [Throws=LnError]
+ Activity get_activity(string hash);
+
[Throws=LnError]
void set_payment_personal_note(string payment_hash, string note);
@@ -191,6 +194,28 @@ interface LightningNode {
[Throws=LnError]
void set_feature_flag(FeatureFlag feature, boolean flag_enabled);
+
+ Activities activities();
+};
+
+interface Activities {
+ [Throws=LnError]
+ ListActivitiesResponse list(u32 number_of_activities);
+
+ [Throws=LnError]
+ Activity get(string hash);
+
+ [Throws=LnError]
+ Activity? get_by_reverse_swap(string reverse_swap_id);
+
+ [Throws=LnError]
+ IncomingPaymentInfo get_incoming_payment(string hash);
+
+ [Throws=LnError]
+ OutgoingPaymentInfo get_outgoing_payment(string hash);
+
+ [Throws=LnError]
+ void set_personal_note(string payment_hash, string note);
};
dictionary Config {
@@ -256,6 +281,7 @@ callback interface EventsCallback {
void payment_failed(string payment_hash);
void channel_closed(string channel_id, string reason);
void swap_received(string payment_hash);
+ void reverse_swap_sent(string reverse_swap_id);
void breez_health_status_changed_to(BreezHealthCheckStatus status);
void synced();
};
Misc
- Bump thiserror from 1.0.65 to 1.0.67 by @dependabot in #1249
- Bump anyhow from 1.0.91 to 1.0.92 by @dependabot in #1246
- Bump tokio from 1.40.0 to 1.41.1 by @dependabot in #1253
- Bump anyhow from 1.0.92 to 1.0.93 by @dependabot in #1251
- Bump thiserror from 1.0.67 to 2.0.0 by @dependabot in #1252
- Bump thiserror from 2.0.0 to 2.0.3 by @dependabot in #1255
- Bump serial_test from 3.1.1 to 3.2.0 by @dependabot in #1254
- Bump serde from 1.0.214 to 1.0.215 by @dependabot in #1256
Full Changelog: v0.68.0-beta...v0.69.0-beta