From 2c65b009519adfbfb7284098f4c9665a450ec67e Mon Sep 17 00:00:00 2001 From: gabrielkerekes Date: Thu, 19 Aug 2021 13:27:02 +0200 Subject: [PATCH] chore(cardano): add changelog entries --- core/.changelog.d/1683.changed.1 | 1 + core/.changelog.d/1683.changed.2 | 1 + core/.changelog.d/1683.fixed.4 | 1 + core/.changelog.d/1683.incompatible.3 | 1 + python/.changelog.d/1683.changed.1 | 1 + python/.changelog.d/1683.incompatible.2 | 1 + 6 files changed, 6 insertions(+) create mode 100644 core/.changelog.d/1683.changed.1 create mode 100644 core/.changelog.d/1683.changed.2 create mode 100644 core/.changelog.d/1683.fixed.4 create mode 100644 core/.changelog.d/1683.incompatible.3 create mode 100644 python/.changelog.d/1683.changed.1 create mode 100644 python/.changelog.d/1683.incompatible.2 diff --git a/core/.changelog.d/1683.changed.1 b/core/.changelog.d/1683.changed.1 new file mode 100644 index 000000000..b381dc65c --- /dev/null +++ b/core/.changelog.d/1683.changed.1 @@ -0,0 +1 @@ +Thanks to transaction streaming, Cardano now supports larger transactions (tested with 62kB transactions, but supposedly even larger transactions are supported) diff --git a/core/.changelog.d/1683.changed.2 b/core/.changelog.d/1683.changed.2 new file mode 100644 index 000000000..b0ebb89f2 --- /dev/null +++ b/core/.changelog.d/1683.changed.2 @@ -0,0 +1 @@ +Cardano transaction parameters are now streamed into the device one by one instead of being sent as one large object diff --git a/core/.changelog.d/1683.fixed.4 b/core/.changelog.d/1683.fixed.4 new file mode 100644 index 000000000..d33d11bad --- /dev/null +++ b/core/.changelog.d/1683.fixed.4 @@ -0,0 +1 @@ +It is no longer possible to sign Cardano transactions containing paths belonging to multiple accounts (except for Byron to Shelley migration) diff --git a/core/.changelog.d/1683.incompatible.3 b/core/.changelog.d/1683.incompatible.3 new file mode 100644 index 000000000..238b608ea --- /dev/null +++ b/core/.changelog.d/1683.incompatible.3 @@ -0,0 +1 @@ +Due to transaction streaming in Cardano, it isn't possible to return the whole serialized transaction anymore. Instead the transaction hash, transaction witnesses and auxiliary data supplement are returned and the serialized transaction needs to be assembled by the client. diff --git a/python/.changelog.d/1683.changed.1 b/python/.changelog.d/1683.changed.1 new file mode 100644 index 000000000..b0ebb89f2 --- /dev/null +++ b/python/.changelog.d/1683.changed.1 @@ -0,0 +1 @@ +Cardano transaction parameters are now streamed into the device one by one instead of being sent as one large object diff --git a/python/.changelog.d/1683.incompatible.2 b/python/.changelog.d/1683.incompatible.2 new file mode 100644 index 000000000..238b608ea --- /dev/null +++ b/python/.changelog.d/1683.incompatible.2 @@ -0,0 +1 @@ +Due to transaction streaming in Cardano, it isn't possible to return the whole serialized transaction anymore. Instead the transaction hash, transaction witnesses and auxiliary data supplement are returned and the serialized transaction needs to be assembled by the client.