Skip to content

Commit

Permalink
v0.20.20
Browse files Browse the repository at this point in the history
  • Loading branch information
tilacog committed Aug 21, 2023
1 parent ad997ce commit 2616d28
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 13 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "0.20.19"
"version": "0.20.20"
}
11 changes: 9 additions & 2 deletions packages/indexer-agent/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.20.20] - 2023-08-21
### Fixed
- Properly skip reconciling allocations on a network in MANUAL mode
- Missing string interpolation in migration file
- Indexer registration was running for already registered indexers

## [0.20.19] - 2023-08-18
### Fixed
- Contract interface changes involving Exponential Rebates
Expand All @@ -20,7 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.20.18] - 2023-08-11
### Added
- A new migration to add the
- A new migration to add the
- Actions
- IndexingRules
- POIDisputes
Expand Down Expand Up @@ -469,7 +475,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Update @graphprotocol/common-ts to 0.2.2

[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.20.19...HEAD
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.20.20...HEAD
[0.20.20]: https://github.com/graphprotocol/indexer/compare/v0.20.19...v0.20.20
[0.20.19]: https://github.com/graphprotocol/indexer/compare/v0.20.18...v0.20.19
[0.20.18]: https://github.com/graphprotocol/indexer/compare/v0.20.17...v0.20.18
[0.20.17]: https://github.com/graphprotocol/indexer/compare/v0.20.12...v0.20.17
Expand Down
4 changes: 2 additions & 2 deletions packages/indexer-agent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphprotocol/indexer-agent",
"version": "0.20.19",
"version": "0.20.20",
"description": "Indexer agent",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -30,7 +30,7 @@
},
"dependencies": {
"@graphprotocol/common-ts": "2.0.1",
"@graphprotocol/indexer-common": "^0.20.18",
"@graphprotocol/indexer-common": "^0.20.20",
"@thi.ng/heaps": "^1.3.1",
"@uniswap/sdk": "3.0.3",
"axios": "0.26.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/indexer-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphprotocol/indexer-cli",
"version": "0.20.19",
"version": "0.20.20",
"description": "Indexer CLI for The Graph Network",
"main": "./dist/cli.js",
"files": [
Expand All @@ -27,7 +27,7 @@
},
"dependencies": {
"@graphprotocol/common-ts": "2.0.1",
"@graphprotocol/indexer-common": "^0.20.18",
"@graphprotocol/indexer-common": "^0.20.20",
"@iarna/toml": "2.2.5",
"@thi.ng/iterators": "5.1.74",
"@urql/core": "2.4.4",
Expand Down
9 changes: 8 additions & 1 deletion packages/indexer-common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.20.20] - 2023-08-21
### Fixed
- Ensure some database operations run inside their transactions
- More helpful error message when parsing network specification files
- Protocol network missing when creating offchain rules and allocations via the GraphQL interface

## [0.20.18] - 2023-08-11
### Added
- The `Network` type now holds references to all network-specific components, such as the `NetworkMonitor` and `Contracts` classes.
Expand Down Expand Up @@ -264,7 +270,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Move indexing rule management here from `@graphprotocol/common-ts`

[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.20.18...HEAD
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.20.20...HEAD
[0.20.20]: https://github.com/graphprotocol/indexer/compare/v0.20.18...v0.20.20
[0.20.18]: https://github.com/graphprotocol/indexer/compare/v0.20.17...v0.20.18
[0.20.17]: https://github.com/graphprotocol/indexer/compare/v0.20.12...v0.20.17
[0.20.12]: https://github.com/graphprotocol/indexer/compare/v0.20.11...v0.20.12
Expand Down
2 changes: 1 addition & 1 deletion packages/indexer-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphprotocol/indexer-common",
"version": "0.20.19",
"version": "0.20.20",
"description": "Common library for Graph Protocol indexer components",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
11 changes: 9 additions & 2 deletions packages/indexer-service/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.20.20] - 2023-08-21
### Added
- Add TRACE logs to `AllocationReceiptManager._flushOutstanding` method

### Fixed
- Ensure some database operations run inside their transactions

## [0.20.19] - 2023-08-12
## Changed
### Changed
- Revert indexer-native to 0.20.11 (newer builds are broken)

## [0.20.18] - 2023-08-11
## Changed
### Changed
- Changes to support the multi-network changes from indexer-common

## [0.20.17] - 2023-06-19
Expand Down
4 changes: 2 additions & 2 deletions packages/indexer-service/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphprotocol/indexer-service",
"version": "0.20.19",
"version": "0.20.20",
"description": "Indexer service",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -33,7 +33,7 @@
"dependencies": {
"@google-cloud/profiler": "4.1.7",
"@graphprotocol/common-ts": "2.0.1",
"@graphprotocol/indexer-common": "^0.20.19",
"@graphprotocol/indexer-common": "^0.20.20",
"@graphprotocol/indexer-native": "0.20.11",
"@graphql-tools/load": "7.5.8",
"@graphql-tools/url-loader": "7.9.11",
Expand Down

0 comments on commit 2616d28

Please sign in to comment.