@yawlabs/lemonsqueezy-mcp 0.10.2 → 0.10.3

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
@@ -2,6 +2,12 @@
2
2
 
3
3
  All notable changes to `@yawlabs/lemonsqueezy-mcp` are documented here. The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and versioning follows [SEMVER.md](./SEMVER.md).
4
4
 
5
+ ## [0.10.3] -- 2026-05-16
6
+
7
+ ### Fixed
8
+
9
+ - **Startup env-var parse errors now print a single line, not a stack trace.** The 0.10.1 eager-parse of `LEMONSQUEEZY_DISABLE_CLASSES` / `LEMONSQUEEZY_RATE_LIMIT_PER_CLASS` / `LEMONSQUEEZY_MAX_REFUND_AMOUNT_CENTS` threw an uncaught `Error`, so operators saw Node's stack dump before the helpful message. `src/index.ts` now wraps the call in try/catch and exits 1 with just the error message -- e.g. `LEMONSQUEEZY_DISABLE_CLASSES contains unknown class "mony" (expected one of: read, pii, mutate, money, recurring, key, webhook)`.
10
+
5
11
  ## [0.10.2] -- 2026-05-16
6
12
 
7
13
  ### Changed
package/dist/index.js CHANGED
@@ -32779,13 +32779,18 @@ function readAuditLogResource(uri) {
32779
32779
  }
32780
32780
 
32781
32781
  // src/index.ts
32782
- var version2 = true ? "0.10.2" : (await null).createRequire(import.meta.url)("../package.json").version;
32782
+ var version2 = true ? "0.10.3" : (await null).createRequire(import.meta.url)("../package.json").version;
32783
32783
  var subcommand = process.argv[2];
32784
32784
  if (subcommand === "version" || subcommand === "--version") {
32785
32785
  console.log(version2);
32786
32786
  process.exit(0);
32787
32787
  }
32788
- loadGuardrailOptions();
32788
+ try {
32789
+ loadGuardrailOptions();
32790
+ } catch (err) {
32791
+ console.error(err instanceof Error ? err.message : String(err));
32792
+ process.exit(1);
32793
+ }
32789
32794
  var allTools = [
32790
32795
  ...userTools,
32791
32796
  ...storeTools,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yawlabs/lemonsqueezy-mcp",
3
- "version": "0.10.2",
3
+ "version": "0.10.3",
4
4
  "mcpName": "io.github.YawLabs/lemonsqueezy-mcp",
5
5
  "description": "LemonSqueezy MCP server for managing your store from AI assistants",
6
6
  "license": "MIT",