@rockhopper-co/mcp-server 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,28 @@ All notable changes to this project are documented here. Follows
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
|
|
5
5
|
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.2.1] — 2026-04-24
|
|
8
|
+
|
|
9
|
+
Publishing-pipeline hardening release. **No runtime or API changes** — the
|
|
10
|
+
package code is byte-equivalent to `0.2.0`. Bumped purely to validate the
|
|
11
|
+
CI/CD changes below on a real publish.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- **npm Trusted Publishing (OIDC).** `publish.yml` no longer uses the
|
|
15
|
+
long-lived `NPM_TOKEN` secret. The npm CLI exchanges a short-lived
|
|
16
|
+
GitHub OIDC token for a publishing credential at release time, per
|
|
17
|
+
https://docs.npmjs.com/trusted-publishers. Provenance attestation is
|
|
18
|
+
now implied (cannot be disabled).
|
|
19
|
+
- **Canonical GitHub owner casing in `package.json`.** `repository.url`
|
|
20
|
+
and `bugs.url` now use `Rockhopper-Co` (canonical) instead of
|
|
21
|
+
`rockhopper-co` (lowercase). npm provenance does an exact string
|
|
22
|
+
match against the GitHub-canonical owner — the lowercase URL caused
|
|
23
|
+
E422 on the `0.2.0` first publish attempt before the bootstrap
|
|
24
|
+
succeeded.
|
|
25
|
+
- **CI: npm CLI auto-upgraded** to >= 11.5.1 in the publish workflow
|
|
26
|
+
(Node 20 ships with npm 10.x, which doesn't support Trusted
|
|
27
|
+
Publishing).
|
|
28
|
+
|
|
7
29
|
## [0.2.0] — 2026-04-23
|
|
8
30
|
|
|
9
31
|
First public release on npm as `@rockhopper-co/mcp-server`.
|
package/package.json
CHANGED