diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a38f18043..767555e6a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - "packages/sdk": "2.0.0-beta.16" + "packages/sdk": "2.0.0-beta.17" } diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md index 9fec22458..8cdddf1e0 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -2,6 +2,30 @@ All notable changes to this project will be documented in this file. +## [2.0.0-beta.17](https://github.com/iExecBlockchainComputing/dataprotector-sdk/compare/dataprotector-v2.0.0-beta.16...dataprotector-v2.0.0-beta.17) (2025-07-08) + + +### ⚠ BREAKING CHANGES + +* **sharing:** Remove result proxy address from sharing contract config and matched deal ([#438](https://github.com/iExecBlockchainComputing/dataprotector-sdk/issues/438)) + +### Added + +* **sdk:** add arweave uploadMode option ([#448](https://github.com/iExecBlockchainComputing/dataprotector-sdk/issues/448)) ([175231a](https://github.com/iExecBlockchainComputing/dataprotector-sdk/commit/175231ad41197b56f5788c4b3c610775442d694e)) +* **sdk:** add experimental networks ([#456](https://github.com/iExecBlockchainComputing/dataprotector-sdk/issues/456)) ([62da0dc](https://github.com/iExecBlockchainComputing/dataprotector-sdk/commit/62da0dc9d327299188c084381e2fceaace06b2eb)) +* **sdk:** support dynamic config for multiple chains ([d104c61](https://github.com/iExecBlockchainComputing/dataprotector-sdk/commit/d104c618e10fb354a3fae5f534b28f886264fc61)) +* **sharing:** Remove result proxy address from sharing contract config and matched deal ([#438](https://github.com/iExecBlockchainComputing/dataprotector-sdk/issues/438)) ([6582e96](https://github.com/iExecBlockchainComputing/dataprotector-sdk/commit/6582e96b11ec57265a38f78f2aff68e5c3de8cc0)) + + +### Changed + +* add check for nested empty JSON objects ([#457](https://github.com/iExecBlockchainComputing/dataprotector-sdk/issues/457)) ([5367bb3](https://github.com/iExecBlockchainComputing/dataprotector-sdk/commit/5367bb35877da4338fcdf7033a8a1e567177f0b6)) +* Fix Sharing contract constructor arguments order ([#433](https://github.com/iExecBlockchainComputing/dataprotector-sdk/issues/433)) ([230e035](https://github.com/iExecBlockchainComputing/dataprotector-sdk/commit/230e035c4b06bcd26b4bce21c72916fc9c12ecde)) +* remove useless await ([a0a424f](https://github.com/iExecBlockchainComputing/dataprotector-sdk/commit/a0a424ff58db26d35f950b9fe13bd5fc7af60abc)) +* remove useless await ([#381](https://github.com/iExecBlockchainComputing/dataprotector-sdk/issues/381)) ([6e7ab77](https://github.com/iExecBlockchainComputing/dataprotector-sdk/commit/6e7ab771ea550aacc766149c1ff74b81e39c6dc6)) +* scripts subgraph package ([#447](https://github.com/iExecBlockchainComputing/dataprotector-sdk/issues/447)) ([ceaddaa](https://github.com/iExecBlockchainComputing/dataprotector-sdk/commit/ceaddaa424064c0cae4c1f53506a16ad29097bf7)) +* standardize subgraphName for `dataprotector-v2` ([#460](https://github.com/iExecBlockchainComputing/dataprotector-sdk/issues/460)) ([54796d5](https://github.com/iExecBlockchainComputing/dataprotector-sdk/commit/54796d5de7f68a4a1b37e3273e4d5493c69ab719)) + ## [2.0.0-beta.16] (2025-06-16) ### Changed diff --git a/packages/sdk/package-lock.json b/packages/sdk/package-lock.json index 6a9063ccf..221e13374 100644 --- a/packages/sdk/package-lock.json +++ b/packages/sdk/package-lock.json @@ -1,12 +1,12 @@ { "name": "@iexec/dataprotector", - "version": "2.0.0-beta.16", + "version": "2.0.0-beta.17", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@iexec/dataprotector", - "version": "2.0.0-beta.16", + "version": "2.0.0-beta.17", "license": "Apache-2.0", "dependencies": { "@ethersproject/bytes": "^5.7.0", diff --git a/packages/sdk/package.json b/packages/sdk/package.json index b81dfd290..417d11ffd 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@iexec/dataprotector", - "version": "2.0.0-beta.16", + "version": "2.0.0-beta.17", "description": "This product enables users to confidentially store data–such as mail address, documents, personal information ...", "type": "module", "types": "dist/src/index.d.ts",