Skip to content

Commit 41e6c2c

Browse files
committed
all: bump version to 0.23.4, fix tsconfig ESM
1 parent 498fb6d commit 41e6c2c

File tree

8 files changed

+43
-11
lines changed

8 files changed

+43
-11
lines changed

docs/networks/arbitrum-sepolia.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ The Graph Network's testnet is on Arbitrum Sepolia (eip155:421614). Sepolia netw
77
| Component | Release |
88
| ------------------ | ------------------------------------------------------------------------------------ |
99
| contracts | [5.3.3](https://github.com/graphprotocol/contracts/releases/tag/v5.3.3) |
10-
| indexer-agent | [0.22.0](https://github.com/graphprotocol/indexer/releases/tag/v0.22.0) |
11-
| indexer-cli | [0.22.0](https://github.com/graphprotocol/indexer/releases/tag/v0.22.0) |
10+
| indexer-agent | [0.23.4](https://github.com/graphprotocol/indexer/releases/tag/v0.23.4) |
11+
| indexer-cli | [0.23.4](https://github.com/graphprotocol/indexer/releases/tag/v0.23.4) |
1212
| indexer-service-rs | [1.0.0](https://github.com/graphprotocol/indexer-rs/releases/tag/v1.0.0) |
1313
| tap-agent | [1.0.0](https://github.com/graphprotocol/indexer-rs/releases/tag/v1.0.0) |
1414
| graph-node | [0.35.1](https://github.com/graphprotocol/graph-node/releases/tag/v0.35.1) |

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
],
55
"npmClient": "yarn",
66
"useWorkspaces": true,
7-
"version": "0.22.0"
7+
"version": "0.23.4"
88
}

packages/indexer-agent/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphprotocol/indexer-agent",
3-
"version": "0.22.0",
3+
"version": "0.23.4",
44
"description": "Indexer agent",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -30,7 +30,7 @@
3030
},
3131
"dependencies": {
3232
"@graphprotocol/common-ts": "2.0.11",
33-
"@graphprotocol/indexer-common": "^0.22.0",
33+
"@graphprotocol/indexer-common": "^0.23.4",
3434
"@thi.ng/heaps": "^1.3.1",
3535
"axios": "0.26.1",
3636
"bs58": "5.0.0",

packages/indexer-cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphprotocol/indexer-cli",
3-
"version": "0.22.0",
3+
"version": "0.23.4",
44
"description": "Indexer CLI for The Graph Network",
55
"main": "./dist/cli.js",
66
"files": [
@@ -27,7 +27,7 @@
2727
},
2828
"dependencies": {
2929
"@graphprotocol/common-ts": "2.0.11",
30-
"@graphprotocol/indexer-common": "^0.22.0",
30+
"@graphprotocol/indexer-common": "^0.23.4",
3131
"@iarna/toml": "2.2.5",
3232
"@thi.ng/iterators": "5.1.74",
3333
"@urql/core": "3.1.0",

packages/indexer-common/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphprotocol/indexer-common",
3-
"version": "0.22.0",
3+
"version": "0.23.4",
44
"description": "Common library for Graph Protocol indexer components",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -29,6 +29,7 @@
2929
"@types/lodash.clonedeep": "^4.5.7",
3030
"@types/lodash.intersection": "^4.4.7",
3131
"@types/lodash.xor": "^4.5.7",
32+
"@types/sequelize": "4.28.20",
3233
"@urql/core": "3.1.0",
3334
"@urql/exchange-execute": "2.1.0",
3435
"axios": "1.6.2",

packages/indexer-common/src/indexer-management/resolvers/indexing-rules.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
IndexingRuleCreationAttributes,
88
} from '../models'
99
import { IndexerManagementDefaults, IndexerManagementResolverContext } from '../client'
10-
import { Transaction } from 'sequelize/types'
10+
import { Transaction } from 'sequelize'
1111
import { fetchIndexingRules } from '../rules'
1212
import { processIdentifier } from '../../'
1313
import { validateNetworkIdentifier } from '../../parsers'

packages/indexer-common/tsconfig.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
"rootDir": "src",
55
"outDir": "dist",
66
"target": "es2020",
7-
"module": "commonjs",
7+
"module": "nodenext",
8+
"moduleResolution": "nodenext",
9+
"allowSyntheticDefaultImports": true,
810
"declaration": true,
911
"sourceMap": true,
1012
"esModuleInterop": true,
@@ -20,7 +22,9 @@
2022
],
2123
"resolveJsonModule": true
2224
},
23-
"include": ["src/**/*.ts"],
25+
"include": [
26+
"src/**/*.ts"
27+
],
2428
"exclude": [],
2529
"references": []
2630
}

yarn.lock

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2508,6 +2508,11 @@
25082508
dependencies:
25092509
"@babel/types" "^7.20.7"
25102510

2511+
"@types/bluebird@*":
2512+
version "3.5.42"
2513+
resolved "https://registry.yarnpkg.com/@types/bluebird/-/bluebird-3.5.42.tgz#7ec05f1ce9986d920313c1377a5662b1b563d366"
2514+
integrity sha512-Jhy+MWRlro6UjVi578V/4ZGNfeCOcNCp0YaFNIUGFKlImowqwb1O/22wDVk3FDGMLqxdpOV3qQHD5fPEH4hK6A==
2515+
25112516
"@types/body-parser@*":
25122517
version "1.19.5"
25132518
resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.5.tgz#04ce9a3b677dc8bd681a17da1ab9835dc9d3ede4"
@@ -2537,6 +2542,13 @@
25372542
dependencies:
25382543
"@types/node" "*"
25392544

2545+
"@types/continuation-local-storage@*":
2546+
version "3.2.7"
2547+
resolved "https://registry.yarnpkg.com/@types/continuation-local-storage/-/continuation-local-storage-3.2.7.tgz#363bbeb1ef35ee2298cc371e34c74eb1b0a0b52c"
2548+
integrity sha512-Q7dPOymVpRG5Zpz90/o26+OAqOG2Sw+FED7uQmTrJNCF/JAPTylclZofMxZKd6W7g1BDPmT9/C/jX0ZcSNTQwQ==
2549+
dependencies:
2550+
"@types/node" "*"
2551+
25402552
25412553
version "2.8.14"
25422554
resolved "https://registry.yarnpkg.com/@types/cors/-/cors-2.8.14.tgz#94eeb1c95eda6a8ab54870a3bf88854512f43a92"
@@ -2786,6 +2798,16 @@
27862798
"@types/mime" "^1"
27872799
"@types/node" "*"
27882800

2801+
2802+
version "4.28.20"
2803+
resolved "https://registry.yarnpkg.com/@types/sequelize/-/sequelize-4.28.20.tgz#b7313a54355f1d812cbffa0df6117a97835dbe01"
2804+
integrity sha512-XaGOKRhdizC87hDgQ0u3btxzbejlF+t6Hhvkek1HyphqCI4y7zVBIVAGmuc4cWJqGpxusZ1RiBToHHnNK/Edlw==
2805+
dependencies:
2806+
"@types/bluebird" "*"
2807+
"@types/continuation-local-storage" "*"
2808+
"@types/lodash" "*"
2809+
"@types/validator" "*"
2810+
27892811
"@types/serve-static@*":
27902812
version "1.15.7"
27912813
resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.7.tgz#22174bbd74fb97fe303109738e9b5c2f3064f714"
@@ -2800,6 +2822,11 @@
28002822
resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.3.tgz#6209321eb2c1712a7e7466422b8cb1fc0d9dd5d8"
28012823
integrity sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==
28022824

2825+
"@types/validator@*":
2826+
version "13.12.3"
2827+
resolved "https://registry.yarnpkg.com/@types/validator/-/validator-13.12.3.tgz#af160ddaf1e43ab66fe69473a90b14bb9f435d29"
2828+
integrity sha512-2ipwZ2NydGQJImne+FhNdhgRM37e9lCev99KnqkbFHd94Xn/mErARWI1RSLem1QA19ch5kOhzIZd7e8CA2FI8g==
2829+
28032830
"@types/validator@^13.7.17":
28042831
version "13.11.1"
28052832
resolved "https://registry.npmjs.org/@types/validator/-/validator-13.11.1.tgz"

0 commit comments

Comments
 (0)