Skip to content

Commit

Permalink
release 15.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Theodus committed Nov 13, 2023
1 parent 619a68a commit be192ea
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 14 deletions.
3 changes: 1 addition & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 3 additions & 9 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
# Release Process

1. Test the main branch using the [edgeandnode/local-network-environments](https://github.com/edgeandnode/local-network-environments)
1. Test the main branch using the [edgeandnode/local-network](https://github.com/edgeandnode/local-network)
- Make sure that the gateway returns a correct response to a valid query
- Run any other ad-hoc tests that are appropriate for the set of changes made since the last release
2. Open a PR for the new release on [edgeandnode/graph-gateway](https://github.com/edgeandnode/graph-gateway)
- Version the release based on [SemVer](https://semver.org/)
- Note that the data science team relies on the logging format, so any changes to existing log events, spans, or fields require a major version bump
- Version the release based on [SemVer](https://semver.org/). The following trigger a major version bump:
- Breaking changes to the configuration file
- Set the new version in `Cargo.toml`, and run `cargo update`
- Include release notes for changes since the last release. See past releases for format.
- Rebase & Merge the PR
- Create a new release via GitHub
- Include the release notes from the PR
- Tag the commit with the version string, prefixed with a `v`
3. Open a PR on [edgeandnode/graph-infra](https://github.com/edgeandnode/graph-infra)
- Update the staging (and testnet?) gateways to the new version
- Update environment variables and Prometheus filters as necessary
4. Query the staging gateway at `https://gateway.staging.network.thegraph.com`
5. Open a PR on [edgeandnode/graph-infra](https://github.com/edgeandnode/graph-infra)
- Update the mainnet gateway configs, making the same configuration changes as in step 3
3 changes: 1 addition & 2 deletions graph-gateway/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "graph-gateway"
version = "14.0.1"
version = "15.0.0"

[dependencies]
alloy-primitives.workspace = true
Expand All @@ -17,7 +17,6 @@ ethers = { version = "2.0.10", default-features = false, features = ["abigen"] }
eventuals.workspace = true
faster-hex = "0.8.0"
futures = "0.3"
futures-util = "0.3"
graph-subscriptions = { git = "https://github.com/edgeandnode/subscription-payments", rev = "334d18b" }
graphql = { git = "https://github.com/edgeandnode/toolshed", tag = "graphql-v0.1.0" }
hex = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion graph-gateway/src/topology.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use std::sync::Arc;
use alloy_primitives::Address;
use anyhow::anyhow;
use eventuals::{Eventual, EventualExt, Ptr};
use futures_util::future::join_all;
use futures::future::join_all;
use itertools::Itertools;
use prelude::GRT;
use serde::Deserialize;
Expand Down

0 comments on commit be192ea

Please sign in to comment.