chore(main): release mcp-edd 1.2.0#20
Conversation
|
No actionable comments were generated in the recent review. 🎉 📝 WalkthroughSummary by CodeRabbit
WalkthroughThis pull request releases version 1.2.0 with a version bump applied across manifest and configuration files and adds a 1.2.0 entry to CHANGELOG.md documenting features and a bug fix. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Possibly related PRs
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
server.json (1)
12-21:⚠️ Potential issue | 🔴 CriticalCritical: Nested package version is out of sync.
The
packages[0].versionat line 16 is still"1.1.0"while the top-levelversionat line 6 has been updated to"1.1.1". This creates the same inconsistency that the changelog indicates was fixed in this release ("sync server.json package version with npm").This version mismatch can cause confusion for package managers and registries, as the server metadata claims version 1.1.1 but references package version 1.1.0.
🔧 Proposed fix to sync the package version
"packages": [ { "registryType": "npm", "identifier": "@verygoodplugins/mcp-edd", - "version": "1.1.0", + "version": "1.1.1", "transport": { "type": "stdio" } } ],🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@server.json` around lines 12 - 21, Update the nested package version so it matches the top-level "version" value: change packages[0].version from "1.1.0" to "1.1.1" (ensure the field referenced is packages[0].version in server.json so the nested package entry stays in sync with the top-level version).
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Outside diff comments:
In `@server.json`:
- Around line 12-21: Update the nested package version so it matches the
top-level "version" value: change packages[0].version from "1.1.0" to "1.1.1"
(ensure the field referenced is packages[0].version in server.json so the nested
package entry stays in sync with the top-level version).
49cc165 to
2171b1a
Compare
2171b1a to
8acffc5
Compare
There was a problem hiding this comment.
Pull request overview
Release-please generated release PR to publish mcp-edd v1.2.0, updating version metadata across the repository and adding the corresponding changelog entry.
Changes:
- Bump version references from
1.1.0→1.2.0in package + manifest metadata. - Add
1.2.0section toCHANGELOG.md. - Update
.release-please-manifest.jsonto track the new release version.
Reviewed changes
Copilot reviewed 5 out of 6 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
server.json |
Updates top-level server registry version (but nested npm package version still needs syncing). |
package.json |
Bumps npm package version to 1.2.0. |
package-lock.json |
Updates lockfile’s root package version fields to 1.2.0. |
manifest.json |
Bumps extension/manifest version to 1.2.0. |
CHANGELOG.md |
Adds release notes for 1.2.0. |
.release-please-manifest.json |
Updates release-please tracked version to 1.2.0. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "title": "Easy Digital Downloads", | ||
| "description": "MCP server for Easy Digital Downloads REST API - sales, customers, products, analytics", | ||
| "version": "1.1.0", | ||
| "version": "1.2.0", |
There was a problem hiding this comment.
server.json has version bumped to 1.2.0, but the nested packages[0].version is still 1.1.0. This makes the registry metadata inconsistent with package.json/package-lock.json and can cause the published server entry to reference the wrong npm version. Update packages[0].version to 1.2.0 as part of this release bump.
8acffc5 to
baa0ca0
Compare
🤖 I have created a release beep boop
1.2.0 (2026-05-08)
Features
Bug Fixes
This PR was generated with Release Please. See documentation.