diff --git a/.changeset/itchy-peaches-juggle.md b/.changeset/itchy-peaches-juggle.md deleted file mode 100644 index 7976e1b..0000000 --- a/.changeset/itchy-peaches-juggle.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@near-lake/primitives": minor ---- - -Added: -- `Block.functionCalls` to get an array of FunctionCallView in this block, with different filters -- `Block.functionCallsToReceiver` to get an array of FunctionCallView to a specific receiver, optionally specifying method name -- `FunctionCallView` type that provides complete information about the function call, including parsed arguments and events - -Changed: -- `Event` class has been changed to inline RawEvent fields. diff --git a/packages/near-lake-framework/CHANGELOG.md b/packages/near-lake-framework/CHANGELOG.md index 9550851..2688059 100644 --- a/packages/near-lake-framework/CHANGELOG.md +++ b/packages/near-lake-framework/CHANGELOG.md @@ -1,5 +1,12 @@ # @near-lake/framework +## 0.1.4 + +### Patch Changes + +- Updated dependencies [[`7971e995b52dfbc764dba607e9fd40dea5ca0ef0`](https://github.com/near/near-lake-framework-js/commit/7971e995b52dfbc764dba607e9fd40dea5ca0ef0)]: + - @near-lake/primitives@0.5.0 + ## 0.1.3 ### Patch Changes diff --git a/packages/near-lake-framework/package.json b/packages/near-lake-framework/package.json index 2a696cb..02ce942 100644 --- a/packages/near-lake-framework/package.json +++ b/packages/near-lake-framework/package.json @@ -1,6 +1,6 @@ { "name": "@near-lake/framework", - "version": "0.1.3", + "version": "0.1.4", "description": "JS Library to connect to the NEAR Lake S3 and stream the data", "author": "NEAR Inc ", "keywords": [ @@ -27,6 +27,6 @@ }, "dependencies": { "@aws-sdk/client-s3": "^3.32.0", - "@near-lake/primitives": "^0.4.0" + "@near-lake/primitives": "^0.5.0" } } diff --git a/packages/near-lake-primitives/CHANGELOG.md b/packages/near-lake-primitives/CHANGELOG.md index 0a3f63a..5c33b05 100644 --- a/packages/near-lake-primitives/CHANGELOG.md +++ b/packages/near-lake-primitives/CHANGELOG.md @@ -1,5 +1,19 @@ # @near-lake/primitives +## 0.5.0 + +### Minor Changes + +- [#61](https://github.com/near/near-lake-framework-js/pull/61) [`7971e995b52dfbc764dba607e9fd40dea5ca0ef0`](https://github.com/near/near-lake-framework-js/commit/7971e995b52dfbc764dba607e9fd40dea5ca0ef0) Thanks [@pkudinov](https://github.com/pkudinov)! - Added: + + - `Block.functionCalls` to get an array of FunctionCallView in this block, with different filters + - `Block.functionCallsToReceiver` to get an array of FunctionCallView to a specific receiver, optionally specifying method name + - `FunctionCallView` type that provides complete information about the function call, including parsed arguments and events + + Changed: + + - `Event` class has been changed to inline RawEvent fields. + ## 0.4.0 ### Minor Changes diff --git a/packages/near-lake-primitives/package.json b/packages/near-lake-primitives/package.json index cddce5b..49fbfa9 100644 --- a/packages/near-lake-primitives/package.json +++ b/packages/near-lake-primitives/package.json @@ -1,6 +1,6 @@ { "name": "@near-lake/primitives", - "version": "0.4.0", + "version": "0.5.0", "keywords": [ "lake-primitives", "near-indexer"