@yawlabs/lemonsqueezy-mcp 0.14.0 → 0.14.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/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## [Unreleased]
4
+
5
+ ## [0.14.1] — 2026-09-14
6
+
7
+ ### Changed
8
+
9
+ - npm and MCP Registry listing metadata: bugs URL, core keywords, and server.json title/repository/websiteUrl
10
+ - **`release.sh` writes a `## [x.y.z]` changelog entry for every release and takes the GitHub release notes from it.** `[Unreleased]` is promoted when it has content, with a fresh empty `[Unreleased]` heading left above the new section for the next change; when it is empty or absent, the section is generated from the commit subjects since the previous tag instead of being skipped. The Keep-a-Changelog link references at the bottom are moved along with it (`[Unreleased]` compares from the new tag and the version gets its own compare link), and the release fails when the entry is missing for any reason. Before this, a release with nothing under `[Unreleased]` got no entry at all -- 0.14.0 below is backfilled -- and its GitHub release page showed raw commit subjects.
11
+
12
+ ## [0.14.0] — 2026-09-13
13
+
14
+ No runtime changes: nothing under `src/` changed and no dependency moved. This release is release tooling and docs. This entry was backfilled -- `[Unreleased]` was empty when 0.14.0 was cut, so its GitHub release notes fell back to bare commit subjects.
15
+
16
+ ### Changed
17
+
18
+ - **`release.sh` waits for npm to serve the new version before publishing to the MCP Registry.** `npm publish` returns as soon as the registry accepts the tarball, but the version is not yet readable from npm's CDN-backed read path, and the MCP Registry validates a publish by reading it -- so a registry publish run straight after `npm publish` could fail with `version 'X' was not found (status: 404)` and the release needed a second invocation (ssh-mcp v0.15.3 failed that way, and aws-mcp did on three consecutive releases). Step 7 now polls the exact URL the registry's npm validator builds, `https://registry.npmjs.org/@yawlabs%2Flemonsqueezy-mcp/<version>` with the scope slash escaped the way Go's `url.PathEscape` does, using `curl` rather than `npm view`, whose 5-minute metadata cache can outlast the condition. A timeout warns rather than fails, so `mcp-publisher` still reports its own precise error; `SKIP_NPM_WAIT=1` bypasses the wait, `NPM_WAIT_TIMEOUT_S` retunes the 300s default, and a missing `curl` skips it with a warning (#50).
19
+ - **README:** the X follow badge moved from the top of the page to the bottom, so the description leads on npm and GitHub (#51).
20
+
3
21
  ## [0.13.5] — 2026-09-13
4
22
 
5
23
  ### Fixed
@@ -610,7 +628,11 @@ Hardening pass for unattended automation against live billing flows.
610
628
 
611
629
  Initial release. 59 tools covering all 17 LemonSqueezy API resources.
612
630
 
613
- [Unreleased]: https://github.com/YawLabs/lemonsqueezy-mcp/compare/v0.13.3...HEAD
631
+ [Unreleased]: https://github.com/YawLabs/lemonsqueezy-mcp/compare/v0.14.1...HEAD
632
+ [0.14.1]: https://github.com/YawLabs/lemonsqueezy-mcp/compare/v0.14.0...v0.14.1
633
+ [0.14.0]: https://github.com/YawLabs/lemonsqueezy-mcp/compare/v0.13.5...v0.14.0
634
+ [0.13.5]: https://github.com/YawLabs/lemonsqueezy-mcp/compare/v0.13.4...v0.13.5
635
+ [0.13.4]: https://github.com/YawLabs/lemonsqueezy-mcp/compare/v0.13.3...v0.13.4
614
636
  [0.13.3]: https://github.com/YawLabs/lemonsqueezy-mcp/compare/v0.13.2...v0.13.3
615
637
  [0.13.2]: https://github.com/YawLabs/lemonsqueezy-mcp/compare/v0.13.1...v0.13.2
616
638
  [0.13.1]: https://github.com/YawLabs/lemonsqueezy-mcp/compare/v0.13.0...v0.13.1
package/dist/index.js CHANGED
@@ -33771,7 +33771,7 @@ function readAuditLogResource(uri) {
33771
33771
  }
33772
33772
 
33773
33773
  // src/index.ts
33774
- var version2 = true ? "0.14.0" : createRequire(import.meta.url)("../package.json").version;
33774
+ var version2 = true ? "0.14.1" : createRequire(import.meta.url)("../package.json").version;
33775
33775
  var subcommand = process.argv[2];
33776
33776
  if (subcommand === "version" || subcommand === "--version") {
33777
33777
  console.log(version2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yawlabs/lemonsqueezy-mcp",
3
- "version": "0.14.0",
3
+ "version": "0.14.1",
4
4
  "mcpName": "io.github.YawLabs/lemonsqueezy-mcp",
5
5
  "description": "Lemon Squeezy MCP server: stores, orders, subscriptions, license keys, refunds, and webhooks.",
6
6
  "license": "MIT",
@@ -9,6 +9,9 @@
9
9
  "type": "git",
10
10
  "url": "git+https://github.com/YawLabs/lemonsqueezy-mcp.git"
11
11
  },
12
+ "bugs": {
13
+ "url": "https://github.com/YawLabs/lemonsqueezy-mcp/issues"
14
+ },
12
15
  "keywords": [
13
16
  "lemonsqueezy",
14
17
  "lemon-squeezy",
@@ -27,7 +30,9 @@
27
30
  "licensing",
28
31
  "checkout",
29
32
  "webhooks",
30
- "billing"
33
+ "billing",
34
+ "cursor",
35
+ "ai-agents"
31
36
  ],
32
37
  "type": "module",
33
38
  "main": "dist/index.js",