Skip to content

Commit 643a6cc

Browse files
committed
chore(release): changelog for 1.0.0
1 parent e81028d commit 643a6cc

File tree

4 files changed

+26
-25
lines changed

4 files changed

+26
-25
lines changed

.changesets/fix_fix_remove_verbose_logging.md

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

.changesets/maint_up_rust.md

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

CHANGELOG.md

Lines changed: 18 additions & 0 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+
# [1.0.0] - 2025-10-01
8+
9+
## 🐛 Fixes
10+
11+
### fix: remove verbose logging - @swcollard PR #401
12+
13+
The tracing-subscriber crate we are using to create logs does not have a configuration to exclude the span name and attributes from the log line. This led to rather verbose logs on app startup which would dump the full operation object into the logs before the actual log line.
14+
15+
This change strips the attributes from the top level spans so that we still have telemetry and tracing during this important work the server is doing, but they don't make it into the logs. The relevant details are provided in child spans after the operation has been parsed so we aren't losing any information other than a large json blob in the top level trace of generating Tools from GraphQL Operations.
16+
17+
## 🛠 Maintenance
18+
19+
### deps: update rust to v1.90.0 - @DaleSeo PR #387
20+
21+
Updates the Rust version to v1.90.0
22+
23+
24+
725
# [0.9.0] - 2025-09-24
826

927
## 🚀 Features

CHANGELOG_SECTION.md

Lines changed: 8 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,16 @@
1-
# [0.8.0] - 2025-09-12
1+
# [1.0.0] - 2025-10-01
22

3-
## 🚀 Features
3+
## 🐛 Fixes
44

5-
### feat: Configuration for disabling authorization token passthrough - @swcollard PR #336
5+
### fix: remove verbose logging - @swcollard PR #401
66

7-
A new optional new MCP Server configuration parameter, `transport.auth.disable_auth_token_passthrough`, which is `false` by default, that when true, will no longer pass through validated Auth tokens to the GraphQL API.
7+
The tracing-subscriber crate we are using to create logs does not have a configuration to exclude the span name and attributes from the log line. This led to rather verbose logs on app startup which would dump the full operation object into the logs before the actual log line.
88

9-
## 🛠 Maintenance
10-
11-
### Configure Codecov with coverage targets - @DaleSeo PR #337
12-
13-
This PR adds `codecov.yml` to set up Codecov with specific coverage targets and quality standards. It helps define clear expectations for code quality. It also includes some documentation about code coverage in `CONTRIBUTING.md` and adds the Codecov badge to `README.md`.
9+
This change strips the attributes from the top level spans so that we still have telemetry and tracing during this important work the server is doing, but they don't make it into the logs. The relevant details are provided in child spans after the operation has been parsed so we aren't losing any information other than a large json blob in the top level trace of generating Tools from GraphQL Operations.
1410

15-
### Implement Test Coverage Measurement and Reporting - @DaleSeo PR #335
16-
17-
This PR adds the bare minimum for code coverage reporting using [cargo-llvm-cov](https://crates.io/crates/cargo-llvm-cov) and integrates with [Codecov](https://www.codecov.io/). It adds a new `coverage` job to the CI workflow that generates and uploads coverage reporting in parallel with existing tests. The setup mirrors that of Router, except it uses `nextest` instead of the built-in test runner and CircleCI instead of GitHub Actions.
18-
19-
### chore: update RMCP dependency ([328](https://github.com/apollographql/apollo-mcp-server/issues/328))
11+
## 🛠 Maintenance
2012

21-
Update the RMCP dependency to the latest version, pulling in newer specification changes.
13+
### deps: update rust to v1.90.0 - @DaleSeo PR #387
2214

23-
### ci: Pin stable rust version ([Issue #287](https://github.com/apollographql/apollo-mcp-server/issues/287))
15+
Updates the Rust version to v1.90.0
2416

25-
Pins the stable version of Rust to the current latest version to ensure backwards compatibility with future versions.

0 commit comments

Comments
 (0)