@leadbay/mcp 0.35.0 → 0.35.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 CHANGED
@@ -1,5 +1,26 @@
1
1
  # Changelog — @leadbay/mcp
2
2
 
3
+ ## 0.35.1 — 2026-09-08
4
+
5
+ Release-pipeline only. No source change, no behaviour change: `packages/core`
6
+ and `packages/mcp` are byte-identical to 0.35.0. This version exists because
7
+ the MCP Registry can only be reached by a tag push, and the two `release.yml`
8
+ bugs fixed in #208 had to ship before a tag could carry it.
9
+
10
+ **What was broken.** 0.35.0 published to npm and then the workflow died
11
+ before creating the GitHub Release: the release-notes pipeline ended in
12
+ `head -60` under `set -euo pipefail`, the 0.35.0 changelog section is 115
13
+ lines, so `head` closed the pipe, GNU sed failed its final flush and the step
14
+ exited 4. No Release meant no `.dxt`/`.mcpb`, and `Publish to MCP Registry`
15
+ was skipped for `needs:`-ing the job that failed. Separately, on 0.34.1 the
16
+ registry job did run and the registry refused it — it re-checks npm itself and
17
+ got a 404 for a version published seconds earlier. Between the two, the
18
+ directory listing sat at 0.34.0 and the desktop bundle at 0.34.x while npm and
19
+ the hosted server were on 0.35.0.
20
+
21
+ 0.35.0's Release and its four assets were created by hand once #208 landed;
22
+ this release is what carries the fix through the pipeline itself.
23
+
3
24
  ## 0.35.0 — 2026-09-02
4
25
 
5
26
  The MCP no longer keeps any record of the jobs it starts (product#4005,
package/dist/bin.js CHANGED
@@ -28045,7 +28045,7 @@ var OAUTH_BASE_URLS = {
28045
28045
  fr: "https://staging.api.leadbay.app"
28046
28046
  }
28047
28047
  };
28048
- var VERSION = "0.35.0";
28048
+ var VERSION = "0.35.1";
28049
28049
  var HELP = `
28050
28050
  leadbay-mcp ${VERSION} \u2014 Leadbay Model Context Protocol server
28051
28051
 
@@ -25410,7 +25410,7 @@ function parseWriteEnv(env = process.env) {
25410
25410
  }
25411
25411
 
25412
25412
  // src/http-server.ts
25413
- var VERSION = true ? "0.35.0" : "0.0.0-dev";
25413
+ var VERSION = true ? "0.35.1" : "0.0.0-dev";
25414
25414
  var PORT = Number(process.env.PORT ?? 8080);
25415
25415
  var HOST = process.env.HOST ?? "0.0.0.0";
25416
25416
  var logger = {
@@ -1805,7 +1805,7 @@ var init_installer_gui = __esm({
1805
1805
  init_install_dxt();
1806
1806
  init_install_shared();
1807
1807
  init_oauth();
1808
- VERSION = true ? "0.35.0" : "0.0.0-dev";
1808
+ VERSION = true ? "0.35.1" : "0.0.0-dev";
1809
1809
  MESSAGES = {
1810
1810
  en: {
1811
1811
  installer: {
@@ -1068,7 +1068,7 @@ async function oauthLogin(opts) {
1068
1068
  }
1069
1069
 
1070
1070
  // installer/installer-gui.ts
1071
- var VERSION = true ? "0.35.0" : "0.0.0-dev";
1071
+ var VERSION = true ? "0.35.1" : "0.0.0-dev";
1072
1072
  var MESSAGES = {
1073
1073
  en: {
1074
1074
  installer: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leadbay/mcp",
3
- "version": "0.35.0",
3
+ "version": "0.35.1",
4
4
  "mcpName": "io.github.leadbay/leadbay-mcp",
5
5
  "description": "Model Context Protocol (MCP) server for Leadbay — AI lead discovery, qualification, and enrichment for Claude Desktop, Cursor, and Claude Code.",
6
6
  "type": "module",