Skip to content

Commit a825a4b

Browse files
author
Matthew Hawkins
authored
release: v0.2.1 (#94)
1 parent 358076e commit a825a4b

File tree

7 files changed

+15
-21
lines changed

7 files changed

+15
-21
lines changed

CHANGELOG.md

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,28 +12,22 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1212
### 🛠 Maintenance
1313
### 📚 Documentation
1414
-->
15-
## [UNRELEASED]
1615

17-
### 🐛 Fixes
18-
- Silence __typename used in operations errors (#79)
19-
20-
## [Unreleased]
21-
22-
### 🚀 Features
23-
24-
- Add a `--log` option to specify the log level used by the MCP Server (default is INFO). Reduce the level of many messages emitted by the server so INFO is less verbose. (#82)
16+
## [0.2.1] - 2025-05-27
2517

2618
### 🐛 Fixes
2719

20+
- Reduce the log level of many messages emitted by the server so INFO is less verbose, and add a `--log` option to specify the log level used by the MCP Server (default is INFO) (#82)
21+
- Ignore mutations and subscriptions rather than erroring out (#91)
22+
- Silence __typename used in operations errors (#79)
2823
- Fix issues with the `introspect` tool. (#83)
29-
30-
## [Unreleased]
31-
### 🐛 Fixes
24+
- The tool was not working when there were top-level subscription in the schema
25+
- Argument types were not being resolved correctly
3226
- Improvements to operation loading (#80)
3327
- When specifying multiple operation paths, all paths were reloaded when any one changed
3428
- Many redundant events were sent on startup, causing verbose logging about loaded operations
3529
- Better error handling for missing, invalid, or empty operation files
36-
- The `execute` tool did not handle variables correctly (#77)
30+
- The `execute` tool did not handle variables correctly (#77 and #93)
3731
- Cycles in schema type definitions would lead to stack overflow (#74)
3832

3933
## [0.2.0] - 2025-05-21

Cargo.lock

Lines changed: 1 addition & 1 deletion
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
@@ -2,7 +2,7 @@
22
resolver = "2"
33
members = ["crates/apollo-mcp-server", "crates/apollo-mcp-registry"]
44

5-
package.version = "0.2.0"
5+
package.version = "0.2.1"
66

77
[workspace.dependencies]
88
apollo-compiler = "1.27.0"

docs/source/command-reference.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ To install or upgrade to a **specific version** of Apollo MCP Server (recommende
2424

2525
```bash
2626
# Note the `v` prefixing the version number
27-
curl -sSL https://mcp.apollo.dev/download/nix/v0.2.0 | sh
27+
curl -sSL https://mcp.apollo.dev/download/nix/v0.2.1 | sh
2828
```
2929

3030
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).
@@ -47,7 +47,7 @@ To install or upgrade to a **specific version** of Apollo MCP Server (recommende
4747

4848
```bash
4949
# Note the `v` prefixing the version number
50-
iwr 'https://mcp.apollo.dev/download/win/v0.2.0' | iex
50+
iwr 'https://mcp.apollo.dev/download/win/v0.2.1' | iex
5151
```
5252

5353
## Usage

docs/source/guides/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ To install or upgrade to a **specific version** of Apollo MCP Server (recommende
2929

3030
```bash
3131
# Note the `v` prefixing the version number
32-
curl -sSL https://mcp.apollo.dev/download/nix/v0.2.0 | sh
32+
curl -sSL https://mcp.apollo.dev/download/nix/v0.2.1 | sh
3333
```
3434

3535
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).
@@ -52,7 +52,7 @@ To install or upgrade to a **specific version** of Apollo MCP Server (recommende
5252

5353
```bash
5454
# Note the `v` prefixing the version number
55-
iwr 'https://mcp.apollo.dev/download/win/v0.2.0' | iex
55+
iwr 'https://mcp.apollo.dev/download/win/v0.2.1' | iex
5656
```
5757

5858
{/* ### Download container image

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.2.0"
17+
PACKAGE_VERSION="v0.2.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.2.0'
11+
$package_version = 'v0.2.1'
1212

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

0 commit comments

Comments
 (0)