@yawlabs/mcph 0.57.0 → 0.57.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/dist/index.js +6 -6
- package/package.json +2 -1
package/dist/index.js
CHANGED
|
@@ -2785,7 +2785,7 @@ function selectFlakyNamespaces(entries, limit) {
|
|
|
2785
2785
|
}
|
|
2786
2786
|
|
|
2787
2787
|
// src/doctor-cmd.ts
|
|
2788
|
-
var VERSION = true ? "0.57.
|
|
2788
|
+
var VERSION = true ? "0.57.1" : "dev";
|
|
2789
2789
|
async function runDoctor(opts = {}) {
|
|
2790
2790
|
if (opts.json) return runDoctorJson(opts);
|
|
2791
2791
|
const lines = [];
|
|
@@ -3701,7 +3701,7 @@ Or re-run with --run to upgrade in place.`);
|
|
|
3701
3701
|
return { exitCode: 3, lines };
|
|
3702
3702
|
}
|
|
3703
3703
|
function readCurrentVersion() {
|
|
3704
|
-
return true ? "0.57.
|
|
3704
|
+
return true ? "0.57.1" : "dev";
|
|
3705
3705
|
}
|
|
3706
3706
|
|
|
3707
3707
|
// src/auto-upgrade.ts
|
|
@@ -3749,7 +3749,7 @@ function defaultSpawn2(cmd, args) {
|
|
|
3749
3749
|
async function maybeAutoUpgrade(deps = {}) {
|
|
3750
3750
|
const optOut = process.env.MCPH_AUTO_UPGRADE;
|
|
3751
3751
|
if (optOut === "0" || optOut?.toLowerCase() === "false") return;
|
|
3752
|
-
const current = deps.currentVersion ?? (true ? "0.57.
|
|
3752
|
+
const current = deps.currentVersion ?? (true ? "0.57.1" : "dev");
|
|
3753
3753
|
if (current === "dev") return;
|
|
3754
3754
|
const method = detectInstallMethod(deps.argvPath ?? process.argv[1]);
|
|
3755
3755
|
const latest = await (deps.fetchLatestImpl ?? fetchLatestVersion2)();
|
|
@@ -5926,7 +5926,7 @@ function categorizeSpawnError(err) {
|
|
|
5926
5926
|
}
|
|
5927
5927
|
async function connectToUpstream(config, onDisconnect, onListChanged) {
|
|
5928
5928
|
const client = new Client(
|
|
5929
|
-
{ name: "mcph", version: true ? "0.57.
|
|
5929
|
+
{ name: "mcph", version: true ? "0.57.1" : "dev" },
|
|
5930
5930
|
{ capabilities: {} }
|
|
5931
5931
|
);
|
|
5932
5932
|
let transport;
|
|
@@ -6234,7 +6234,7 @@ var ConnectServer = class _ConnectServer {
|
|
|
6234
6234
|
this.apiUrl = apiUrl6;
|
|
6235
6235
|
this.token = token6;
|
|
6236
6236
|
this.server = new Server(
|
|
6237
|
-
{ name: "mcph", version: true ? "0.57.
|
|
6237
|
+
{ name: "mcph", version: true ? "0.57.1" : "dev" },
|
|
6238
6238
|
{
|
|
6239
6239
|
capabilities: {
|
|
6240
6240
|
tools: { listChanged: true },
|
|
@@ -8656,7 +8656,7 @@ if (subcommand === "compliance") {
|
|
|
8656
8656
|
`);
|
|
8657
8657
|
process.exit(0);
|
|
8658
8658
|
} else if (subcommand === "--version" || subcommand === "-V") {
|
|
8659
|
-
process.stdout.write(`mcph ${true ? "0.57.
|
|
8659
|
+
process.stdout.write(`mcph ${true ? "0.57.1" : "dev"}
|
|
8660
8660
|
`);
|
|
8661
8661
|
process.exit(0);
|
|
8662
8662
|
} else if (subcommand && !subcommand.startsWith("-")) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yawlabs/mcph",
|
|
3
|
-
"version": "0.57.
|
|
3
|
+
"version": "0.57.1",
|
|
4
|
+
"mcpName": "io.github.YawLabs/mcph",
|
|
4
5
|
"description": "mcp.hosting — one install, all your MCP servers, managed from the cloud",
|
|
5
6
|
"license": "UNLICENSED",
|
|
6
7
|
"author": "Yaw Labs <support@mcp.hosting> (https://mcp.hosting)",
|