Skip to content

Commit 31d6baa

Browse files
committed
v0.20.21
1 parent 2bd307e commit 31d6baa

File tree

9 files changed

+38
-12
lines changed

9 files changed

+38
-12
lines changed

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.20.20"
7+
"version": "0.20.21"
88
}

packages/indexer-agent/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.20.21] - 2023-08-22
10+
### Fixed
11+
- Add missing fields when parsing network specification from CLI options
12+
13+
### Changed
14+
- Upgraded `common-ts` dependency to v2.0.3
15+
916
## [0.20.20] - 2023-08-21
1017
### Fixed
1118
- Properly skip reconciling allocations on a network in MANUAL mode
@@ -475,7 +482,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
475482
### Changed
476483
- Update @graphprotocol/common-ts to 0.2.2
477484

478-
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.20.20...HEAD
485+
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.20.21...HEAD
486+
[0.20.21]: https://github.com/graphprotocol/indexer/compare/v0.20.20...v0.20.21
479487
[0.20.20]: https://github.com/graphprotocol/indexer/compare/v0.20.19...v0.20.20
480488
[0.20.19]: https://github.com/graphprotocol/indexer/compare/v0.20.18...v0.20.19
481489
[0.20.18]: https://github.com/graphprotocol/indexer/compare/v0.20.17...v0.20.18

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.20.20",
3+
"version": "0.20.21",
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.3",
33-
"@graphprotocol/indexer-common": "^0.20.20",
33+
"@graphprotocol/indexer-common": "^0.20.21",
3434
"@thi.ng/heaps": "^1.3.1",
3535
"@uniswap/sdk": "3.0.3",
3636
"axios": "0.26.1",

packages/indexer-cli/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.20.21] - 2023-08-24
10+
### Changed
11+
- Upgraded `common-ts` dependency to v2.0.3
12+
913
## [0.20.18] - 2023-08-11
1014
### Added
1115
- Most CLI commands now require the protocol network to be identified using the option `--network`.
@@ -201,7 +205,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
201205
### Changed
202206
- Update @graphprotocol/common-ts to 0.2.2
203207

204-
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.20.18...HEAD
208+
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.20.21...HEAD
209+
[0.20.21]: https://github.com/graphprotocol/indexer/compare/v0.20.18...v0.20.21
205210
[0.20.18]: https://github.com/graphprotocol/indexer/compare/v0.20.12...v0.20.18
206211
[0.20.12]: https://github.com/graphprotocol/indexer/compare/v0.20.8...v0.20.12
207212
[0.20.8]: https://github.com/graphprotocol/indexer/compare/v0.20.6...v0.20.8

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.20.20",
3+
"version": "0.20.21",
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.3",
30-
"@graphprotocol/indexer-common": "^0.20.20",
30+
"@graphprotocol/indexer-common": "^0.20.21",
3131
"@iarna/toml": "2.2.5",
3232
"@thi.ng/iterators": "5.1.74",
3333
"@urql/core": "2.4.4",

packages/indexer-common/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.20.21] - 2023-08-24
10+
### Changed
11+
- Upgraded `common-ts` dependency to v2.0.3
12+
913
## [0.20.20] - 2023-08-21
1014
### Fixed
1115
- Ensure some database operations run inside their transactions
@@ -270,7 +274,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
270274
### Added
271275
- Move indexing rule management here from `@graphprotocol/common-ts`
272276

273-
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.20.20...HEAD
277+
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.20.21...HEAD
278+
[0.20.21]: https://github.com/graphprotocol/indexer/compare/v0.20.20...v0.20.21
274279
[0.20.20]: https://github.com/graphprotocol/indexer/compare/v0.20.18...v0.20.20
275280
[0.20.18]: https://github.com/graphprotocol/indexer/compare/v0.20.17...v0.20.18
276281
[0.20.17]: https://github.com/graphprotocol/indexer/compare/v0.20.12...v0.20.17

packages/indexer-common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphprotocol/indexer-common",
3-
"version": "0.20.20",
3+
"version": "0.20.21",
44
"description": "Common library for Graph Protocol indexer components",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

packages/indexer-service/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.20.21] - 2023-08-24
10+
### Changed
11+
- Upgraded `common-ts` dependency to v2.0.3
12+
913
## [0.20.20] - 2023-08-21
1014
### Added
1115
- Add TRACE logs to `AllocationReceiptManager._flushOutstanding` method
@@ -301,7 +305,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
301305
### Changed
302306
- Update @graphprotocol/common-ts to 0.2.2
303307

304-
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.20.17...HEAD
308+
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.20.21...HEAD
309+
[0.20.21]: https://github.com/graphprotocol/indexer/compare/v0.20.20...v0.20.21
310+
[0.20.20]: https://github.com/graphprotocol/indexer/compare/v0.20.19...v0.20.20
311+
[0.20.19]: https://github.com/graphprotocol/indexer/compare/v0.20.18...v0.20.19
312+
[0.20.18]: https://github.com/graphprotocol/indexer/compare/v0.20.17...v0.20.18
305313
[0.20.17]: https://github.com/graphprotocol/indexer/compare/v0.20.11...v0.20.17
306314
[0.20.11]: https://github.com/graphprotocol/indexer/compare/v0.20.9...v0.20.11
307315
[0.20.9]: https://github.com/graphprotocol/indexer/compare/v0.20.6...v0.20.9

packages/indexer-service/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-service",
3-
"version": "0.20.20",
3+
"version": "0.20.21",
44
"description": "Indexer service",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -33,7 +33,7 @@
3333
"dependencies": {
3434
"@google-cloud/profiler": "4.1.7",
3535
"@graphprotocol/common-ts": "2.0.3",
36-
"@graphprotocol/indexer-common": "^0.20.20",
36+
"@graphprotocol/indexer-common": "^0.20.21",
3737
"@graphprotocol/indexer-native": "0.20.11",
3838
"@graphql-tools/load": "7.5.8",
3939
"@graphql-tools/url-loader": "7.9.11",

0 commit comments

Comments
 (0)