|  | 
|  | 1 | +# Release Notes | 
|  | 2 | +- [Bug Fixes](#bug-fixes) | 
|  | 3 | +- [New Features](#new-features) | 
|  | 4 | +    - [Functional Enhancements](#functional-enhancements) | 
|  | 5 | +    - [RPC Additions](#rpc-additions) | 
|  | 6 | +    - [lncli Additions](#lncli-additions) | 
|  | 7 | +- [Improvements](#improvements) | 
|  | 8 | +    - [Functional Updates](#functional-updates) | 
|  | 9 | +    - [RPC Updates](#rpc-updates) | 
|  | 10 | +    - [lncli Updates](#lncli-updates) | 
|  | 11 | +    - [Breaking Changes](#breaking-changes) | 
|  | 12 | +    - [Performance Improvements](#performance-improvements) | 
|  | 13 | +    - [Deprecations](#deprecations) | 
|  | 14 | +- [Technical and Architectural Updates](#technical-and-architectural-updates) | 
|  | 15 | +    - [BOLT Spec Updates](#bolt-spec-updates) | 
|  | 16 | +    - [Testing](#testing) | 
|  | 17 | +    - [Database](#database) | 
|  | 18 | +    - [Code Health](#code-health) | 
|  | 19 | +    - [Tooling and Documentation](#tooling-and-documentation) | 
|  | 20 | + | 
|  | 21 | +# Bug Fixes | 
|  | 22 | + | 
|  | 23 | +* [Fix a serialisation bug](https://github.com/lightningnetwork/lnd/pull/9856)  | 
|  | 24 | +  that would occur when an attempt was made to write a backup file for a channel  | 
|  | 25 | +  peer that has advertised an address that we do not yet know how to parse.  | 
|  | 26 | + | 
|  | 27 | +# New Features | 
|  | 28 | + | 
|  | 29 | +## Functional Enhancements | 
|  | 30 | + | 
|  | 31 | +## RPC Additions | 
|  | 32 | + | 
|  | 33 | +## lncli Additions | 
|  | 34 | + | 
|  | 35 | +# Improvements | 
|  | 36 | +## Functional Updates | 
|  | 37 | + | 
|  | 38 | +## RPC Updates | 
|  | 39 | + | 
|  | 40 | +## lncli Updates | 
|  | 41 | + | 
|  | 42 | +## Code Health | 
|  | 43 | + | 
|  | 44 | +## Breaking Changes | 
|  | 45 | +## Performance Improvements | 
|  | 46 | + | 
|  | 47 | +## Deprecations | 
|  | 48 | + | 
|  | 49 | +### ⚠️ **Warning:** The following RPCs will be removed in release version **0.21**: | 
|  | 50 | + | 
|  | 51 | +| Deprecated RPC Method | REST Equivalent | HTTP Method | Path | Replaced By | | 
|  | 52 | +|----------------------|----------------|-------------|------------------------------|------------------| | 
|  | 53 | +| [`lnrpc.SendToRoute`](https://lightning.engineering/api-docs/api/lnd/lightning/send-to-route/index.html) <br> [`routerrpc.SendToRoute`](https://lightning.engineering/api-docs/api/lnd/router/send-to-route/) | ❌ (No direct REST equivalent) | — | — | [`routerrpc.SendToRouteV2`](https://lightning.engineering/api-docs/api/lnd/router/send-to-route-v2/) | | 
|  | 54 | +| [`lnrpc.SendPayment`](https://lightning.engineering/api-docs/api/lnd/lightning/send-payment/) <br> [`routerrpc.SendPayment`](https://lightning.engineering/api-docs/api/lnd/router/send-payment/) | ✅ | `POST` | `/v1/channels/transaction-stream` | [`routerrpc.SendPaymentV2`](https://lightning.engineering/api-docs/api/lnd/router/send-payment-v2/index.html) | | 
|  | 55 | +| [`lnrpc.SendToRouteSync`](https://lightning.engineering/api-docs/api/lnd/lightning/send-to-route-sync/index.html) | ✅ | `POST` | `/v1/channels/transactions/route` | [`routerrpc.SendToRouteV2`](https://lightning.engineering/api-docs/api/lnd/router/send-to-route-v2/) | | 
|  | 56 | +| [`lnrpc.SendPaymentSync`](https://lightning.engineering/api-docs/api/lnd/lightning/send-payment-sync/index.html) | ✅ | `POST` | `/v1/channels/transactions` | [`routerrpc.SendPaymentV2`](https://lightning.engineering/api-docs/api/lnd/router/send-payment-v2/index.html) | | 
|  | 57 | +| [`router.TrackPayment`](https://lightning.engineering/api-docs/api/lnd/router/track-payment/index.html) | ❌ (No direct REST equivalent) | — | — | [`routerrpc.TrackPaymentV2`](https://lightning.engineering/api-docs/api/lnd/router/track-payment-v2/) | | 
|  | 58 | + | 
|  | 59 | +🚨 **Users are strongly encouraged** to transition to the new **V2 methods** before release **0.21** to ensure compatibility: | 
|  | 60 | + | 
|  | 61 | +| New RPC Method | REST Equivalent | HTTP Method | Path | | 
|  | 62 | +|---------------|----------------|-------------|------------------------| | 
|  | 63 | +| [`routerrpc.SendToRouteV2`](https://lightning.engineering/api-docs/api/lnd/router/send-to-route-v2/) | ✅ | `POST` | `/v2/router/route/send` | | 
|  | 64 | +| [`routerrpc.SendPaymentV2`](https://lightning.engineering/api-docs/api/lnd/router/send-payment-v2/index.html) | ✅ | `POST` | `/v2/router/send` | | 
|  | 65 | +| [`routerrpc.TrackPaymentV2`](https://lightning.engineering/api-docs/api/lnd/router/track-payment-v2/) | ✅ | `GET` | `/v2/router/track/{payment_hash}` | | 
|  | 66 | + | 
|  | 67 | +# Technical and Architectural Updates | 
|  | 68 | +## BOLT Spec Updates | 
|  | 69 | + | 
|  | 70 | +## Testing | 
|  | 71 | + | 
|  | 72 | +## Database | 
|  | 73 | + | 
|  | 74 | +## Code Health | 
|  | 75 | + | 
|  | 76 | +## Tooling and Documentation | 
|  | 77 | + | 
|  | 78 | +# Contributors (Alphabetical Order) | 
|  | 79 | + | 
|  | 80 | +* Elle Mouton | 
0 commit comments