diff --git a/docs/networks/arbitrum-sepolia.md b/docs/networks/arbitrum-sepolia.md index bd4b7aba1..b1fe7ab40 100644 --- a/docs/networks/arbitrum-sepolia.md +++ b/docs/networks/arbitrum-sepolia.md @@ -7,8 +7,8 @@ The Graph Network's testnet is on Arbitrum Sepolia (eip155:421614). Sepolia netw | Component | Release | | ------------------ | ------------------------------------------------------------------------------------ | | contracts | [5.3.3](https://github.com/graphprotocol/contracts/releases/tag/v5.3.3) | -| indexer-agent | [0.21.11](https://github.com/graphprotocol/indexer/releases/tag/v0.21.11) | -| indexer-cli | [0.21.11](https://github.com/graphprotocol/indexer/releases/tag/v0.21.11) | +| indexer-agent | [0.22.0](https://github.com/graphprotocol/indexer/releases/tag/v0.22.0) | +| indexer-cli | [0.22.0](https://github.com/graphprotocol/indexer/releases/tag/v0.22.0) | | indexer-service-rs | [1.0.0](https://github.com/graphprotocol/indexer-rs/releases/tag/v1.0.0) | | tap-agent | [1.0.0](https://github.com/graphprotocol/indexer-rs/releases/tag/v1.0.0) | | graph-node | [0.35.1](https://github.com/graphprotocol/graph-node/releases/tag/v0.35.1) | diff --git a/lerna.json b/lerna.json index db9f5e33a..e6070d907 100644 --- a/lerna.json +++ b/lerna.json @@ -4,5 +4,5 @@ ], "npmClient": "yarn", "useWorkspaces": true, - "version": "0.21.11" + "version": "0.22.0" } diff --git a/packages/indexer-agent/package.json b/packages/indexer-agent/package.json index c3c454757..2aca218cb 100644 --- a/packages/indexer-agent/package.json +++ b/packages/indexer-agent/package.json @@ -1,6 +1,6 @@ { "name": "@graphprotocol/indexer-agent", - "version": "0.21.11", + "version": "0.22.0", "description": "Indexer agent", "main": "./dist/index.js", "types": "./dist/index.d.ts", @@ -30,7 +30,7 @@ }, "dependencies": { "@graphprotocol/common-ts": "2.0.11", - "@graphprotocol/indexer-common": "^0.21.11", + "@graphprotocol/indexer-common": "^0.22.0", "@thi.ng/heaps": "^1.3.1", "axios": "0.26.1", "bs58": "5.0.0", diff --git a/packages/indexer-agent/src/agent.ts b/packages/indexer-agent/src/agent.ts index 6af5af00f..82e14c57e 100644 --- a/packages/indexer-agent/src/agent.ts +++ b/packages/indexer-agent/src/agent.ts @@ -545,6 +545,7 @@ export class Agent { networkDeploymentAllocationDecisions, }).tryMap( async ({ indexingRules, networkDeploymentAllocationDecisions }) => { + logger.trace('Resolving target deployments') const targetDeploymentIDs: Set = consolidateAllocationDecisions(networkDeploymentAllocationDecisions) diff --git a/packages/indexer-cli/package.json b/packages/indexer-cli/package.json index 12f64f256..6f90520d0 100644 --- a/packages/indexer-cli/package.json +++ b/packages/indexer-cli/package.json @@ -1,6 +1,6 @@ { "name": "@graphprotocol/indexer-cli", - "version": "0.21.11", + "version": "0.22.0", "description": "Indexer CLI for The Graph Network", "main": "./dist/cli.js", "files": [ @@ -27,7 +27,7 @@ }, "dependencies": { "@graphprotocol/common-ts": "2.0.11", - "@graphprotocol/indexer-common": "^0.21.11", + "@graphprotocol/indexer-common": "^0.22.0", "@iarna/toml": "2.2.5", "@thi.ng/iterators": "5.1.74", "@urql/core": "3.1.0", diff --git a/packages/indexer-common/package.json b/packages/indexer-common/package.json index bd4b39556..76cd5b00c 100644 --- a/packages/indexer-common/package.json +++ b/packages/indexer-common/package.json @@ -1,6 +1,6 @@ { "name": "@graphprotocol/indexer-common", - "version": "0.21.11", + "version": "0.22.0", "description": "Common library for Graph Protocol indexer components", "main": "./dist/index.js", "types": "./dist/index.d.ts",