@cyanheads/mcp-ts-core 0.8.17 → 0.8.19

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.
@@ -1,56 +1,71 @@
1
1
  ---
2
- # FORMAT REFERENCE — this file is never edited, never moved, never renamed.
3
- #
4
- # At release time, author a new per-version file at:
5
- # changelog/<major.minor>.x/<version>.md (e.g. changelog/0.6.x/0.6.6.md)
6
- # using this file's frontmatter and section layout as the starting point.
7
- # Set that new file's H1 to `# <version> — YYYY-MM-DD` with a concrete date.
8
-
9
- # Required. One-line headline describing the release. Max 250 chars. No markdown.
10
- # This line is what the CHANGELOG.md rollup shows write it like a GitHub Release title.
11
- # Keep the double quotes around the value — unquoted YAML treats `:` (colon-space)
12
- # inside the string as a key separator, which fails GitHub's strict YAML parser.
2
+ # FORMAT REFERENCE — do not edit. Copy this file to
3
+ # `changelog/<major.minor>.x/<version>.md` (e.g. `changelog/0.8.x/0.8.6.md`)
4
+ # to author a new release. Set that file's H1 to `# <version> — YYYY-MM-DD`
5
+ # with a concrete date.
6
+
7
+ # Required. One-line GitHub Release-style headline. ~250 character soft cap.
8
+ # Default short and scannable. Don't pad, don't stitch unrelated changes with
9
+ # semicolons pick the headline. Quotes required: unquoted YAML treats `: `
10
+ # inside the value as a key separator and fails GitHub's strict parser.
13
11
  summary: ""
14
12
 
15
- # Set to `true` only if this release has breaking changes (API removals, signature
16
- # changes, config renames, anything that requires consumer code changes on update).
17
- # Flagged as ⚠️ Breaking in the rollup.
13
+ # Set `true` when consumers must change code to upgrade: API removals,
14
+ # signature changes, config renames, behavior changes that break existing
15
+ # usage. Flagged as `Breaking` in the rollup.
18
16
  breaking: false
17
+
18
+ # Set `true` if this release contains any security fix. Pairs with the
19
+ # `## Security` section below. Flagged as `Security` in the rollup so
20
+ # users can triage upgrade urgency at a glance.
21
+ security: false
19
22
  ---
20
23
 
21
24
  # <version> — YYYY-MM-DD
22
25
 
23
26
  <!--
24
- FORMAT REFERENCEdo not edit this file. It exists so the per-version file
25
- structure has a single copy-source. Create new release notes at
26
- `changelog/<major.minor>.x/<version>.md` using this layout.
27
-
28
- Optional narrative intro 1-3 sentences framing the release theme. Delete if not needed.
29
-
30
- TONE: terse and fact-dense. 1-2 sentence(s) per bullet where possible —
31
- name the symbol, state what changed, stop. Drop "explains how it works" prose;
32
- that belongs in JSDoc, AGENTS.md, or the relevant skill. Drop ceremonial
33
- framings ("This release introduces…", "fully backwards compatible:" with a
34
- paragraph of justification). Prefer code/symbol names over English
35
- re-explanations. If a bullet runs more than ~2 lines, split it or cut it.
36
-
37
- WHAT TO INCLUDE: every distinct fact a reader needs to adopt or audit the
38
- release new exports, signatures, lint rule IDs, env vars, breaking
39
- changes, version bumps on shipped skills. WHAT TO CUT: mechanism walkthroughs,
40
- duplicate prose between Added and Changed, file-by-file test enumerations,
41
- internal implementation notes. Trust the reader to read the code or the docs.
42
-
43
- Linking issues/PRs: use full URLs so the link works everywhere (GitHub web UI,
44
- npm/node_modules reads, local editors). GitHub's bare `#NN` auto-link only
45
- resolves inside its own UI.
46
-
47
- [#38](https://github.com/cyanheads/mcp-ts-core/issues/38) ← issue
48
- [#42](https://github.com/cyanheads/mcp-ts-core/pull/42) ← PR
49
-
50
- Only link numbers you've verified exist (via `gh issue view NN` or
51
- `gh pr view NN`). Never speculate on a future number `#42` for "my
52
- upcoming PR" will quietly resolve to whatever real item already owns 42,
53
- and GitHub timeline previews will pull in that unrelated item's title.
27
+ AUTHORING GUIDEapplies to the new per-version file you create from this
28
+ template.
29
+
30
+ Audience: someone scanning release notes to decide what affects them. Lead
31
+ each bullet with the symbol or concept name in **bold** so they can skip
32
+ what's irrelevant and zoom in on what's not.
33
+
34
+ Tone: terse, fact-dense, not verbose. Default to one sentence per bullet
35
+ name the symbol, state what changed, stop. Use a second sentence only when
36
+ it carries weight. If a bullet feels long, it is.
37
+
38
+ Cut: mechanism walkthroughs (those belong in JSDoc, AGENTS.md, or the
39
+ relevant skill), ceremonial framings ("This release introduces…",
40
+ backwards-compat paragraphs), file-by-file test enumerations, internal
41
+ implementation notes. Prefer code/symbol names over English re-explanations.
42
+
43
+ Narrative intro: skip by default. Add one short sentence only when the
44
+ release theme genuinely needs framing the bullets can't carry.
45
+
46
+ Sections: Keep a Changelog order Added, Changed, Deprecated, Removed,
47
+ Fixed, Security. Include only sections with entries; delete the rest
48
+ (including the commented-out scaffolding below). Don't ship empty headers.
49
+
50
+ Include: every distinct fact a reader needs to adopt or audit the release —
51
+ new exports, signatures, lint rule IDs, env vars, breaking changes, version
52
+ bumps on shipped skills. Nothing more.
53
+
54
+ Links: link issues, PRs, docs, or skills where they help a reader jump to
55
+ context. Once per item per entry don't re-link the same issue in summary,
56
+ narrative, and bullet. Skip links for inline symbol names; code spans speak
57
+ for themselves.
58
+
59
+ Issue/PR URLs: use full URLs. GitHub's bare `#NN` auto-link only resolves
60
+ inside its own UI, not in npm reads or local editors.
61
+
62
+ [#38](https://github.com/cyanheads/mcp-ts-core/issues/38) ← issue
63
+ [#42](https://github.com/cyanheads/mcp-ts-core/pull/42) ← PR
64
+
65
+ Verify numbers exist before linking (`gh issue view NN`, `gh pr view NN`).
66
+ Never speculate on a future number — `#42` for an upcoming PR silently
67
+ resolves to whatever real item already owns 42, and timeline previews pull
68
+ in that unrelated item's metadata.
54
69
  -->
55
70
 
56
71
  ## Added
@@ -61,6 +76,18 @@ breaking: false
61
76
 
62
77
  -
63
78
 
79
+ <!-- ## Deprecated
80
+
81
+ - -->
82
+
83
+ <!-- ## Removed
84
+
85
+ - -->
86
+
64
87
  ## Fixed
65
88
 
66
89
  -
90
+
91
+ <!-- ## Security
92
+
93
+ - -->
@@ -44,8 +44,8 @@
44
44
  },
45
45
  "license": "Apache-2.0",
46
46
  "engines": {
47
- "bun": ">=1.2.0",
48
- "node": ">=22.0.0"
47
+ "bun": ">=1.3.0",
48
+ "node": ">=24.0.0"
49
49
  },
50
50
  "publishConfig": {
51
51
  "access": "public"