@yawlabs/mcph 0.52.0 → 0.53.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.
Files changed (2) hide show
  1. package/dist/index.js +6 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1668,7 +1668,7 @@ function selectFlakyNamespaces(entries, limit) {
1668
1668
  }
1669
1669
 
1670
1670
  // src/doctor-cmd.ts
1671
- var VERSION = true ? "0.52.0" : "dev";
1671
+ var VERSION = true ? "0.53.0" : "dev";
1672
1672
  async function runDoctor(opts = {}) {
1673
1673
  if (opts.json) return runDoctorJson(opts);
1674
1674
  const lines = [];
@@ -3109,7 +3109,7 @@ Or re-run with --run to upgrade in place.`);
3109
3109
  return { exitCode: 3, lines };
3110
3110
  }
3111
3111
  function readCurrentVersion() {
3112
- return true ? "0.52.0" : "dev";
3112
+ return true ? "0.53.0" : "dev";
3113
3113
  }
3114
3114
 
3115
3115
  // src/auto-upgrade.ts
@@ -3157,7 +3157,7 @@ function defaultSpawn2(cmd, args) {
3157
3157
  async function maybeAutoUpgrade(deps = {}) {
3158
3158
  const optOut = process.env.MCPH_AUTO_UPGRADE;
3159
3159
  if (optOut === "0" || optOut?.toLowerCase() === "false") return;
3160
- const current = deps.currentVersion ?? (true ? "0.52.0" : "dev");
3160
+ const current = deps.currentVersion ?? (true ? "0.53.0" : "dev");
3161
3161
  if (current === "dev") return;
3162
3162
  const method = detectInstallMethod(deps.argvPath ?? process.argv[1]);
3163
3163
  const latest = await (deps.fetchLatestImpl ?? fetchLatestVersion2)();
@@ -5334,7 +5334,7 @@ function categorizeSpawnError(err) {
5334
5334
  }
5335
5335
  async function connectToUpstream(config, onDisconnect, onListChanged) {
5336
5336
  const client = new Client(
5337
- { name: "mcph", version: true ? "0.52.0" : "dev" },
5337
+ { name: "mcph", version: true ? "0.53.0" : "dev" },
5338
5338
  { capabilities: {} }
5339
5339
  );
5340
5340
  let transport;
@@ -5642,7 +5642,7 @@ var ConnectServer = class _ConnectServer {
5642
5642
  this.apiUrl = apiUrl6;
5643
5643
  this.token = token6;
5644
5644
  this.server = new Server(
5645
- { name: "mcph", version: true ? "0.52.0" : "dev" },
5645
+ { name: "mcph", version: true ? "0.53.0" : "dev" },
5646
5646
  {
5647
5647
  capabilities: {
5648
5648
  tools: { listChanged: true },
@@ -8040,7 +8040,7 @@ if (subcommand === "compliance") {
8040
8040
  `);
8041
8041
  process.exit(0);
8042
8042
  } else if (subcommand === "--version" || subcommand === "-V") {
8043
- process.stdout.write(`mcph ${true ? "0.52.0" : "dev"}
8043
+ process.stdout.write(`mcph ${true ? "0.53.0" : "dev"}
8044
8044
  `);
8045
8045
  process.exit(0);
8046
8046
  } else if (subcommand && !subcommand.startsWith("-")) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yawlabs/mcph",
3
- "version": "0.52.0",
3
+ "version": "0.53.0",
4
4
  "description": "mcp.hosting — one install, all your MCP servers, managed from the cloud",
5
5
  "license": "UNLICENSED",
6
6
  "author": "Yaw Labs <support@mcp.hosting> (https://mcp.hosting)",