File tree Expand file tree Collapse file tree 8 files changed +34
-13
lines changed Expand file tree Collapse file tree 8 files changed +34
-13
lines changed Original file line number Diff line number Diff line change 44 ],
55 "npmClient" : " yarn" ,
66 "useWorkspaces" : true ,
7- "version" : " 0.20.19 "
7+ "version" : " 0.20.20 "
88}
Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
77## [ Unreleased]
88
9+ ## [ 0.20.20] - 2023-08-21
10+ ### Fixed
11+ - Properly skip reconciling allocations on a network in MANUAL mode
12+ - Missing string interpolation in migration file
13+ - Indexer registration was running for already registered indexers
14+
915## [ 0.20.19] - 2023-08-18
1016### Fixed
1117- Contract interface changes involving Exponential Rebates
@@ -20,7 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2026
2127## [ 0.20.18] - 2023-08-11
2228### Added
23- - A new migration to add the
29+ - A new migration to add the
2430 - Actions
2531 - IndexingRules
2632 - POIDisputes
@@ -469,7 +475,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
469475### Changed
470476- Update @graphprotocol/common-ts to 0.2.2
471477
472- [ Unreleased ] : https://github.com/graphprotocol/indexer/compare/v0.20.19...HEAD
478+ [ Unreleased ] : https://github.com/graphprotocol/indexer/compare/v0.20.20...HEAD
479+ [ 0.20.20 ] : https://github.com/graphprotocol/indexer/compare/v0.20.19...v0.20.20
473480[ 0.20.19 ] : https://github.com/graphprotocol/indexer/compare/v0.20.18...v0.20.19
474481[ 0.20.18 ] : https://github.com/graphprotocol/indexer/compare/v0.20.17...v0.20.18
475482[ 0.20.17 ] : https://github.com/graphprotocol/indexer/compare/v0.20.12...v0.20.17
Original file line number Diff line number Diff line change 11{
22 "name" : " @graphprotocol/indexer-agent" ,
3- "version" : " 0.20.19 " ,
3+ "version" : " 0.20.20 " ,
44 "description" : " Indexer agent" ,
55 "main" : " ./dist/index.js" ,
66 "types" : " ./dist/index.d.ts" ,
3030 },
3131 "dependencies" : {
3232 "@graphprotocol/common-ts" : " 2.0.1" ,
33- "@graphprotocol/indexer-common" : " ^0.20.18 " ,
33+ "@graphprotocol/indexer-common" : " ^0.20.20 " ,
3434 "@thi.ng/heaps" : " ^1.3.1" ,
3535 "@uniswap/sdk" : " 3.0.3" ,
3636 "axios" : " 0.26.1" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @graphprotocol/indexer-cli" ,
3- "version" : " 0.20.19 " ,
3+ "version" : " 0.20.20 " ,
44 "description" : " Indexer CLI for The Graph Network" ,
55 "main" : " ./dist/cli.js" ,
66 "files" : [
2727 },
2828 "dependencies" : {
2929 "@graphprotocol/common-ts" : " 2.0.1" ,
30- "@graphprotocol/indexer-common" : " ^0.20.18 " ,
30+ "@graphprotocol/indexer-common" : " ^0.20.20 " ,
3131 "@iarna/toml" : " 2.2.5" ,
3232 "@thi.ng/iterators" : " 5.1.74" ,
3333 "@urql/core" : " 2.4.4" ,
Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
77## [ Unreleased]
88
9+ ## [ 0.20.20] - 2023-08-21
10+ ### Fixed
11+ - Ensure some database operations run inside their transactions
12+ - More helpful error message when parsing network specification files
13+ - Protocol network missing when creating offchain rules and allocations via the GraphQL interface
14+
915## [ 0.20.18] - 2023-08-11
1016### Added
1117- The ` Network ` type now holds references to all network-specific components, such as the ` NetworkMonitor ` and ` Contracts ` classes.
@@ -264,7 +270,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
264270### Added
265271- Move indexing rule management here from ` @graphprotocol/common-ts `
266272
267- [ Unreleased ] : https://github.com/graphprotocol/indexer/compare/v0.20.18...HEAD
273+ [ Unreleased ] : https://github.com/graphprotocol/indexer/compare/v0.20.20...HEAD
274+ [ 0.20.20 ] : https://github.com/graphprotocol/indexer/compare/v0.20.18...v0.20.20
268275[ 0.20.18 ] : https://github.com/graphprotocol/indexer/compare/v0.20.17...v0.20.18
269276[ 0.20.17 ] : https://github.com/graphprotocol/indexer/compare/v0.20.12...v0.20.17
270277[ 0.20.12 ] : https://github.com/graphprotocol/indexer/compare/v0.20.11...v0.20.12
Original file line number Diff line number Diff line change 11{
22 "name" : " @graphprotocol/indexer-common" ,
3- "version" : " 0.20.19 " ,
3+ "version" : " 0.20.20 " ,
44 "description" : " Common library for Graph Protocol indexer components" ,
55 "main" : " ./dist/index.js" ,
66 "types" : " ./dist/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -6,12 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
77## [ Unreleased]
88
9+ ## [ 0.20.20] - 2023-08-21
10+ ### Added
11+ - Add TRACE logs to ` AllocationReceiptManager._flushOutstanding ` method
12+
13+ ### Fixed
14+ - Ensure some database operations run inside their transactions
15+
916## [ 0.20.19] - 2023-08-12
10- ## Changed
17+ ### Changed
1118- Revert indexer-native to 0.20.11 (newer builds are broken)
1219
1320## [ 0.20.18] - 2023-08-11
14- ## Changed
21+ ### Changed
1522- Changes to support the multi-network changes from indexer-common
1623
1724## [ 0.20.17] - 2023-06-19
Original file line number Diff line number Diff line change 11{
22 "name" : " @graphprotocol/indexer-service" ,
3- "version" : " 0.20.19 " ,
3+ "version" : " 0.20.20 " ,
44 "description" : " Indexer service" ,
55 "main" : " ./dist/index.js" ,
66 "types" : " ./dist/index.d.ts" ,
3333 "dependencies" : {
3434 "@google-cloud/profiler" : " 4.1.7" ,
3535 "@graphprotocol/common-ts" : " 2.0.1" ,
36- "@graphprotocol/indexer-common" : " ^0.20.19 " ,
36+ "@graphprotocol/indexer-common" : " ^0.20.20 " ,
3737 "@graphprotocol/indexer-native" : " 0.20.11" ,
3838 "@graphql-tools/load" : " 7.5.8" ,
3939 "@graphql-tools/url-loader" : " 7.9.11" ,
You can’t perform that action at this time.
0 commit comments