Skip to content

Commit

Permalink
*: Update changelogs ahead of release
Browse files Browse the repository at this point in the history
  • Loading branch information
fordN committed Jul 21, 2021
1 parent 7c017ae commit ac81418
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 7 deletions.
21 changes: 19 additions & 2 deletions packages/indexer-agent/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.17.0] - 2021-07-21
### Added
- Reallocate to subgraph deployment in one transaction using closeAndAllocate.
- Wait for gas prices below the `gas-price-max` (gwei) before proceeding with transaction execution.

### Changed
- Show subgraph query error reason in logs.
- Use `ClusterIP` in the k8s indexer agent service rather than a `LoadBalalancer` since `LoadBalancer` services have been
shown to introduce extra latency.
- Use undefined for auth user and password if none specified.
- Update `gas-price-max` units to be gwei instead of wei for improved human readability.
- Default `gas-price-max` changed from 20 gwei to 50 gwei.

### Fixed
- Improve robustness of subgraph deployments query by querying batches of only 10 deployments at a time.

## [0.16.0] - 2021-06-09
### Changed
- Default to only one transaction retry attempt to reduce gas usage
Expand Down Expand Up @@ -200,7 +216,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Don't try to allocate zero or negative GRT amounts
- Submit random POI, if cannot create one, to allow testing of indexer rewards distribution on testnet
- Add optional GDAI/GRT variable automation
- Include metrics for the GRT<->DAI conversion rate in both directions
- Include metrics for the GRT<->DAI conversion rate in both directions

### Fixed
- Reduce failed allocate txs by improving allocation id collision resistence
Expand Down Expand Up @@ -275,7 +291,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.16.0...HEAD
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.17.0...HEAD
[0.17.0]: https://github.com/graphprotocol/indexer/compare/v0.16.0...v0.17.0
[0.16.0]: https://github.com/graphprotocol/indexer/compare/v0.15.1...v0.16.0
[0.15.1]: https://github.com/graphprotocol/indexer/compare/v0.15.0...v0.15.1
[0.15.0]: https://github.com/graphprotocol/indexer/compare/v0.14.0...v0.15.0
Expand Down
9 changes: 7 additions & 2 deletions 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.17.0] - 2021-07-21
### Fixed
- Remove vestigial check for `channel-messages-inbox` endpoint.

## [0.15.0] - 2021-05-25
### Changed
- Rename query fee related fields in database models
Expand Down Expand Up @@ -66,7 +70,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.3.2] - 2020-10-27
### Added
- Add 'graph indexer rules delete &lt;all | global | deployment-id>' command
- Add 'graph indexer rules delete \<all | global | deployment-id>' command

## [0.3.1] - 2020-10-15
### Changed
Expand Down Expand Up @@ -111,7 +115,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.15.0...HEAD
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.17.0...HEAD
[0.17.0]: https://github.com/graphprotocol/indexer/compare/v0.15.0...v0.17.0
[0.15.0]: https://github.com/graphprotocol/indexer/compare/v0.14.0...v0.15.0
[0.14.0]: https://github.com/graphprotocol/indexer/compare/v0.13.0...v0.14.0
[0.13.0]: https://github.com/graphprotocol/indexer/compare/v0.12.0...v0.13.0
Expand Down
7 changes: 6 additions & 1 deletion packages/indexer-common/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.17.0] - 2021-07-21
### Changed
- Optimize `/network` execution by switching to a simpler HTTP client (doesn't need to be GraphQL aware).

## [0.15.1] - 2021-05-26
### Added
- Add `ensureAllocationSummary` utility for agent and service to use to create allocation summaries for receipts
Expand Down Expand Up @@ -125,7 +129,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.15.1...HEAD
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.17.0...HEAD
[0.17.0]: https://github.com/graphprotocol/indexer/compare/v0.15.1...v0.17.0
[0.15.1]: https://github.com/graphprotocol/indexer/compare/v0.15.0...v0.15.1
[0.15.0]: https://github.com/graphprotocol/indexer/compare/v0.14.0...v0.15.0
[0.14.0]: https://github.com/graphprotocol/indexer/compare/v0.13.0...v0.14.0
Expand Down
7 changes: 6 additions & 1 deletion packages/indexer-native/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.17.0] - 2021-07-21
### Fixed
- Fix build for Node v16 by upgrading neon-sys dependency.

## [0.14.0] - 2021-05-12
### Changed
- Use verify instead of recover for signatures when possible
Expand All @@ -18,5 +22,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Add package for native attestation signing and receipt signature verification

[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.14.0...HEAD
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.17.0...HEAD
[0.17.0]: https://github.com/graphprotocol/indexer/compare/v0.14.0...v0.17.0
[0.14.0]: https://github.com/graphprotocol/indexer/compare/v0.13.0...v0.14.0
10 changes: 9 additions & 1 deletion packages/indexer-service/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.17.0] - 2021-07-21
### Changed
- Make the `/network` endpoint optional by default and introduce a dedicated (optional) auth token for `/network` requests.
- Optimize `/network` execution by switching to a simpler HTTP client (doesn't need to be GraphQL aware).
- Use `ClusterIP` in the k8s indexer service service rather than a `LoadBalalancer` since `LoadBalancer` services have been
shown to introduce extra latency.

## [0.16.0] - 2021-06-09
### Added
- Add auth-protected `/network` endpoint, disabled by default
Expand Down Expand Up @@ -211,7 +218,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.16.0...HEAD
[Unreleased]: https://github.com/graphprotocol/indexer/compare/v0.17.0...HEAD
[0.17.0]: https://github.com/graphprotocol/indexer/compare/v0.16.0...v0.17.0
[0.16.0]: https://github.com/graphprotocol/indexer/compare/v0.15.1...v0.16.0
[0.15.1]: https://github.com/graphprotocol/indexer/compare/v0.15.0...v0.15.1
[0.15.0]: https://github.com/graphprotocol/indexer/compare/v0.14.0...v0.15.0
Expand Down

0 comments on commit ac81418

Please sign in to comment.