diff --git a/.changeset/proud-pigs-sniff.md b/.changeset/proud-pigs-sniff.md deleted file mode 100644 index f152585c7..000000000 --- a/.changeset/proud-pigs-sniff.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ponder/core": patch ---- - -Fixed a bug where the `codegen` command did not generate `generated/schema.graphql`. diff --git a/.changeset/violet-guests-obey.md b/.changeset/violet-guests-obey.md deleted file mode 100644 index 367044c3f..000000000 --- a/.changeset/violet-guests-obey.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ponder/core": patch ---- - -Added `totalCount` field to the plural GraphQL connection type, which returns the total number of records in the database that match the specified `where` clause. [Read more](https://ponder.sh/docs/query/graphql#total-count). diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 606c2bafc..ec63f8a23 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,13 @@ # @ponder/core +## 0.7.7 + +### Patch Changes + +- [#1257](https://github.com/ponder-sh/ponder/pull/1257) [`dc768bdd06077915e7b37bf84bc0a0d23fc1c8b8`](https://github.com/ponder-sh/ponder/commit/dc768bdd06077915e7b37bf84bc0a0d23fc1c8b8) Thanks [@0xOlias](https://github.com/0xOlias)! - Fixed a bug where the `codegen` command did not generate `generated/schema.graphql`. + +- [#1259](https://github.com/ponder-sh/ponder/pull/1259) [`1e5119ddeb9494f9c420ee2e11bf55bbdfc387ee`](https://github.com/ponder-sh/ponder/commit/1e5119ddeb9494f9c420ee2e11bf55bbdfc387ee) Thanks [@0xOlias](https://github.com/0xOlias)! - Added `totalCount` field to the plural GraphQL connection type, which returns the total number of records in the database that match the specified `where` clause. [Read more](https://ponder.sh/docs/query/graphql#total-count). + ## 0.7.6 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index efe1bc846..6cf2f00a4 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@ponder/core", - "version": "0.7.6", + "version": "0.7.7", "description": "An open-source framework for crypto application backends", "license": "MIT", "type": "module", diff --git a/packages/create-ponder/CHANGELOG.md b/packages/create-ponder/CHANGELOG.md index 1cff5a73d..3a2502012 100644 --- a/packages/create-ponder/CHANGELOG.md +++ b/packages/create-ponder/CHANGELOG.md @@ -1,5 +1,7 @@ # create-ponder +## 0.7.7 + ## 0.7.6 ## 0.7.5 diff --git a/packages/create-ponder/package.json b/packages/create-ponder/package.json index 37017d031..260cf2780 100644 --- a/packages/create-ponder/package.json +++ b/packages/create-ponder/package.json @@ -1,6 +1,6 @@ { "name": "create-ponder", - "version": "0.7.6", + "version": "0.7.7", "type": "module", "description": "A CLI tool to create Ponder apps", "license": "MIT", diff --git a/packages/eslint-config-ponder/CHANGELOG.md b/packages/eslint-config-ponder/CHANGELOG.md index 579ea1a02..115ce1f09 100644 --- a/packages/eslint-config-ponder/CHANGELOG.md +++ b/packages/eslint-config-ponder/CHANGELOG.md @@ -1,5 +1,7 @@ # eslint-config-ponder +## 0.7.7 + ## 0.7.6 ## 0.7.5 diff --git a/packages/eslint-config-ponder/package.json b/packages/eslint-config-ponder/package.json index da4e60a46..470db6676 100644 --- a/packages/eslint-config-ponder/package.json +++ b/packages/eslint-config-ponder/package.json @@ -1,6 +1,6 @@ { "name": "eslint-config-ponder", - "version": "0.7.6", + "version": "0.7.7", "description": "ESLint config for Ponder apps", "license": "MIT", "main": "./index.js",