@rockhopper-co/mcp-server 0.10.0 → 1.0.0
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 +32 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,38 @@ 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
|
+
## [1.0.0] — 2026-08-10
|
|
8
|
+
|
|
9
|
+
**No code changed between `0.10.0` and `1.0.0`.** This release exists to fix a
|
|
10
|
+
versioning trap, and states a compatibility promise that was already true.
|
|
11
|
+
|
|
12
|
+
### Why 1.0.0
|
|
13
|
+
|
|
14
|
+
On a `0.x` version npm reads a caret range as **minor-locked**: `^0.9.0` means
|
|
15
|
+
`>=0.9.0 <0.10.0`, not `<1.0.0`. Nobody reads it that way. It cost two releases
|
|
16
|
+
— `mcp-gateway` sat on `^0.9.0` and could not receive `0.10.0`, the very release
|
|
17
|
+
it was waiting for, and before that on the same coupling one release earlier
|
|
18
|
+
(ENG-2165, ENG-2233). At `1.x` a caret finally means "any compatible version".
|
|
19
|
+
|
|
20
|
+
### The compatibility promise
|
|
21
|
+
|
|
22
|
+
From `1.0.0`, a breaking change to any of the following requires a major bump:
|
|
23
|
+
|
|
24
|
+
- **Tool names and their input schemas.** These are the load-bearing ones. The
|
|
25
|
+
schemas are runtime `zod` validators that execute **on the caller's machine**,
|
|
26
|
+
before any request is sent, so narrowing one breaks that caller no matter how
|
|
27
|
+
compatible the backend is. Widening a schema is not breaking; narrowing it is.
|
|
28
|
+
- **Resource URIs and templates**, and the prompts the server registers.
|
|
29
|
+
- **The CLI's flags and its stdio contract.**
|
|
30
|
+
|
|
31
|
+
Explicitly **not** covered, and free to change in a minor: internal modules, the
|
|
32
|
+
`dist/` layout, anything reachable only by deep-importing a path this package
|
|
33
|
+
does not document, and log output.
|
|
34
|
+
|
|
35
|
+
### Note for consumers
|
|
36
|
+
|
|
37
|
+
Move a `^0.x` range to `^1.0.0`. A `0.x` range will not pick this up.
|
|
38
|
+
|
|
7
39
|
## [Unreleased]
|
|
8
40
|
|
|
9
41
|
### Added
|
package/package.json
CHANGED