@graphprotocol/graph-cli 0.53.0-alpha-20230721161547-13ba32e → 0.53.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # @graphprotocol/graph-cli
2
2
 
3
- ## 0.53.0-alpha-20230721161547-13ba32e
3
+ ## 0.53.0
4
4
 
5
5
  ### Minor Changes
6
6
 
7
7
  - [#1406](https://github.com/graphprotocol/graph-tooling/pull/1406)
8
- [`34030b5`](https://github.com/graphprotocol/graph-tooling/commit/34030b5808f0f3996d8ea2133eedf19a0b3d9548)
8
+ [`faefa94`](https://github.com/graphprotocol/graph-tooling/commit/faefa94b6d4ff48de444b3ed33cc3d4b01d2eccc)
9
9
  Thanks [@incrypto32](https://github.com/incrypto32)! - Fix derived loaders not working failing for
10
10
  entities with Bytes as ID's
11
11
 
@@ -245,7 +245,7 @@ class SchemaCodeGenerator {
245
245
  const gqlType = fieldDef.type;
246
246
  const returnType = this._returnTypeForDervied(gqlType);
247
247
  const obj = this.schema.ast.definitions.find(def => {
248
- if (def.kind == 'ObjectTypeDefinition') {
248
+ if (def.kind === 'ObjectTypeDefinition') {
249
249
  const defobj = def;
250
250
  return defobj.name.value == this._baseType(gqlType);
251
251
  }
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.53.0-alpha-20230721161547-13ba32e",
2
+ "version": "0.53.0",
3
3
  "commands": {
4
4
  "add": {
5
5
  "id": "add",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphprotocol/graph-cli",
3
- "version": "0.53.0-alpha-20230721161547-13ba32e",
3
+ "version": "0.53.0",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {