@yawlabs/lemonsqueezy-mcp 0.10.2 → 0.10.4
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 +12 -0
- package/dist/index.js +7 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
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.4] -- 2026-05-16
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- **GitHub release notes now come from `CHANGELOG.md`, not just commit subjects.** `release.sh` step 6 extracts the section between `## [X.Y.Z] -- ...` and the next `## [` and passes that body to `gh release create --notes`. Falls back to the previous `git log --oneline` behavior if no matching section is present (or the section is whitespace-only), then to "Initial release". Removes the long-standing pattern of single-line "- vX.Y.Z" release bodies on the GitHub releases page (every 0.10.x release until this one).
|
|
10
|
+
|
|
11
|
+
## [0.10.3] -- 2026-05-16
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- **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)`.
|
|
16
|
+
|
|
5
17
|
## [0.10.2] -- 2026-05-16
|
|
6
18
|
|
|
7
19
|
### 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.
|
|
32782
|
+
var version2 = true ? "0.10.4" : (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
|
-
|
|
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