From 88248ef21f11b3f38564b6cddd642c1c91aec66b Mon Sep 17 00:00:00 2001 From: Lace Bot Date: Wed, 20 Sep 2023 16:12:08 +0000 Subject: [PATCH] ci: publish packages [skip actions] - @cardano-sdk/cardano-services-client@0.14.0 - @cardano-sdk/cardano-services@0.19.0 - @cardano-sdk/core@0.20.0 - @cardano-sdk/crypto@0.1.14 - @cardano-sdk/dapp-connector@0.10.0 - @cardano-sdk/e2e@0.21.0 - @cardano-sdk/golden-test-generator@0.7.25 - @cardano-sdk/governance@0.8.0 - @cardano-sdk/hardware-ledger@0.4.0 - @cardano-sdk/input-selection@0.12.0 - @cardano-sdk/key-management@0.11.0 - @cardano-sdk/ogmios@0.13.0 - @cardano-sdk/projection-typeorm@0.5.0 - @cardano-sdk/projection@0.8.0 - @cardano-sdk/tx-construction@0.12.0 - @cardano-sdk/util-dev@0.16.0 - @cardano-sdk/util-rxjs@0.5.11 - @cardano-sdk/util@0.14.1 - @cardano-sdk/wallet@0.22.0 - @cardano-sdk/web-extension@0.15.0 --- packages/cardano-services-client/CHANGELOG.md | 27 ++++++++++ packages/cardano-services-client/package.json | 2 +- packages/cardano-services/CHANGELOG.md | 46 ++++++++++++++++ packages/cardano-services/package.json | 2 +- packages/core/CHANGELOG.md | 52 +++++++++++++++++++ packages/core/package.json | 2 +- packages/crypto/CHANGELOG.md | 4 ++ packages/crypto/package.json | 2 +- packages/dapp-connector/CHANGELOG.md | 16 ++++++ packages/dapp-connector/package.json | 2 +- packages/e2e/CHANGELOG.md | 30 +++++++++++ packages/e2e/package.json | 2 +- packages/golden-test-generator/CHANGELOG.md | 4 ++ packages/golden-test-generator/package.json | 2 +- packages/governance/CHANGELOG.md | 10 ++++ packages/governance/package.json | 2 +- packages/hardware-ledger/CHANGELOG.md | 19 +++++++ packages/hardware-ledger/package.json | 2 +- packages/input-selection/CHANGELOG.md | 10 ++++ packages/input-selection/package.json | 2 +- packages/key-management/CHANGELOG.md | 13 +++++ packages/key-management/package.json | 2 +- packages/ogmios/CHANGELOG.md | 28 ++++++++++ packages/ogmios/package.json | 2 +- packages/projection-typeorm/CHANGELOG.md | 36 +++++++++++++ packages/projection-typeorm/package.json | 2 +- packages/projection/CHANGELOG.md | 37 +++++++++++++ packages/projection/package.json | 2 +- packages/tx-construction/CHANGELOG.md | 27 ++++++++++ packages/tx-construction/package.json | 2 +- packages/util-dev/CHANGELOG.md | 30 +++++++++++ packages/util-dev/package.json | 2 +- packages/util-rxjs/CHANGELOG.md | 4 ++ packages/util-rxjs/package.json | 2 +- packages/util/CHANGELOG.md | 6 +++ packages/util/package.json | 2 +- packages/wallet/CHANGELOG.md | 34 ++++++++++++ packages/wallet/package.json | 2 +- packages/web-extension/CHANGELOG.md | 10 ++++ packages/web-extension/package.json | 2 +- 40 files changed, 463 insertions(+), 20 deletions(-) diff --git a/packages/cardano-services-client/CHANGELOG.md b/packages/cardano-services-client/CHANGELOG.md index e169113c121..96345ab145f 100644 --- a/packages/cardano-services-client/CHANGELOG.md +++ b/packages/cardano-services-client/CHANGELOG.md @@ -3,6 +3,33 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/cardano-services-client@0.13.0...@cardano-sdk/cardano-services-client@0.14.0) (2023-09-20) + +### ⚠ BREAKING CHANGES + +* renamed field handle to handleResolutions +* incompatible with previous revisions of cardano-services +- rename utxo and transactions PouchDB stores +- update type of Tx.witness.redeemers +- update type of Tx.witness.datums +- update type of TxOut.datum +- remove Cardano.Datum type + +fix(cardano-services): correct chain history openApi endpoints path url to match version + +### Features + +* update core types with deserialized PlutusData ([d8cc93b](https://github.com/input-output-hk/cardano-js-sdk/commit/d8cc93b520177c98224502aad39109a0cb524f3c)) + +### Bug Fixes + +* **cardano-services-client:** use service version instead of root version ([cf9b173](https://github.com/input-output-hk/cardano-js-sdk/commit/cf9b173bdee6fa0ad1a63414dde16686ba04943f)) +* **util:** deserialize bytes as Uint8Array instead of Buffer ([78460d3](https://github.com/input-output-hk/cardano-js-sdk/commit/78460d36c6c7b75815b0d5fce1303b5dde91f3b6)) + +### Code Refactoring + +* renamed field handle to handleResolutions ([8b3296e](https://github.com/input-output-hk/cardano-js-sdk/commit/8b3296e19b27815f3a8487479a691483696cc898)) + ## [0.13.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/cardano-services-client@0.12.2...@cardano-sdk/cardano-services-client@0.13.0) (2023-09-12) ### ⚠ BREAKING CHANGES diff --git a/packages/cardano-services-client/package.json b/packages/cardano-services-client/package.json index 3d41440ac64..d3be47ca428 100644 --- a/packages/cardano-services-client/package.json +++ b/packages/cardano-services-client/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-sdk/cardano-services-client", - "version": "0.13.0", + "version": "0.14.0", "description": "Cardano Services Client", "engines": { "node": ">=16.20.1" diff --git a/packages/cardano-services/CHANGELOG.md b/packages/cardano-services/CHANGELOG.md index 315e7ab67a5..09a1279655e 100644 --- a/packages/cardano-services/CHANGELOG.md +++ b/packages/cardano-services/CHANGELOG.md @@ -3,6 +3,52 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.19.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/cardano-services@0.18.0...@cardano-sdk/cardano-services@0.19.0) (2023-09-20) + +### ⚠ BREAKING CHANGES + +* make withHandles 'logger' argument required +* withHandles now requires WithCIP67 props in +* remove the CML serialization code from core package +* remove AssetInfo.history and AssetInfo.mintOrBurnCount +* convert tokens.quantity column to numeric +* renamed field handle to handleResolutions +* hoist metadatumToCip25 to NftMetadata.fromMetadatum +* incompatible with previous revisions of cardano-services +- rename utxo and transactions PouchDB stores +- update type of Tx.witness.redeemers +- update type of Tx.witness.datums +- update type of TxOut.datum +- remove Cardano.Datum type + +fix(cardano-services): correct chain history openApi endpoints path url to match version + +### Features + +* add address projection ([416e5f5](https://github.com/input-output-hk/cardano-js-sdk/commit/416e5f5edc112727d86e0905733f7f6c1c2fd4c5)) +* add NFT metadata projection ([91fe7df](https://github.com/input-output-hk/cardano-js-sdk/commit/91fe7df50a37bce2ac8cba350fafe788a8174112)) +* **cardano-services:** add HandleMetadata to handle projection ([233ed70](https://github.com/input-output-hk/cardano-js-sdk/commit/233ed70366bea72d9db223c8ce348ba72e8f64b6)) +* **cardano-services:** create typeorm nft-metadata service ([72f6c1b](https://github.com/input-output-hk/cardano-js-sdk/commit/72f6c1b7a091ed4998651e0d5c4bf9c1c0afdfa9)) +* **cardano-services:** create TypeormAssetProvider ([aaf133b](https://github.com/input-output-hk/cardano-js-sdk/commit/aaf133bb776d16dafd955345071e05e0faf599e4)) +* **cardano-services:** resolve default handle, image, pfp and bg ([9c446ac](https://github.com/input-output-hk/cardano-js-sdk/commit/9c446acea6747562b15c7d60fbe6351f872cc2af)) +* **cardano-services:** update handle projector to project 'default' columns ([903faf2](https://github.com/input-output-hk/cardano-js-sdk/commit/903faf2c51ade7fdc3f03b046660d27425a5f660)) +* remove the CML serialization code from core package ([62f4252](https://github.com/input-output-hk/cardano-js-sdk/commit/62f4252b094938db05b81c928c03c1eecec2be55)) +* update core types with deserialized PlutusData ([d8cc93b](https://github.com/input-output-hk/cardano-js-sdk/commit/d8cc93b520177c98224502aad39109a0cb524f3c)) + +### Bug Fixes + +* **cardano-services:** do not return datum hash for TxOut with inline datum ([8928869](https://github.com/input-output-hk/cardano-js-sdk/commit/8928869d392799f5c5913fc2e60b0ff69964c3dd)) +* **cardano-services:** return 0 for stake pool status ([6674b77](https://github.com/input-output-hk/cardano-js-sdk/commit/6674b77e9ae6dfca1b8fff2ef4cf9c6fbd733efc)) +* convert tokens.quantity column to numeric ([31b0f0a](https://github.com/input-output-hk/cardano-js-sdk/commit/31b0f0a789ba474156fc8e6615e3b9e1ab8a4077)) +* correct cip68 handle name (without label) ([1711969](https://github.com/input-output-hk/cardano-js-sdk/commit/171196916244d0bcde83b18d509669c2c38a0d63)) + +### Code Refactoring + +* hoist metadatumToCip25 to NftMetadata.fromMetadatum ([c36d7ef](https://github.com/input-output-hk/cardano-js-sdk/commit/c36d7ef9480fe195068443a5d8d09728e9429fc5)) +* make withHandles 'logger' argument required ([2267689](https://github.com/input-output-hk/cardano-js-sdk/commit/22676895735bde4399e284e60a8e4e7cf2d4a506)) +* remove AssetInfo.history and AssetInfo.mintOrBurnCount ([4c0a7ee](https://github.com/input-output-hk/cardano-js-sdk/commit/4c0a7ee77d9ffcf5583fc922597475c4025be17b)) +* renamed field handle to handleResolutions ([8b3296e](https://github.com/input-output-hk/cardano-js-sdk/commit/8b3296e19b27815f3a8487479a691483696cc898)) + ## [0.18.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/cardano-services@0.17.0...@cardano-sdk/cardano-services@0.18.0) (2023-09-12) ### ⚠ BREAKING CHANGES diff --git a/packages/cardano-services/package.json b/packages/cardano-services/package.json index a2865be47ba..23e7dbf7279 100644 --- a/packages/cardano-services/package.json +++ b/packages/cardano-services/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-sdk/cardano-services", - "version": "0.18.0", + "version": "0.19.0", "description": "Cardano GraphQL Services", "engines": { "node": ">=16.20.1" diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index c8a61abce74..2f98e67b4b2 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,58 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.20.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/core@0.19.1...@cardano-sdk/core@0.20.0) (2023-09-20) + +### ⚠ BREAKING CHANGES + +* delegation distribution portfolio is now persisted on chain and taken into account during change distribution +* **core:** rename HandleResolution default props to credential +* remove the CML serialization code from core package +* remove AssetInfo.history and AssetInfo.mintOrBurnCount +* renamed field handle to handleResolutions +* hoist metadatumToCip25 to NftMetadata.fromMetadatum +* incompatible with previous revisions of cardano-services +- rename utxo and transactions PouchDB stores +- update type of Tx.witness.redeemers +- update type of Tx.witness.datums +- update type of TxOut.datum +- remove Cardano.Datum type + +fix(cardano-services): correct chain history openApi endpoints path url to match version + +### Features + +* add support for signing data with a DRepID in CIP-95 API ([3057cce](https://github.com/input-output-hk/cardano-js-sdk/commit/3057cce6ac1585d6ae2a62a89d0417e5fb2416f4)) +* added witness set serialization classes ([132599d](https://github.com/input-output-hk/cardano-js-sdk/commit/132599d104be1e601d5849b716cc503af80a9fbb)) +* **core:** add AssetName.toUTF8 util ([5f13b4f](https://github.com/input-output-hk/cardano-js-sdk/commit/5f13b4fbe1574dfd9fecf600364c331c028714e7)) +* **core:** add hexToBytes, utf8ToBytes, utf8ToHex utils ([d3da1a6](https://github.com/input-output-hk/cardano-js-sdk/commit/d3da1a6218e148926f0c0c2b184600fc303b8c82)) +* **core:** add NftMetadata.fromPlutusData mapping from cip68 datum ([64b263b](https://github.com/input-output-hk/cardano-js-sdk/commit/64b263b3875a5e3359f72c088ae57efd59ce7a2d)) +* **core:** added custom PlutusData serialization classes ([72e600c](https://github.com/input-output-hk/cardano-js-sdk/commit/72e600c9e3d9502862121a69408cff9ef4c0d8e9)) +* **core:** added native functions to convert between json and metadatum ([b0ba261](https://github.com/input-output-hk/cardano-js-sdk/commit/b0ba26141e53797bc7f61ca9e4adb8f3e996d9e2)) +* **core:** added serialization classes for tx auxiliary data ([4b49e57](https://github.com/input-output-hk/cardano-js-sdk/commit/4b49e5761f69a80f7675a22d9dee6ca96a005aa0)) +* **core:** added transaction body serialization classes ([9451a05](https://github.com/input-output-hk/cardano-js-sdk/commit/9451a052d072e20bbce1bd7a5d392f8717dd0db6)) +* **core:** added update field to the transaction body core type ([2e9c439](https://github.com/input-output-hk/cardano-js-sdk/commit/2e9c439ffe4f91588ebab5eb7abf7bf907861145)) +* **core:** export tryConvertPlutusMapToUtf8Record from Cardano.util ([645db52](https://github.com/input-output-hk/cardano-js-sdk/commit/645db529b27528affeee7db8f4c8611864ad7932)) +* **core:** plutus data map now uses deep equality when being indexed by key ([c34076c](https://github.com/input-output-hk/cardano-js-sdk/commit/c34076ca82281f0c34a4aed77cf84c3fca9f7466)) +* **core:** replaced CML TransactionBody serialization class with out own typescript native version ([0dfaeb7](https://github.com/input-output-hk/cardano-js-sdk/commit/0dfaeb72617039f76b7a428644ae3c70f60f744c)) +* delegation distribution portfolio is now persisted on chain and taken into account during change distribution ([7573938](https://github.com/input-output-hk/cardano-js-sdk/commit/75739385ea422a0621ded87f2b72c5878e3fcf81)) +* remove the CML serialization code from core package ([62f4252](https://github.com/input-output-hk/cardano-js-sdk/commit/62f4252b094938db05b81c928c03c1eecec2be55)) +* update core types with deserialized PlutusData ([d8cc93b](https://github.com/input-output-hk/cardano-js-sdk/commit/d8cc93b520177c98224502aad39109a0cb524f3c)) + +### Bug Fixes + +* **core:** bytes field on core plutus script type now contains the compiled bytes instead of cbor ([15a6ba6](https://github.com/input-output-hk/cardano-js-sdk/commit/15a6ba6239d9da768b34835e4069eb2c0bff03ca)) +* **core:** do not log a warning when nft metadata files are missing ([b79419b](https://github.com/input-output-hk/cardano-js-sdk/commit/b79419bf84d2ca02a8a5e8a1b55effde01c929cd)) +* **core:** fix circular dependency on cip67 module ([67f6892](https://github.com/input-output-hk/cardano-js-sdk/commit/67f689295d51931c196c10ef84ede3e7c8a88828)) +* **core:** return consistent bytes type in Serialization ([9331d01](https://github.com/input-output-hk/cardano-js-sdk/commit/9331d01bd1ac1077ac821d59c57c35374f01cc68)) + +### Code Refactoring + +* **core:** rename HandleResolution default props to credential ([877279f](https://github.com/input-output-hk/cardano-js-sdk/commit/877279fe09a57baf789ef87e03e8af61fe6bc4bc)) +* hoist metadatumToCip25 to NftMetadata.fromMetadatum ([c36d7ef](https://github.com/input-output-hk/cardano-js-sdk/commit/c36d7ef9480fe195068443a5d8d09728e9429fc5)) +* remove AssetInfo.history and AssetInfo.mintOrBurnCount ([4c0a7ee](https://github.com/input-output-hk/cardano-js-sdk/commit/4c0a7ee77d9ffcf5583fc922597475c4025be17b)) +* renamed field handle to handleResolutions ([8b3296e](https://github.com/input-output-hk/cardano-js-sdk/commit/8b3296e19b27815f3a8487479a691483696cc898)) + ## [0.19.1](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/core@0.19.0...@cardano-sdk/core@0.19.1) (2023-09-12) ### Features diff --git a/packages/core/package.json b/packages/core/package.json index 8d292d41842..9911600a28e 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-sdk/core", - "version": "0.19.1", + "version": "0.20.0", "description": "Core types and libraries for Cardano", "engines": { "node": ">=16.20.1" diff --git a/packages/crypto/CHANGELOG.md b/packages/crypto/CHANGELOG.md index 3a45e89c109..3ea6a54f272 100644 --- a/packages/crypto/CHANGELOG.md +++ b/packages/crypto/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.14](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/crypto@0.1.13...@cardano-sdk/crypto@0.1.14) (2023-09-20) + +**Note:** Version bump only for package @cardano-sdk/crypto + ## [0.1.13](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/crypto@0.1.12...@cardano-sdk/crypto@0.1.13) (2023-09-12) ### Features diff --git a/packages/crypto/package.json b/packages/crypto/package.json index 1775cfc326e..3382b03ce29 100644 --- a/packages/crypto/package.json +++ b/packages/crypto/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-sdk/crypto", - "version": "0.1.13", + "version": "0.1.14", "description": "Cryptographic types and functions for Cardano. Warning: The libsodium crypto provider has not yet been audited. Use at this stage is at own risk", "engines": { "node": ">=16.20.1" diff --git a/packages/dapp-connector/CHANGELOG.md b/packages/dapp-connector/CHANGELOG.md index 03f1f48dd0a..5a80692f3d6 100644 --- a/packages/dapp-connector/CHANGELOG.md +++ b/packages/dapp-connector/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/dapp-connector@0.9.16...@cardano-sdk/dapp-connector@0.10.0) (2023-09-20) + +### ⚠ BREAKING CHANGES + +* remove the CML serialization code from core package + +### Features + +* add getExtensions() to CIP-30 wallet API ([944e0ce](https://github.com/input-output-hk/cardano-js-sdk/commit/944e0cea55bcd8c91e1888e708e717adc7b1ea4b)) +* add support for signing data with a DRepID in CIP-95 API ([3057cce](https://github.com/input-output-hk/cardano-js-sdk/commit/3057cce6ac1585d6ae2a62a89d0417e5fb2416f4)) +* remove the CML serialization code from core package ([62f4252](https://github.com/input-output-hk/cardano-js-sdk/commit/62f4252b094938db05b81c928c03c1eecec2be55)) + +### Bug Fixes + +* **dapp-connector:** remove unnecessary bindings for CIP-30 initial API methods ([c786042](https://github.com/input-output-hk/cardano-js-sdk/commit/c786042862b1577f409fbab8b83b8b8a05a2d1bc)) + ## [0.9.16](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/dapp-connector@0.9.15...@cardano-sdk/dapp-connector@0.9.16) (2023-09-12) **Note:** Version bump only for package @cardano-sdk/dapp-connector diff --git a/packages/dapp-connector/package.json b/packages/dapp-connector/package.json index 44fb360c1c2..3b27136e761 100644 --- a/packages/dapp-connector/package.json +++ b/packages/dapp-connector/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-sdk/dapp-connector", - "version": "0.9.16", + "version": "0.10.0", "description": "TypeScript definitions for the dApp Connector standard CIP30", "engines": { "node": ">=16.20.1" diff --git a/packages/e2e/CHANGELOG.md b/packages/e2e/CHANGELOG.md index b9c541a367f..3d98b3e52b6 100644 --- a/packages/e2e/CHANGELOG.md +++ b/packages/e2e/CHANGELOG.md @@ -3,6 +3,36 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.21.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.20.0...@cardano-sdk/e2e@0.21.0) (2023-09-20) + +### ⚠ BREAKING CHANGES + +* delegation distribution portfolio is now persisted on chain and taken into account during change distribution +* remove the CML serialization code from core package +* remove AssetInfo.history and AssetInfo.mintOrBurnCount +* incompatible with previous revisions of cardano-services +- rename utxo and transactions PouchDB stores +- update type of Tx.witness.redeemers +- update type of Tx.witness.datums +- update type of TxOut.datum +- remove Cardano.Datum type + +fix(cardano-services): correct chain history openApi endpoints path url to match version + +### Features + +* add getExtensions() to CIP-30 wallet API ([944e0ce](https://github.com/input-output-hk/cardano-js-sdk/commit/944e0cea55bcd8c91e1888e708e717adc7b1ea4b)) +* add NFT metadata projection ([91fe7df](https://github.com/input-output-hk/cardano-js-sdk/commit/91fe7df50a37bce2ac8cba350fafe788a8174112)) +* add support for signing data with a DRepID in CIP-95 API ([3057cce](https://github.com/input-output-hk/cardano-js-sdk/commit/3057cce6ac1585d6ae2a62a89d0417e5fb2416f4)) +* delegation distribution portfolio is now persisted on chain and taken into account during change distribution ([7573938](https://github.com/input-output-hk/cardano-js-sdk/commit/75739385ea422a0621ded87f2b72c5878e3fcf81)) +* **e2e:** hoist handle minting utils to src ([e49f3fd](https://github.com/input-output-hk/cardano-js-sdk/commit/e49f3fd28b29ff398acb4e2386124e25a570918a)) +* remove the CML serialization code from core package ([62f4252](https://github.com/input-output-hk/cardano-js-sdk/commit/62f4252b094938db05b81c928c03c1eecec2be55)) +* update core types with deserialized PlutusData ([d8cc93b](https://github.com/input-output-hk/cardano-js-sdk/commit/d8cc93b520177c98224502aad39109a0cb524f3c)) + +### Code Refactoring + +* remove AssetInfo.history and AssetInfo.mintOrBurnCount ([4c0a7ee](https://github.com/input-output-hk/cardano-js-sdk/commit/4c0a7ee77d9ffcf5583fc922597475c4025be17b)) + ## [0.20.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.19.3...@cardano-sdk/e2e@0.20.0) (2023-09-12) ### ⚠ BREAKING CHANGES diff --git a/packages/e2e/package.json b/packages/e2e/package.json index d2ccd680f52..f5c6e6e0d02 100644 --- a/packages/e2e/package.json +++ b/packages/e2e/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-sdk/e2e", - "version": "0.20.0", + "version": "0.21.0", "description": "End to end tests for the cardano-js-sdk packages.", "engines": { "node": ">=16.20.1" diff --git a/packages/golden-test-generator/CHANGELOG.md b/packages/golden-test-generator/CHANGELOG.md index 90ea7b508e0..3441c6ebf5b 100644 --- a/packages/golden-test-generator/CHANGELOG.md +++ b/packages/golden-test-generator/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.25](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/golden-test-generator@0.7.24...@cardano-sdk/golden-test-generator@0.7.25) (2023-09-20) + +**Note:** Version bump only for package @cardano-sdk/golden-test-generator + ## [0.7.24](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/golden-test-generator@0.7.23...@cardano-sdk/golden-test-generator@0.7.24) (2023-09-12) **Note:** Version bump only for package @cardano-sdk/golden-test-generator diff --git a/packages/golden-test-generator/package.json b/packages/golden-test-generator/package.json index d4be5379325..f99d7d3faa0 100644 --- a/packages/golden-test-generator/package.json +++ b/packages/golden-test-generator/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-sdk/golden-test-generator", - "version": "0.7.24", + "version": "0.7.25", "description": "Generate golden test files for a range of Cardano concepts", "engines": { "node": ">=16.20.1" diff --git a/packages/governance/CHANGELOG.md b/packages/governance/CHANGELOG.md index 7dce3a5ed1f..f0f4fc68ded 100644 --- a/packages/governance/CHANGELOG.md +++ b/packages/governance/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.8.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/governance@0.7.19...@cardano-sdk/governance@0.8.0) (2023-09-20) + +### ⚠ BREAKING CHANGES + +* remove the CML serialization code from core package + +### Features + +* remove the CML serialization code from core package ([62f4252](https://github.com/input-output-hk/cardano-js-sdk/commit/62f4252b094938db05b81c928c03c1eecec2be55)) + ## [0.7.19](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/governance@0.7.18...@cardano-sdk/governance@0.7.19) (2023-09-12) **Note:** Version bump only for package @cardano-sdk/governance diff --git a/packages/governance/package.json b/packages/governance/package.json index 40e923ad05f..d1eacabfe2d 100644 --- a/packages/governance/package.json +++ b/packages/governance/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-sdk/governance", - "version": "0.7.19", + "version": "0.8.0", "description": "Governance types and utilities for Cardano", "engines": { "node": ">=16.20.1" diff --git a/packages/hardware-ledger/CHANGELOG.md b/packages/hardware-ledger/CHANGELOG.md index 6fbaa696caf..91b5826d62d 100644 --- a/packages/hardware-ledger/CHANGELOG.md +++ b/packages/hardware-ledger/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.4.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/hardware-ledger@0.3.4...@cardano-sdk/hardware-ledger@0.4.0) (2023-09-20) + +### ⚠ BREAKING CHANGES + +* remove the CML serialization code from core package +* incompatible with previous revisions of cardano-services +- rename utxo and transactions PouchDB stores +- update type of Tx.witness.redeemers +- update type of Tx.witness.datums +- update type of TxOut.datum +- remove Cardano.Datum type + +fix(cardano-services): correct chain history openApi endpoints path url to match version + +### Features + +* remove the CML serialization code from core package ([62f4252](https://github.com/input-output-hk/cardano-js-sdk/commit/62f4252b094938db05b81c928c03c1eecec2be55)) +* update core types with deserialized PlutusData ([d8cc93b](https://github.com/input-output-hk/cardano-js-sdk/commit/d8cc93b520177c98224502aad39109a0cb524f3c)) + ## [0.3.4](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/hardware-ledger@0.3.3...@cardano-sdk/hardware-ledger@0.3.4) (2023-09-12) **Note:** Version bump only for package @cardano-sdk/hardware-ledger diff --git a/packages/hardware-ledger/package.json b/packages/hardware-ledger/package.json index f8ad3de9ac5..b8750292b4d 100644 --- a/packages/hardware-ledger/package.json +++ b/packages/hardware-ledger/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-sdk/hardware-ledger", - "version": "0.3.4", + "version": "0.4.0", "description": "Mappings and integration with Ledger hardware", "engines": { "node": ">=16.20.1" diff --git a/packages/input-selection/CHANGELOG.md b/packages/input-selection/CHANGELOG.md index 6b4aae96841..b57261aa900 100644 --- a/packages/input-selection/CHANGELOG.md +++ b/packages/input-selection/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/input-selection@0.11.9...@cardano-sdk/input-selection@0.12.0) (2023-09-20) + +### ⚠ BREAKING CHANGES + +* remove the CML serialization code from core package + +### Features + +* remove the CML serialization code from core package ([62f4252](https://github.com/input-output-hk/cardano-js-sdk/commit/62f4252b094938db05b81c928c03c1eecec2be55)) + ## [0.11.9](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/input-selection@0.11.8...@cardano-sdk/input-selection@0.11.9) (2023-09-12) ### Bug Fixes diff --git a/packages/input-selection/package.json b/packages/input-selection/package.json index f06c170d2fb..0a6a19e6f55 100644 --- a/packages/input-selection/package.json +++ b/packages/input-selection/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-sdk/input-selection", - "version": "0.11.9", + "version": "0.12.0", "description": "TypeScript definitions for input-selection (Coin Selection Algorithms for Cardano)", "engines": { "node": ">=16.20.1" diff --git a/packages/key-management/CHANGELOG.md b/packages/key-management/CHANGELOG.md index 519b4d9f68a..30cb328674c 100644 --- a/packages/key-management/CHANGELOG.md +++ b/packages/key-management/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.11.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/key-management@0.10.3...@cardano-sdk/key-management@0.11.0) (2023-09-20) + +### ⚠ BREAKING CHANGES + +* remove the CML serialization code from core package +* **key-management:** remove deprecated trezor hardware wallet implementation + +### Features + +* add support for signing data with a DRepID in CIP-95 API ([3057cce](https://github.com/input-output-hk/cardano-js-sdk/commit/3057cce6ac1585d6ae2a62a89d0417e5fb2416f4)) +* **key-management:** remove deprecated trezor hardware wallet implementation ([76bed53](https://github.com/input-output-hk/cardano-js-sdk/commit/76bed5378c1c1930f6774927ee4fe3d5ab8d1964)) +* remove the CML serialization code from core package ([62f4252](https://github.com/input-output-hk/cardano-js-sdk/commit/62f4252b094938db05b81c928c03c1eecec2be55)) + ## [0.10.3](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/key-management@0.10.2...@cardano-sdk/key-management@0.10.3) (2023-09-12) **Note:** Version bump only for package @cardano-sdk/key-management diff --git a/packages/key-management/package.json b/packages/key-management/package.json index 4cd1f5375d6..4d1676b0448 100644 --- a/packages/key-management/package.json +++ b/packages/key-management/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-sdk/key-management", - "version": "0.10.3", + "version": "0.11.0", "description": "Key management types and utilities for Cardano", "engines": { "node": ">=16.20.1" diff --git a/packages/ogmios/CHANGELOG.md b/packages/ogmios/CHANGELOG.md index fa41b32d1b2..202ff011612 100644 --- a/packages/ogmios/CHANGELOG.md +++ b/packages/ogmios/CHANGELOG.md @@ -3,6 +3,34 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.13.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/ogmios@0.12.18...@cardano-sdk/ogmios@0.13.0) (2023-09-20) + +### ⚠ BREAKING CHANGES + +* renamed field handle to handleResolutions +* incompatible with previous revisions of cardano-services +- rename utxo and transactions PouchDB stores +- update type of Tx.witness.redeemers +- update type of Tx.witness.datums +- update type of TxOut.datum +- remove Cardano.Datum type + +fix(cardano-services): correct chain history openApi endpoints path url to match version + +### Features + +* **core:** added custom PlutusData serialization classes ([72e600c](https://github.com/input-output-hk/cardano-js-sdk/commit/72e600c9e3d9502862121a69408cff9ef4c0d8e9)) +* update core types with deserialized PlutusData ([d8cc93b](https://github.com/input-output-hk/cardano-js-sdk/commit/d8cc93b520177c98224502aad39109a0cb524f3c)) + +### Bug Fixes + +* correct ogmiosToCore auxiliaryData mapping ([eb0ddc0](https://github.com/input-output-hk/cardano-js-sdk/commit/eb0ddc03048680eb91ffc1cb17683c4993a00f85)) +* **util:** deserialize bytes as Uint8Array instead of Buffer ([78460d3](https://github.com/input-output-hk/cardano-js-sdk/commit/78460d36c6c7b75815b0d5fce1303b5dde91f3b6)) + +### Code Refactoring + +* renamed field handle to handleResolutions ([8b3296e](https://github.com/input-output-hk/cardano-js-sdk/commit/8b3296e19b27815f3a8487479a691483696cc898)) + ## [0.12.18](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/ogmios@0.12.17...@cardano-sdk/ogmios@0.12.18) (2023-09-12) **Note:** Version bump only for package @cardano-sdk/ogmios diff --git a/packages/ogmios/package.json b/packages/ogmios/package.json index 0109091488c..a4593bda86c 100644 --- a/packages/ogmios/package.json +++ b/packages/ogmios/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-sdk/ogmios", - "version": "0.12.18", + "version": "0.13.0", "description": "Ogmios Providers", "engines": { "node": ">=16.20.1" diff --git a/packages/projection-typeorm/CHANGELOG.md b/packages/projection-typeorm/CHANGELOG.md index 3291df7c02e..a8357648d22 100644 --- a/packages/projection-typeorm/CHANGELOG.md +++ b/packages/projection-typeorm/CHANGELOG.md @@ -3,6 +3,42 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/projection-typeorm@0.4.4...@cardano-sdk/projection-typeorm@0.5.0) (2023-09-20) + +### ⚠ BREAKING CHANGES + +* make withHandles 'logger' argument required +* withHandles now requires WithCIP67 props in +* rename Mappers.Handle type to HandleOwnership +* convert tokens.quantity column to numeric +* incompatible with previous revisions of cardano-services +- rename utxo and transactions PouchDB stores +- update type of Tx.witness.redeemers +- update type of Tx.witness.datums +- update type of TxOut.datum +- remove Cardano.Datum type + +fix(cardano-services): correct chain history openApi endpoints path url to match version + +### Features + +* add address projection ([416e5f5](https://github.com/input-output-hk/cardano-js-sdk/commit/416e5f5edc112727d86e0905733f7f6c1c2fd4c5)) +* add NFT metadata projection ([91fe7df](https://github.com/input-output-hk/cardano-js-sdk/commit/91fe7df50a37bce2ac8cba350fafe788a8174112)) +* **projection-typeorm:** add defaultForStakeCredential and defaultForPaymentCredential columns ([481996f](https://github.com/input-output-hk/cardano-js-sdk/commit/481996f602ebe74ea3fddaf8ae40f541c0232bb7)) +* **projection-typeorm:** add HandleMetadataEntity and storeHandleMetadata ([bca30bf](https://github.com/input-output-hk/cardano-js-sdk/commit/bca30bf809c2baeabf58736f4bfdd644e30b6f60)) +* **projection-typeorm:** hydrate event with stored utxo row IDs ([8520e4e](https://github.com/input-output-hk/cardano-js-sdk/commit/8520e4e27b14f2a73756f5030a0484ce0b0b09c9)) +* update core types with deserialized PlutusData ([d8cc93b](https://github.com/input-output-hk/cardano-js-sdk/commit/d8cc93b520177c98224502aad39109a0cb524f3c)) + +### Bug Fixes + +* convert tokens.quantity column to numeric ([31b0f0a](https://github.com/input-output-hk/cardano-js-sdk/commit/31b0f0a789ba474156fc8e6615e3b9e1ab8a4077)) +* correct cip68 handle name (without label) ([1711969](https://github.com/input-output-hk/cardano-js-sdk/commit/171196916244d0bcde83b18d509669c2c38a0d63)) + +### Code Refactoring + +* make withHandles 'logger' argument required ([2267689](https://github.com/input-output-hk/cardano-js-sdk/commit/22676895735bde4399e284e60a8e4e7cf2d4a506)) +* rename Mappers.Handle type to HandleOwnership ([4cb2f55](https://github.com/input-output-hk/cardano-js-sdk/commit/4cb2f551bc7c9ab883a3088a41c047dad866be92)) + ## [0.4.4](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/projection-typeorm@0.4.3...@cardano-sdk/projection-typeorm@0.4.4) (2023-09-12) **Note:** Version bump only for package @cardano-sdk/projection-typeorm diff --git a/packages/projection-typeorm/package.json b/packages/projection-typeorm/package.json index f35d06fb20a..7ede7d93129 100644 --- a/packages/projection-typeorm/package.json +++ b/packages/projection-typeorm/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-sdk/projection-typeorm", - "version": "0.4.4", + "version": "0.5.0", "description": "Project Chain Sync events into PostgreSQL via TypeORM", "engines": { "node": ">=16.20.1" diff --git a/packages/projection/CHANGELOG.md b/packages/projection/CHANGELOG.md index f052de89367..5a7266b6ac7 100644 --- a/packages/projection/CHANGELOG.md +++ b/packages/projection/CHANGELOG.md @@ -3,6 +3,43 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.8.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/projection@0.7.4...@cardano-sdk/projection@0.8.0) (2023-09-20) + +### ⚠ BREAKING CHANGES + +* make withHandles 'logger' argument required +* withHandles now requires WithCIP67 props in +* rename Mappers.Handle type to HandleOwnership +* incompatible with previous revisions of cardano-services +- rename utxo and transactions PouchDB stores +- update type of Tx.witness.redeemers +- update type of Tx.witness.datums +- update type of TxOut.datum +- remove Cardano.Datum type + +fix(cardano-services): correct chain history openApi endpoints path url to match version + +### Features + +* add address projection ([416e5f5](https://github.com/input-output-hk/cardano-js-sdk/commit/416e5f5edc112727d86e0905733f7f6c1c2fd4c5)) +* add NFT metadata projection ([91fe7df](https://github.com/input-output-hk/cardano-js-sdk/commit/91fe7df50a37bce2ac8cba350fafe788a8174112)) +* **projection:** add cip67.byAssetId ([060ac99](https://github.com/input-output-hk/cardano-js-sdk/commit/060ac99315ae3339d4e208f5578d587cf35a7dc2)) +* **projection:** add withHandleMetadata mapper ([9fc4722](https://github.com/input-output-hk/cardano-js-sdk/commit/9fc47227d37e00718d39fb3027e93bf419ab5644)) +* **projection:** ignore burn transactions when projecting cip25 metadata ([ab8bb29](https://github.com/input-output-hk/cardano-js-sdk/commit/ab8bb292d6a2065919d4ac9616ad501968e235d4)) +* **projection:** map 'extra' data with Mappers.withNftMetadata ([892c2eb](https://github.com/input-output-hk/cardano-js-sdk/commit/892c2eb5f955cda5d0698a1c5e493e64845ce0af)) +* update core types with deserialized PlutusData ([d8cc93b](https://github.com/input-output-hk/cardano-js-sdk/commit/d8cc93b520177c98224502aad39109a0cb524f3c)) + +### Bug Fixes + +* correct cip68 handle name (without label) ([1711969](https://github.com/input-output-hk/cardano-js-sdk/commit/171196916244d0bcde83b18d509669c2c38a0d63)) +* **projection:** infer incoming event type for withNftMetadata ([53cd873](https://github.com/input-output-hk/cardano-js-sdk/commit/53cd8739d94a4bbc8d856b046c7ce8db700a6561)) +* **projection:** keep latest nft metadata ([3f8242a](https://github.com/input-output-hk/cardano-js-sdk/commit/3f8242a52d26775958a89517287dacbd4cae06f2)) + +### Code Refactoring + +* make withHandles 'logger' argument required ([2267689](https://github.com/input-output-hk/cardano-js-sdk/commit/22676895735bde4399e284e60a8e4e7cf2d4a506)) +* rename Mappers.Handle type to HandleOwnership ([4cb2f55](https://github.com/input-output-hk/cardano-js-sdk/commit/4cb2f551bc7c9ab883a3088a41c047dad866be92)) + ## [0.7.4](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/projection@0.7.3...@cardano-sdk/projection@0.7.4) (2023-09-12) **Note:** Version bump only for package @cardano-sdk/projection diff --git a/packages/projection/package.json b/packages/projection/package.json index 95543ca1d8b..578d2a7747e 100644 --- a/packages/projection/package.json +++ b/packages/projection/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-sdk/projection", - "version": "0.7.4", + "version": "0.8.0", "description": "Chain Sync event projection", "engines": { "node": ">=16.20.1" diff --git a/packages/tx-construction/CHANGELOG.md b/packages/tx-construction/CHANGELOG.md index ea911e253fc..c1a3867c125 100644 --- a/packages/tx-construction/CHANGELOG.md +++ b/packages/tx-construction/CHANGELOG.md @@ -3,6 +3,33 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/tx-construction@0.11.3...@cardano-sdk/tx-construction@0.12.0) (2023-09-20) + +### ⚠ BREAKING CHANGES + +* delegation distribution portfolio is now persisted on chain and taken into account during change distribution +* remove the CML serialization code from core package +* renamed field handle to handleResolutions +* incompatible with previous revisions of cardano-services +- rename utxo and transactions PouchDB stores +- update type of Tx.witness.redeemers +- update type of Tx.witness.datums +- update type of TxOut.datum +- remove Cardano.Datum type + +fix(cardano-services): correct chain history openApi endpoints path url to match version + +### Features + +* added witness set serialization classes ([132599d](https://github.com/input-output-hk/cardano-js-sdk/commit/132599d104be1e601d5849b716cc503af80a9fbb)) +* delegation distribution portfolio is now persisted on chain and taken into account during change distribution ([7573938](https://github.com/input-output-hk/cardano-js-sdk/commit/75739385ea422a0621ded87f2b72c5878e3fcf81)) +* remove the CML serialization code from core package ([62f4252](https://github.com/input-output-hk/cardano-js-sdk/commit/62f4252b094938db05b81c928c03c1eecec2be55)) +* update core types with deserialized PlutusData ([d8cc93b](https://github.com/input-output-hk/cardano-js-sdk/commit/d8cc93b520177c98224502aad39109a0cb524f3c)) + +### Code Refactoring + +* renamed field handle to handleResolutions ([8b3296e](https://github.com/input-output-hk/cardano-js-sdk/commit/8b3296e19b27815f3a8487479a691483696cc898)) + ## [0.11.3](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/tx-construction@0.11.2...@cardano-sdk/tx-construction@0.11.3) (2023-09-12) **Note:** Version bump only for package @cardano-sdk/tx-construction diff --git a/packages/tx-construction/package.json b/packages/tx-construction/package.json index 641ab25b82a..efeebf3ba94 100644 --- a/packages/tx-construction/package.json +++ b/packages/tx-construction/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-sdk/tx-construction", - "version": "0.11.3", + "version": "0.12.0", "description": "Types and functions for constructing transactions on Cardano", "engines": { "node": ">=16.20.1" diff --git a/packages/util-dev/CHANGELOG.md b/packages/util-dev/CHANGELOG.md index 358d01b5dee..147d2498b27 100644 --- a/packages/util-dev/CHANGELOG.md +++ b/packages/util-dev/CHANGELOG.md @@ -3,6 +3,36 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/util-dev@0.15.3...@cardano-sdk/util-dev@0.16.0) (2023-09-20) + +### ⚠ BREAKING CHANGES + +* remove the CML serialization code from core package +* remove AssetInfo.history and AssetInfo.mintOrBurnCount +* incompatible with previous revisions of cardano-services +- rename utxo and transactions PouchDB stores +- update type of Tx.witness.redeemers +- update type of Tx.witness.datums +- update type of TxOut.datum +- remove Cardano.Datum type + +fix(cardano-services): correct chain history openApi endpoints path url to match version + +### Features + +* remove the CML serialization code from core package ([62f4252](https://github.com/input-output-hk/cardano-js-sdk/commit/62f4252b094938db05b81c928c03c1eecec2be55)) +* update core types with deserialized PlutusData ([d8cc93b](https://github.com/input-output-hk/cardano-js-sdk/commit/d8cc93b520177c98224502aad39109a0cb524f3c)) +* **util-dev:** add with-inline-datum.json chain sync data ([ff0b923](https://github.com/input-output-hk/cardano-js-sdk/commit/ff0b92363b07eb7557445fb6387fc46cc3f94e50)) + +### Bug Fixes + +* correct ogmiosToCore auxiliaryData mapping ([eb0ddc0](https://github.com/input-output-hk/cardano-js-sdk/commit/eb0ddc03048680eb91ffc1cb17683c4993a00f85)) +* **util-dev:** add missing 'inputSource' prop to some chainSync datasets ([0b236c9](https://github.com/input-output-hk/cardano-js-sdk/commit/0b236c9c69c5f4c51fbffb91377c1127d5221791)) + +### Code Refactoring + +* remove AssetInfo.history and AssetInfo.mintOrBurnCount ([4c0a7ee](https://github.com/input-output-hk/cardano-js-sdk/commit/4c0a7ee77d9ffcf5583fc922597475c4025be17b)) + ## [0.15.3](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/util-dev@0.15.2...@cardano-sdk/util-dev@0.15.3) (2023-09-12) **Note:** Version bump only for package @cardano-sdk/util-dev diff --git a/packages/util-dev/package.json b/packages/util-dev/package.json index 53358c5ac96..b7ea6ce558b 100644 --- a/packages/util-dev/package.json +++ b/packages/util-dev/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-sdk/util-dev", - "version": "0.15.3", + "version": "0.16.0", "description": "Utilities for tests in other packages", "engines": { "node": ">=16.20.1" diff --git a/packages/util-rxjs/CHANGELOG.md b/packages/util-rxjs/CHANGELOG.md index 4428b91a767..f673b2c3d68 100644 --- a/packages/util-rxjs/CHANGELOG.md +++ b/packages/util-rxjs/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.11](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/util-rxjs@0.5.10...@cardano-sdk/util-rxjs@0.5.11) (2023-09-20) + +**Note:** Version bump only for package @cardano-sdk/util-rxjs + ## [0.5.10](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/util-rxjs@0.5.9...@cardano-sdk/util-rxjs@0.5.10) (2023-09-12) **Note:** Version bump only for package @cardano-sdk/util-rxjs diff --git a/packages/util-rxjs/package.json b/packages/util-rxjs/package.json index e3b5965bc53..1e7ca126c84 100644 --- a/packages/util-rxjs/package.json +++ b/packages/util-rxjs/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-sdk/util-rxjs", - "version": "0.5.10", + "version": "0.5.11", "description": "RxJS extensions", "engines": { "node": ">=16.20.1" diff --git a/packages/util/CHANGELOG.md b/packages/util/CHANGELOG.md index 9e28316fcf8..c8f0e6d9889 100644 --- a/packages/util/CHANGELOG.md +++ b/packages/util/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.1](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/util@0.14.0...@cardano-sdk/util@0.14.1) (2023-09-20) + +### Bug Fixes + +* **util:** deserialize bytes as Uint8Array instead of Buffer ([78460d3](https://github.com/input-output-hk/cardano-js-sdk/commit/78460d36c6c7b75815b0d5fce1303b5dde91f3b6)) + ## [0.14.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/util@0.13.2...@cardano-sdk/util@0.14.0) (2023-08-21) ### ⚠ BREAKING CHANGES diff --git a/packages/util/package.json b/packages/util/package.json index d0f19d333f9..f90618501aa 100644 --- a/packages/util/package.json +++ b/packages/util/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-sdk/util", - "version": "0.14.0", + "version": "0.14.1", "description": "General, not cardano-specific utils", "engines": { "node": ">=16.20.1" diff --git a/packages/wallet/CHANGELOG.md b/packages/wallet/CHANGELOG.md index 8104a5dfeff..503c4f2e96e 100644 --- a/packages/wallet/CHANGELOG.md +++ b/packages/wallet/CHANGELOG.md @@ -3,6 +3,40 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.22.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/wallet@0.21.2...@cardano-sdk/wallet@0.22.0) (2023-09-20) + +### ⚠ BREAKING CHANGES + +* delegation distribution portfolio is now persisted on chain and taken into account during change distribution +* remove the CML serialization code from core package +* remove AssetInfo.history and AssetInfo.mintOrBurnCount +* renamed field handle to handleResolutions +* incompatible with previous revisions of cardano-services +- rename utxo and transactions PouchDB stores +- update type of Tx.witness.redeemers +- update type of Tx.witness.datums +- update type of TxOut.datum +- remove Cardano.Datum type + +fix(cardano-services): correct chain history openApi endpoints path url to match version + +### Features + +* add getExtensions() to CIP-30 wallet API ([944e0ce](https://github.com/input-output-hk/cardano-js-sdk/commit/944e0cea55bcd8c91e1888e708e717adc7b1ea4b)) +* add support for signing data with a DRepID in CIP-95 API ([3057cce](https://github.com/input-output-hk/cardano-js-sdk/commit/3057cce6ac1585d6ae2a62a89d0417e5fb2416f4)) +* delegation distribution portfolio is now persisted on chain and taken into account during change distribution ([7573938](https://github.com/input-output-hk/cardano-js-sdk/commit/75739385ea422a0621ded87f2b72c5878e3fcf81)) +* remove the CML serialization code from core package ([62f4252](https://github.com/input-output-hk/cardano-js-sdk/commit/62f4252b094938db05b81c928c03c1eecec2be55)) +* update core types with deserialized PlutusData ([d8cc93b](https://github.com/input-output-hk/cardano-js-sdk/commit/d8cc93b520177c98224502aad39109a0cb524f3c)) + +### Bug Fixes + +* **wallet:** do not track reference NFTs as handles ([3b61c93](https://github.com/input-output-hk/cardano-js-sdk/commit/3b61c931fee35aa33c1bbb424fa4b0b6ac0f6009)) + +### Code Refactoring + +* remove AssetInfo.history and AssetInfo.mintOrBurnCount ([4c0a7ee](https://github.com/input-output-hk/cardano-js-sdk/commit/4c0a7ee77d9ffcf5583fc922597475c4025be17b)) +* renamed field handle to handleResolutions ([8b3296e](https://github.com/input-output-hk/cardano-js-sdk/commit/8b3296e19b27815f3a8487479a691483696cc898)) + ## [0.21.2](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/wallet@0.21.1...@cardano-sdk/wallet@0.21.2) (2023-09-12) ### Features diff --git a/packages/wallet/package.json b/packages/wallet/package.json index fb171c440f5..2d0aa5d5326 100644 --- a/packages/wallet/package.json +++ b/packages/wallet/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-sdk/wallet", - "version": "0.21.2", + "version": "0.22.0", "description": "Wallet modules", "engines": { "node": ">=16.20.1" diff --git a/packages/web-extension/CHANGELOG.md b/packages/web-extension/CHANGELOG.md index 352a3ef1932..adae6e4f657 100644 --- a/packages/web-extension/CHANGELOG.md +++ b/packages/web-extension/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.15.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/web-extension@0.14.7...@cardano-sdk/web-extension@0.15.0) (2023-09-20) + +### ⚠ BREAKING CHANGES + +* delegation distribution portfolio is now persisted on chain and taken into account during change distribution + +### Features + +* delegation distribution portfolio is now persisted on chain and taken into account during change distribution ([7573938](https://github.com/input-output-hk/cardano-js-sdk/commit/75739385ea422a0621ded87f2b72c5878e3fcf81)) + ## [0.14.7](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/web-extension@0.14.6...@cardano-sdk/web-extension@0.14.7) (2023-09-12) ### Features diff --git a/packages/web-extension/package.json b/packages/web-extension/package.json index 0e95b5c4f67..24181c988a2 100644 --- a/packages/web-extension/package.json +++ b/packages/web-extension/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-sdk/web-extension", - "version": "0.14.7", + "version": "0.15.0", "description": "Web extension wallet utilities", "engines": { "node": ">=16.20.1"