|
| 1 | +# Release Notes |
| 2 | +- [Bug Fixes](#bug-fixes) |
| 3 | +- [New Features](#new-features) |
| 4 | + - [Functional Enhancements](#functional-enhancements) |
| 5 | + - [RPC Additions](#rpc-additions) |
| 6 | + - [tapcli Additions](#tapcli-additions) |
| 7 | +- [Improvements](#improvements) |
| 8 | + - [Functional Updates](#functional-updates) |
| 9 | + - [RPC Updates](#rpc-updates) |
| 10 | + - [tapcli Updates](#tapcli-updates) |
| 11 | + - [Breaking Changes](#breaking-changes) |
| 12 | + - [Performance Improvements](#performance-improvements) |
| 13 | + - [Deprecations](#deprecations) |
| 14 | +- [Technical and Architectural Updates](#technical-and-architectural-updates) |
| 15 | + - [BIP/bLIP Spec Updates](#bipblip-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 | +- A bug in the [syncer was fixed where IDs were compared |
| 24 | + incorrectly](https://github.com/lightninglabs/taproot-assets/pull/1610). |
| 25 | + |
| 26 | +- [An integration test flake was |
| 27 | + fixed](https://github.com/lightninglabs/taproot-assets/pull/1651). |
| 28 | + |
| 29 | +# New Features |
| 30 | + |
| 31 | +## Functional Enhancements |
| 32 | + |
| 33 | +- A series of PRs added support for creating and verifying grouped asset supply |
| 34 | + commitments: |
| 35 | + - https://github.com/lightninglabs/taproot-assets/pull/1602 |
| 36 | + - https://github.com/lightninglabs/taproot-assets/pull/1464 |
| 37 | + - https://github.com/lightninglabs/taproot-assets/pull/1589 |
| 38 | + - https://github.com/lightninglabs/taproot-assets/pull/1507 |
| 39 | + - https://github.com/lightninglabs/taproot-assets/pull/1508 |
| 40 | + - https://github.com/lightninglabs/taproot-assets/pull/1638 |
| 41 | + - https://github.com/lightninglabs/taproot-assets/pull/1643 |
| 42 | + - https://github.com/lightninglabs/taproot-assets/pull/1655 |
| 43 | + - https://github.com/lightninglabs/taproot-assets/pull/1554 |
| 44 | + |
| 45 | +- Assets burned before `v0.6.0` were not yet added to the table that contains |
| 46 | + all burn events (which can be listed with the `ListBurns` RPC). A [database |
| 47 | + migration](https://github.com/lightninglabs/taproot-assets/pull/1612) was |
| 48 | + added that retroactively inserts all burned assets into that table. |
| 49 | + |
| 50 | +## RPC Additions |
| 51 | + |
| 52 | +- The [price oracle RPC calls now have an intent, optional peer ID and metadata |
| 53 | + field](https://github.com/lightninglabs/taproot-assets/pull/1677) for more |
| 54 | + context to help the oracle return an optimal asset price rate. The intent |
| 55 | + distinguishes between paying an asset invoice vs. creating an asset invoice |
| 56 | + and the three distinct phases of those two processes: Asking for a price hint |
| 57 | + before creating the request, requesting an actual price for a swap and |
| 58 | + validating a price returned from a peer. See `priceoraclerpc.Intent` in the |
| 59 | + [API |
| 60 | + docs](https://lightning.engineering/api-docs/api/taproot-assets/price-oracle/query-asset-rates/#priceoraclerpcintent) |
| 61 | + for more information on the different values and their meaning. |
| 62 | +- The `SendPayment`, `AddInvoice` and `DecodeAssetPayReq` RPCs now have a [new |
| 63 | + `price_oracle_metadata` field the user can specify to send additional metadata |
| 64 | + to a price oracle](https://github.com/lightninglabs/taproot-assets/pull/1677) |
| 65 | + when requesting quotes. The field can contain optional user or authentication |
| 66 | + information that helps the price oracle to decide on the optimal price rate to |
| 67 | + return. |
| 68 | + |
| 69 | +## tapcli Additions |
| 70 | + |
| 71 | +# Improvements |
| 72 | + |
| 73 | +## Functional Updates |
| 74 | + |
| 75 | +## RPC Updates |
| 76 | + |
| 77 | +## tapcli Updates |
| 78 | + |
| 79 | +## Code Health |
| 80 | + |
| 81 | +- A series of PRs was created that refactored the send and funding logic in |
| 82 | + preparation for supporting grouped asset on-chain TAP addresses: |
| 83 | + - https://github.com/lightninglabs/taproot-assets/pull/1502 |
| 84 | + - https://github.com/lightninglabs/taproot-assets/pull/1611 |
| 85 | + - https://github.com/lightninglabs/taproot-assets/pull/1512 |
| 86 | + - https://github.com/lightninglabs/taproot-assets/pull/1614 |
| 87 | + - https://github.com/lightninglabs/taproot-assets/pull/1621 |
| 88 | + - https://github.com/lightninglabs/taproot-assets/pull/1658 |
| 89 | + |
| 90 | +- The compile time dependency version of `lnd` was bumped to `v0.19.2-beta` in |
| 91 | + [#1657](https://github.com/lightninglabs/taproot-assets/pull/1657). |
| 92 | + |
| 93 | +- All [`lndclient` wrapper services were moved to their own `lndservices` sub |
| 94 | + package](https://github.com/lightninglabs/taproot-assets/pull/1668). |
| 95 | + |
| 96 | +## Breaking Changes |
| 97 | + |
| 98 | +## Performance Improvements |
| 99 | + |
| 100 | +## Deprecations |
| 101 | + |
| 102 | +# Technical and Architectural Updates |
| 103 | + |
| 104 | +## BIP/bLIP Spec Updates |
| 105 | + |
| 106 | +## Testing |
| 107 | + |
| 108 | +## Database |
| 109 | + |
| 110 | +## Code Health |
| 111 | + |
| 112 | +## Tooling and Documentation |
| 113 | + |
| 114 | +- [Two new sequence diagrams were |
| 115 | + added](https://github.com/lightninglabs/taproot-assets/pull/1677) to the [RFQ |
| 116 | + section of the RFQ and decimal display |
| 117 | + document](https://github.com/lightninglabs/taproot-assets/blob/main/docs/rfq-and-decimal-display.md#rfq) |
| 118 | + that show the interaction between `tapd` and its price oracle for the two |
| 119 | + different flows. |
| 120 | + |
| 121 | +- Integration tests can [now run in |
| 122 | + parallel](https://github.com/lightninglabs/taproot-assets/pull/1641) which |
| 123 | + saves a lot of cumulative CI minutes in GitHub Actions. |
| 124 | + |
| 125 | +# Contributors (Alphabetical Order) |
| 126 | + |
| 127 | +- Oliver Gugger |
0 commit comments