Skip to content

Commit d5a03f4

Browse files
authored
docs, graph: Bump GRAPH_MAX_API_VERSION to 0.0.6
1 parent e2c8e98 commit d5a03f4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/environment-variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ those.
7676
- `GRAPH_QUERY_CACHE_STALE_PERIOD`: Number of queries after which a cache
7777
entry can be considered stale. Defaults to 100.
7878
- `GRAPH_MAX_API_VERSION`: Maximum `apiVersion` supported, if a developer tries to create a subgraph
79-
with a higher `apiVersion` than this in their mappings, they'll receive an error. Defaults to `0.0.5`.
79+
with a higher `apiVersion` than this in their mappings, they'll receive an error. Defaults to `0.0.6`.
8080
- `GRAPH_RUNTIME_MAX_STACK_SIZE`: Maximum stack size for the WASM runtime, if exceeded the execution
8181
stops and an error is thrown. Defaults to 512KiB.
8282

graph/src/data/subgraph/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ lazy_static! {
6464
static ref MAX_API_VERSION: semver::Version = std::env::var("GRAPH_MAX_API_VERSION")
6565
.ok()
6666
.and_then(|api_version_str| semver::Version::parse(&api_version_str).ok())
67-
.unwrap_or(semver::Version::new(0, 0, 5));
67+
.unwrap_or(semver::Version::new(0, 0, 6));
6868
}
6969

7070
/// Rust representation of the GraphQL schema for a `SubgraphManifest`.

0 commit comments

Comments
 (0)