Skip to content

Commit 3b1bddc

Browse files
authored
Release 0.4.2 (#155)
* generate changelog * update versions
1 parent 99b0d66 commit 3b1bddc

File tree

8 files changed

+20
-13
lines changed

8 files changed

+20
-13
lines changed

.changesets/feat_jeffrey_add_default_collection_support.md

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

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ 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.4.2] - 2025-06-24
8+
9+
## 🚀 Features
10+
11+
### Pass in --collection default to use default collection - @Jephuff PR #151
12+
13+
--collection default will use the configured default collection on the graph variant specified by the --apollo-graph-ref arg
14+
15+
16+
717
# [0.4.1] - 2025-06-20
818

919
## 🐛 Fixes

Cargo.lock

Lines changed: 2 additions & 2 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
@@ -4,7 +4,7 @@ members = ["crates/apollo-mcp-server", "crates/apollo-mcp-registry"]
44

55
[workspace.package]
66
authors = ["Apollo <[email protected]>"]
7-
version = "0.4.1"
7+
version = "0.4.2"
88

99
[workspace.dependencies]
1010
apollo-compiler = "1.27.0"

docs/source/command-reference.mdx

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

5252
```bash
5353
# Note the `v` prefixing the version number
54-
curl -sSL https://mcp.apollo.dev/download/nix/v0.4.1| sh
54+
curl -sSL https://mcp.apollo.dev/download/nix/v0.4.2| sh
5555
```
5656

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

6969
```bash
7070
# Note the `v` prefixing the version number
71-
iwr 'https://mcp.apollo.dev/download/win/v0.4.1' | iex
71+
iwr 'https://mcp.apollo.dev/download/win/v0.4.2' | iex
7272
```
7373

7474
### Download container image
@@ -83,7 +83,7 @@ To pull a **specific version** of Apollo MCP Server (recommended for CI environm
8383

8484
```bash
8585
# Note the `v` prefixing the version number
86-
docker image pull ghcr.io/apollographql/apollo-mcp-server:v0.4.1
86+
docker image pull ghcr.io/apollographql/apollo-mcp-server:v0.4.2
8787
```
8888

8989
## Usage

docs/source/guides/index.mdx

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

3131
```bash
3232
# Note the `v` prefixing the version number
33-
curl -sSL https://mcp.apollo.dev/download/nix/v0.4.1 | sh
33+
curl -sSL https://mcp.apollo.dev/download/nix/v0.4.2 | sh
3434
```
3535

3636
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.4.1' | iex
50+
iwr 'https://mcp.apollo.dev/download/win/v0.4.2' | iex
5151
```
5252

5353
### 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.4.1"
17+
PACKAGE_VERSION="v0.4.2"
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.4.1'
11+
$package_version = 'v0.4.2'
1212

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

0 commit comments

Comments
 (0)