diff --git a/.changeset/fresh-stingrays-mate.md b/.changeset/fresh-stingrays-mate.md deleted file mode 100644 index 525620158..000000000 --- a/.changeset/fresh-stingrays-mate.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ponder/core": patch ---- - -Added support for passing arguments to derived fields. This means you can paginate entities returned in a derived field. Also added support for time-travel queries via the `timestamp` argument to all GraphQL root query types. NOTE: There is currently a limitation where `timestamp` arguments are not automatically passed to derived fields. If you are using time-travel queries on entities with derived fields, be sure the pass the same `timestamp` as an argument to the derived field. This will be fixed in a future release. diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 6f133ab5d..1bf8b1e14 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,11 @@ # @ponder/core +## 0.0.74 + +### Patch Changes + +- [#234](https://github.com/0xOlias/ponder/pull/234) [`0e90313`](https://github.com/0xOlias/ponder/commit/0e9031337b07a7b79503f472684be6fb34c426f7) Thanks [@r0ohafza](https://github.com/r0ohafza)! - Added support for passing arguments to derived fields. This means you can paginate entities returned in a derived field. Also added support for time-travel queries via the `timestamp` argument to all GraphQL root query types. NOTE: There is currently a limitation where `timestamp` arguments are not automatically passed to derived fields. If you are using time-travel queries on entities with derived fields, be sure the pass the same `timestamp` as an argument to the derived field. This will be fixed in a future release. + ## 0.0.73 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 2f251c42f..962c10174 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@ponder/core", - "version": "0.0.73", + "version": "0.0.74", "description": "API builder for blockchain apps", "license": "MIT", "author": "olias.eth", diff --git a/packages/create-ponder/CHANGELOG.md b/packages/create-ponder/CHANGELOG.md index a67bfa5ea..b49408835 100644 --- a/packages/create-ponder/CHANGELOG.md +++ b/packages/create-ponder/CHANGELOG.md @@ -1,5 +1,7 @@ # create-ponder +## 0.0.74 + ## 0.0.73 ## 0.0.72 diff --git a/packages/create-ponder/package.json b/packages/create-ponder/package.json index dd045ee64..1b6e02216 100644 --- a/packages/create-ponder/package.json +++ b/packages/create-ponder/package.json @@ -1,6 +1,6 @@ { "name": "create-ponder", - "version": "0.0.73", + "version": "0.0.74", "description": "Tool to bootstrap a Ponder project", "license": "MIT", "author": "olias.eth",