@jaypie/mcp 0.8.89 → 0.8.90

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.
@@ -9,7 +9,7 @@ import { gt } from 'semver';
9
9
  /**
10
10
  * Docs Suite - Documentation services (skill, version, release_notes)
11
11
  */
12
- const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.89#aa6c226c"
12
+ const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.90#2f0d3db8"
13
13
  ;
14
14
  const __filename$1 = fileURLToPath(import.meta.url);
15
15
  const __dirname$1 = path.dirname(__filename$1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jaypie/mcp",
3
- "version": "0.8.89",
3
+ "version": "0.8.90",
4
4
  "description": "Jaypie MCP",
5
5
  "repository": {
6
6
  "type": "git",
@@ -0,0 +1,17 @@
1
+ ---
2
+ version: 1.2.70
3
+ date: 2026-07-03
4
+ summary: Add sponsor-first constructName helper
5
+ ---
6
+
7
+ ## Features
8
+
9
+ - Added `constructName(name, opts?)`, a new helper alongside the existing
10
+ `constructEnvName`. Generates sponsor-first names
11
+ (`{sponsor}-{env}-{key}-{name}-{nonce}`) matching `constructStackName`'s
12
+ segment order, honors `process.env.PROJECT_SPONSOR` as the default sponsor
13
+ segment, and accepts a `sponsor` override alongside `env`/`key`/`nonce`
14
+ (#408).
15
+ - `constructEnvName` is unchanged (no sponsor segment, no rename/deprecation)
16
+ — use `constructName` when a sponsor-qualified, globally-unique name is
17
+ needed.