Skip to content

Commit 23d8d25

Browse files
authored
Merge pull request #215 from apollographql/0.6.1
release: v0.6.1
2 parents e8c1211 + bcd9b71 commit 23d8d25

File tree

7 files changed

+28
-19
lines changed

7 files changed

+28
-19
lines changed

.changesets/feat_dale_health_check.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file.
44

55
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
# [0.6.1] - 2025-07-29
8+
9+
## 🐛 Fixes
10+
11+
### Handle headers from config file - @tylerscoville PR #213
12+
13+
Fix an issue where the server crashes when headers are set in the config file
14+
15+
### Handle environment variables when no config file is provided - @DaleSeo PR #211
16+
17+
Fix an issue where the server fails with the message "Missing environment variable: APOLLO_GRAPH_REF," even when the variables are properly set.
18+
19+
## 🚀 Features
20+
21+
### Health Check Support - @DaleSeo PR #209
22+
23+
Health reporting functionality has been added to make the MCP server ready for production deployment with proper health monitoring and Kubernetes integration.
24+
725
# [0.6.0] - 2025-07-14
826

927
## ❗ BREAKING ❗
@@ -74,8 +92,6 @@ The `introspect` and `search` tools now have an option to minify results. Minifi
7492

7593
A new experimental `search` tool has been added that allows the AI model to specify a set of terms to search for in the GraphQL schema. The top types matching that search are returned, as well as enough information to enable creation of GraphQL operations involving those types.
7694

77-
78-
7995
# [0.5.2] - 2025-07-10
8096

8197
## 🐛 Fixes
@@ -84,8 +100,6 @@ A new experimental `search` tool has been added that allows the AI model to spec
84100

85101
The server will now report the correct server name and version to clients, rather than the Rust MCP SDK name and version.
86102

87-
88-
89103
# [0.5.1] - 2025-07-08
90104

91105
## 🐛 Fixes
@@ -94,8 +108,6 @@ The server will now report the correct server name and version to clients, rathe
94108

95109
Fix an issue where the server was unresponsive to external events such as changes to operation collections.
96110

97-
98-
99111
# [0.5.0] - 2025-07-08
100112

101113
## ❗ BREAKING ❗

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ members = [
88

99
[workspace.package]
1010
authors = ["Apollo <[email protected]>"]
11-
version = "0.6.0"
11+
version = "0.6.1"
1212

1313
[workspace.dependencies]
1414
apollo-compiler = "1.27.0"

docs/source/command-reference.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ To download a **specific version** of Apollo MCP Server (recommended for CI envi
2626

2727
```bash
2828
# Note the `v` prefixing the version number
29-
docker image pull ghcr.io/apollographql/apollo-mcp-server:v0.6.0
29+
docker image pull ghcr.io/apollographql/apollo-mcp-server:v0.6.1
3030
```
3131

3232
To download a specific version of Apollo MCP Server that is a release candidate:
3333

3434
```bash
3535
# Note the `v` prefixing the version number and the `-rc` suffix
36-
docker image pull ghcr.io/apollographql/apollo-mcp-server:v0.6.0-rc.1
36+
docker image pull ghcr.io/apollographql/apollo-mcp-server:v0.6.1-rc.1
3737
```
3838

3939
<Note>
@@ -65,7 +65,7 @@ To install or upgrade to a **specific version** of Apollo MCP Server (recommende
6565

6666
```bash
6767
# Note the `v` prefixing the version number
68-
curl -sSL https://mcp.apollo.dev/download/nix/v0.6.0 | sh
68+
curl -sSL https://mcp.apollo.dev/download/nix/v0.6.1 | sh
6969
```
7070

7171
If your machine doesn't have the `curl` command, you can get the latest version from the [`curl` downloads page](https://curl.se/download.html).
@@ -82,7 +82,7 @@ To install or upgrade to a **specific version** of Apollo MCP Server (recommende
8282

8383
```bash
8484
# Note the `v` prefixing the version number
85-
iwr 'https://mcp.apollo.dev/download/win/v0.6.0' | iex
85+
iwr 'https://mcp.apollo.dev/download/win/v0.6.1' | iex
8686
```
8787

8888
## Usage

scripts/nix/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ BINARY_DOWNLOAD_PREFIX="${APOLLO_MCP_SERVER_BINARY_DOWNLOAD_PREFIX:="https://git
1414

1515
# Apollo MCP Server version defined in apollo-mcp-server's Cargo.toml
1616
# Note: Change this line manually during the release steps.
17-
PACKAGE_VERSION="v0.6.0"
17+
PACKAGE_VERSION="v0.6.1"
1818

1919
download_binary_and_run_installer() {
2020
downloader --check

scripts/windows/install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
# Apollo MCP Server version defined in apollo-mcp-server's Cargo.toml
1010
# Note: Change this line manually during the release steps.
11-
$package_version = 'v0.6.0'
11+
$package_version = 'v0.6.1'
1212

1313
function Install-Binary($apollo_mcp_server_install_args) {
1414
$old_erroractionpreference = $ErrorActionPreference

0 commit comments

Comments
 (0)