From 425d77f6cec16f9234d9a0dda09d90c4592001dd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Dec 2024 20:06:11 +0000 Subject: [PATCH] chore(release): update monorepo packages versions (#1780) Hide IPFS flag for subgraph datasource feature Feature is not ready yet do hide from command help. Co-authored-by: github-actions[bot] --- .changeset/quick-bats-teach.md | 6 ------ .changeset/wise-crews-study.md | 5 ----- packages/cli/CHANGELOG.md | 14 ++++++++++++++ packages/cli/package.json | 2 +- packages/cli/src/commands/codegen.ts | 1 + packages/cli/src/commands/init.ts | 1 + packages/ts/CHANGELOG.md | 9 +++++++++ packages/ts/package.json | 2 +- 8 files changed, 27 insertions(+), 13 deletions(-) delete mode 100644 .changeset/quick-bats-teach.md delete mode 100644 .changeset/wise-crews-study.md diff --git a/.changeset/quick-bats-teach.md b/.changeset/quick-bats-teach.md deleted file mode 100644 index c2cc4486..00000000 --- a/.changeset/quick-bats-teach.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@graphprotocol/graph-cli': minor -'@graphprotocol/graph-ts': minor ---- - -Add support for subgraph datasource and associated types. diff --git a/.changeset/wise-crews-study.md b/.changeset/wise-crews-study.md deleted file mode 100644 index add37fdb..00000000 --- a/.changeset/wise-crews-study.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@graphprotocol/graph-cli": minor ---- - -added rpc and api urls for botanix-testnet diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index e156ca81..40d16ff4 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,19 @@ # @graphprotocol/graph-cli +## 0.91.0 + +### Minor Changes + +- [#1754](https://github.com/graphprotocol/graph-tooling/pull/1754) + [`2050bf6`](https://github.com/graphprotocol/graph-tooling/commit/2050bf6259c19bd86a7446410c7e124dfaddf4cd) + Thanks [@incrypto32](https://github.com/incrypto32)! - Add support for subgraph datasource and + associated types. + +- [#1781](https://github.com/graphprotocol/graph-tooling/pull/1781) + [`e8218ee`](https://github.com/graphprotocol/graph-tooling/commit/e8218eedec4292a95957efc5cadcbcf5280c0375) + Thanks [@alinobrasil](https://github.com/alinobrasil)! - added rpc and api urls for + botanix-testnet + ## 0.90.1 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 7999e3e9..3fe3940f 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@graphprotocol/graph-cli", - "version": "0.90.1", + "version": "0.91.0", "description": "CLI for building for and deploying to The Graph", "license": "(Apache-2.0 OR MIT)", "engines": { diff --git a/packages/cli/src/commands/codegen.ts b/packages/cli/src/commands/codegen.ts index e53f3c8f..bf6065d9 100644 --- a/packages/cli/src/commands/codegen.ts +++ b/packages/cli/src/commands/codegen.ts @@ -43,6 +43,7 @@ export default class CodegenCommand extends Command { summary: 'IPFS node to use for fetching subgraph data.', char: 'i', default: DEFAULT_IPFS_URL, + hidden: true }), 'uncrashable-config': Flags.file({ summary: 'Directory for uncrashable config.', diff --git a/packages/cli/src/commands/init.ts b/packages/cli/src/commands/init.ts index e7f8949c..6138252d 100644 --- a/packages/cli/src/commands/init.ts +++ b/packages/cli/src/commands/init.ts @@ -159,6 +159,7 @@ export default class InitCommand extends Command { summary: 'IPFS node to use for fetching subgraph data.', char: 'i', default: DEFAULT_IPFS_URL, + hidden: true }), }; diff --git a/packages/ts/CHANGELOG.md b/packages/ts/CHANGELOG.md index 1b11f2a6..60cac0c8 100644 --- a/packages/ts/CHANGELOG.md +++ b/packages/ts/CHANGELOG.md @@ -1,5 +1,14 @@ # @graphprotocol/graph-ts +## 0.36.0 + +### Minor Changes + +- [#1754](https://github.com/graphprotocol/graph-tooling/pull/1754) + [`2050bf6`](https://github.com/graphprotocol/graph-tooling/commit/2050bf6259c19bd86a7446410c7e124dfaddf4cd) + Thanks [@incrypto32](https://github.com/incrypto32)! - Add support for subgraph datasource and + associated types. + ## 0.35.1 ### Patch Changes diff --git a/packages/ts/package.json b/packages/ts/package.json index 090c545b..cc5b5a7b 100644 --- a/packages/ts/package.json +++ b/packages/ts/package.json @@ -1,6 +1,6 @@ { "name": "@graphprotocol/graph-ts", - "version": "0.35.1", + "version": "0.36.0", "description": "TypeScript/AssemblyScript library for writing subgraph mappings for The Graph", "main": "index.ts", "module": "index.ts",