From 00733232d4f7a988e018f3a6c6211509bf7c51b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Bruus=20Zeppelin?= Date: Wed, 28 Aug 2024 10:24:36 +0200 Subject: [PATCH] Fix changelog --- packages/sdk/CHANGELOG.md | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md index 4806a1c4..e5fa0f55 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 8.0.0 + +### Breaking changes + +- `getEmbeddedModuleSchema` now uses the module version to determine in which custom wasm sections to look for the schema. + It also no longer is `async` because there isn't any need for it to be so. +- `ConcordiumGRPCClient.getEmbeddedSchema` now delegates to `getEmbeddedModuleSchema` instead of `wasmToSchema` + (which was removed as it was just a less capable version of `getEmbeddedModuleSchema`). + This means that it returns the complete `RawModuleSchema` instead of only the schema bytes. + It also means that it returns `null` instead of an error when no embedded schema was found. + + ## 7.5.1 ### Fixed @@ -36,16 +48,6 @@ - Serialization of nonces with `serializeCIS4RevocationDataHolder` to serialize as little endian. -### Breaking changes - -- `getEmbeddedModuleSchema` now uses the module version to determine in which custom wasm sections to look for the schema. - It also no longer is `async` because there isn't any need for it to be so. -- `ConcordiumGRPCClient.getEmbeddedSchema` now delegates to `getEmbeddedModuleSchema` instead of `wasmToSchema` - (which was removed as it was just a less capable version of `getEmbeddedModuleSchema`). - This means that it returns the complete `RawModuleSchema` instead of only the schema bytes. - It also means that it returns `null` instead of an error when no embedded schema was found. - - ## 7.3.2 ### Added