From 79b8b0c96e22e2f6ef54117453498a82da43691c Mon Sep 17 00:00:00 2001 From: Jason Brill Date: Tue, 16 Dec 2025 11:13:13 -0500 Subject: [PATCH 1/3] deps: update lnc-core to v0.3.5-alpha --- package.json | 2 +- yarn.lock | 30 ++++++++++++++++++++++-------- 2 files changed, 23 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index ac2bcdd..c1a0a3e 100644 --- a/package.json +++ b/package.json @@ -59,7 +59,7 @@ "webpack-cli": "5.1.4" }, "dependencies": { - "@lightninglabs/lnc-core": "0.3.4-alpha", + "@lightninglabs/lnc-core": "0.3.5-alpha", "crypto-js": "4.2.0" }, "browser": { diff --git a/yarn.lock b/yarn.lock index d830370..a072d25 100644 --- a/yarn.lock +++ b/yarn.lock @@ -355,10 +355,10 @@ "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" -"@lightninglabs/lnc-core@0.3.4-alpha": - version "0.3.4-alpha" - resolved "https://registry.yarnpkg.com/@lightninglabs/lnc-core/-/lnc-core-0.3.4-alpha.tgz#0e8cc872c3739158a8480317e76c35679b5d0f72" - integrity sha512-S/L1gNHqF8jW3DVXBvzVX8zyJO4O2FRfKFNE5U3rtRBaczX+fSVpK3yz/CdgBqhBzyZ+1un6nVZE/tftnfjQwA== +"@lightninglabs/lnc-core@0.3.5-alpha": + version "0.3.5-alpha" + resolved "https://registry.yarnpkg.com/@lightninglabs/lnc-core/-/lnc-core-0.3.5-alpha.tgz#7874d21eeb1bd01254d96fe5e37da7f06915e810" + integrity sha512-20rOA3ZiPxYRCppqLBxXEgaLCoSX4B5L1GTUrvuCaZAU29Ua0Yc1sJrd/A67vNxLOxxWFPkK0jKcSem3ZaGQLQ== "@nodelib/fs.scandir@2.1.5": version "2.1.5" @@ -3203,8 +3203,16 @@ stream-http@^3.2.0: readable-stream "^3.6.0" xtend "^4.0.2" -"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0: - name string-width-cjs +"string-width-cjs@npm:string-width@^4.2.0": + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string-width@^4.1.0: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -3236,8 +3244,14 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: - name strip-ansi-cjs +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== From 464e428256a75e8d7bb7bad6a4bd777589f64ed4 Mon Sep 17 00:00:00 2001 From: Jason Brill Date: Tue, 16 Dec 2025 13:45:24 -0500 Subject: [PATCH 2/3] deps: update wasm to v0.3.5-alpha --- lib/lnc.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lnc.ts b/lib/lnc.ts index 148f92a..be8628c 100644 --- a/lib/lnc.ts +++ b/lib/lnc.ts @@ -13,7 +13,7 @@ import { WasmManager } from './wasmManager'; /** The default values for the LncConfig options */ export const DEFAULT_CONFIG = { - wasmClientCode: 'https://lightning.engineering/lnc-v0.3.4-alpha.wasm', + wasmClientCode: 'https://lightning.engineering/lnc-v0.3.5-alpha.wasm', namespace: 'default', serverHost: 'mailbox.terminal.lightning.today:443' } as Required; From 29f0a5be580ffd2aae7d66b23561846610b2a799 Mon Sep 17 00:00:00 2001 From: Jason Brill Date: Fri, 19 Dec 2025 15:11:58 -0300 Subject: [PATCH 3/3] lnc-web: bump version to v0.3.5-alpha --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c1a0a3e..4430d7d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lightninglabs/lnc-web", - "version": "0.3.4-alpha", + "version": "0.3.5-alpha", "description": "Lightning Node Connect npm module for web", "main": "./dist/index.js", "types": "./dist/index.d.ts",