Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.20.23 #794

Merged
merged 4 commits into from
Oct 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.22"
"version": "0.20.23"
}
12 changes: 11 additions & 1 deletion packages/indexer-agent/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.20.23] - 2023-09-29
### Added
- Subgraph Freshness check for Epoch and Network subgraphs
- `manual` deployment management mode

### Fixed
- Deprecate old payment systems after Exponential Rebates contract changes
- Updated README files

## [0.20.22] - 2023-08-28
### Fixed
- Fixed bug causing the network subgraph to be removed after syncing
Expand Down Expand Up @@ -486,7 +495,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.22...HEAD
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.20.23-rc.0...HEAD
[0.20.23]: https://github.com/graphprotocol/indexer/compare/v0.20.22...v0.20.23
[0.20.22]: https://github.com/graphprotocol/indexer/compare/v0.20.21...v0.20.22
[0.20.21]: https://github.com/graphprotocol/indexer/compare/v0.20.20...v0.20.21
[0.20.20]: https://github.com/graphprotocol/indexer/compare/v0.20.19...v0.20.20
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.22",
"version": "0.20.23",
"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.7",
"@graphprotocol/indexer-common": "^0.20.21",
"@graphprotocol/indexer-common": "^0.20.23",
"@thi.ng/heaps": "^1.3.1",
"@uniswap/sdk": "3.0.3",
"axios": "0.26.1",
Expand Down
7 changes: 6 additions & 1 deletion packages/indexer-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.20.23] - 2023-09-29
### Changed
- Require a `--network` option to approve actions

## [0.20.21] - 2023-08-24
### Changed
- Upgraded `common-ts` dependency to v2.0.3
Expand Down Expand Up @@ -205,7 +209,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.21...HEAD
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.20.23-rc.0...HEAD
[0.20.23]: https://github.com/graphprotocol/indexer/compare/v0.20.21...v0.20.23
[0.20.21]: https://github.com/graphprotocol/indexer/compare/v0.20.18...v0.20.21
[0.20.18]: https://github.com/graphprotocol/indexer/compare/v0.20.12...v0.20.18
[0.20.12]: https://github.com/graphprotocol/indexer/compare/v0.20.8...v0.20.12
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.22",
"version": "0.20.23",
"description": "Indexer CLI for The Graph Network",
"main": "./dist/cli.js",
"files": [
Expand All @@ -27,7 +27,7 @@
},
"dependencies": {
"@graphprotocol/common-ts": "2.0.7",
"@graphprotocol/indexer-common": "^0.20.21",
"@graphprotocol/indexer-common": "^0.20.23",
"@iarna/toml": "2.2.5",
"@thi.ng/iterators": "5.1.74",
"@urql/core": "2.4.4",
Expand Down
5 changes: 4 additions & 1 deletion packages/indexer-common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.20.23] - 2023-09-29
### Fixed
- Reference SQL conflict targets when upserting `POIDisputes`.

Expand Down Expand Up @@ -276,7 +278,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.21...HEAD
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.20.23-rc.0...HEAD
[0.20.23]: https://github.com/graphprotocol/indexer/compare/v0.20.21...v0.20.23
[0.20.21]: https://github.com/graphprotocol/indexer/compare/v0.20.20...v0.20.21
[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
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.22",
"version": "0.20.23",
"description": "Common library for Graph Protocol indexer components",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
14 changes: 13 additions & 1 deletion packages/indexer-service/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.20.23] - 2023-09-29
### Changed
- Relax network subgraph validation during indexer-service startup

### Fixed
- Update common-ts and other dependencies
- Update common-ts and other dependencies
- Update common-ts and other dependencies

### Added
- Added a subgraph freshness check for the Network and Epoch subgraphs
- Added a subgraph freshness check for the Network and Epoch subgraphs

## [0.20.21] - 2023-08-24
### Changed
- Upgraded `common-ts` dependency to v2.0.3
Expand Down Expand Up @@ -307,7 +318,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.21...HEAD
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.20.23-rc.0...HEAD
[0.20.23]: https://github.com/graphprotocol/indexer/compare/v0.20.21...v0.20.23
[0.20.21]: https://github.com/graphprotocol/indexer/compare/v0.20.20...v0.20.21
[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
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.22",
"version": "0.20.23",
"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.7",
"@graphprotocol/indexer-common": "^0.20.21",
"@graphprotocol/indexer-common": "^0.20.23",
"@graphprotocol/indexer-native": "0.20.11",
"@graphql-tools/load": "8.0.0",
"@graphql-tools/url-loader": "8.0.0",
Expand Down
Loading