@forgesworn/moneyer 0.8.0 → 0.8.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,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.8.1 - 2026-08-30
4
+
5
+ **Fix: `requireComment` is optional on `MoneyerConfig`.** 0.8.0 added it as a
6
+ required field, which is a breaking change for any consumer constructing a
7
+ config by hand - their `tsc` fails on a flag they never asked for. Absent now
8
+ means off, which is also what LUD-25 still asks for. Caught by notecase's
9
+ typecheck; moneyer's own tests could not see it, since nothing here omits the
10
+ field.
11
+
3
12
  ## 0.8.0 - 2026-08-30
4
13
 
5
14
  **`MONEYER_REQUIRE_COMMENT` (default off).** Refuses a mint quote that names
package/dist/config.d.ts CHANGED
@@ -32,7 +32,7 @@ export type MoneyerConfig = {
32
32
  maxSendableMsat: number;
33
33
  minMintMsat: number;
34
34
  mintFee: MintFee | null;
35
- requireComment: boolean;
35
+ requireComment?: boolean;
36
36
  roundFeeToSat?: boolean;
37
37
  signingKey?: string;
38
38
  previousSigningPubkeys?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forgesworn/moneyer",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "An LNURLcash (LUD-25) mint - strikes Lightning bearer notes. Independent implementation, cln/lnd funding sources, SQLite, zero HTTP framework.",
5
5
  "author": "TheCryptoDonkey",
6
6
  "license": "MIT",