@yawlabs/mcp 0.66.0 → 0.66.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 +1 -1
package/dist/index.js
CHANGED
|
@@ -4004,7 +4004,7 @@ async function runUpgrade(opts = {}) {
|
|
|
4004
4004
|
return { exitCode: 3, lines };
|
|
4005
4005
|
}
|
|
4006
4006
|
function readCurrentVersion() {
|
|
4007
|
-
return true ? "0.66.
|
|
4007
|
+
return true ? "0.66.1" : "dev";
|
|
4008
4008
|
}
|
|
4009
4009
|
|
|
4010
4010
|
// src/usage-hints.ts
|
|
@@ -4066,7 +4066,7 @@ function selectFlakyNamespaces(entries, limit) {
|
|
|
4066
4066
|
}
|
|
4067
4067
|
|
|
4068
4068
|
// src/doctor-cmd.ts
|
|
4069
|
-
var VERSION = true ? "0.66.
|
|
4069
|
+
var VERSION = true ? "0.66.1" : "dev";
|
|
4070
4070
|
function isPersistenceDisabled(env) {
|
|
4071
4071
|
const raw = env.YAW_MCP_DISABLE_PERSISTENCE;
|
|
4072
4072
|
return raw !== void 0 && raw !== "" && (raw === "1" || raw.toLowerCase() === "true");
|
|
@@ -6874,7 +6874,7 @@ function defaultSpawn2(cmd, args) {
|
|
|
6874
6874
|
async function maybeAutoUpgrade(deps = {}) {
|
|
6875
6875
|
const optOut = process.env.YAW_MCP_AUTO_UPGRADE;
|
|
6876
6876
|
if (optOut === "0" || optOut?.toLowerCase() === "false") return;
|
|
6877
|
-
const current = deps.currentVersion ?? (true ? "0.66.
|
|
6877
|
+
const current = deps.currentVersion ?? (true ? "0.66.1" : "dev");
|
|
6878
6878
|
if (current === "dev") return;
|
|
6879
6879
|
const method = (deps.isSeaImpl ? await deps.isSeaImpl() : await detectSea()) ? "binary" : detectInstallMethod(deps.argvPath ?? process.argv[1]);
|
|
6880
6880
|
const latest = await (deps.fetchLatestImpl ?? fetchLatestVersion2)();
|
|
@@ -9822,7 +9822,7 @@ function categorizeSpawnError(err) {
|
|
|
9822
9822
|
}
|
|
9823
9823
|
async function connectToUpstream(config, onDisconnect, onListChanged) {
|
|
9824
9824
|
const client = new Client(
|
|
9825
|
-
{ name: "yaw-mcp", version: true ? "0.66.
|
|
9825
|
+
{ name: "yaw-mcp", version: true ? "0.66.1" : "dev" },
|
|
9826
9826
|
{ capabilities: {} }
|
|
9827
9827
|
);
|
|
9828
9828
|
let transport;
|
|
@@ -10157,7 +10157,7 @@ var ConnectServer = class _ConnectServer {
|
|
|
10157
10157
|
this.apiUrl = apiUrl5;
|
|
10158
10158
|
this.token = token5;
|
|
10159
10159
|
this.server = new Server(
|
|
10160
|
-
{ name: "yaw-mcp", version: true ? "0.66.
|
|
10160
|
+
{ name: "yaw-mcp", version: true ? "0.66.1" : "dev" },
|
|
10161
10161
|
{
|
|
10162
10162
|
capabilities: {
|
|
10163
10163
|
tools: { listChanged: true },
|
|
@@ -13845,7 +13845,7 @@ if (subcommand === "compliance") {
|
|
|
13845
13845
|
`);
|
|
13846
13846
|
process.exit(0);
|
|
13847
13847
|
} else if (subcommand === "--version" || subcommand === "-V") {
|
|
13848
|
-
process.stdout.write(`yaw-mcp ${true ? "0.66.
|
|
13848
|
+
process.stdout.write(`yaw-mcp ${true ? "0.66.1" : "dev"}
|
|
13849
13849
|
`);
|
|
13850
13850
|
process.exit(0);
|
|
13851
13851
|
} else if (subcommand && !subcommand.startsWith("-")) {
|
package/package.json
CHANGED