From 57c60b41691830781d464830c6626cc3c1952606 Mon Sep 17 00:00:00 2001 From: Sean Zellmer Date: Tue, 14 Apr 2026 17:48:48 -0500 Subject: [PATCH 1/2] Add `publish` workflow --- .github/workflows/publish.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..75dd51d --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,17 @@ +name: Publish +on: + push: + tags: + - v* +permissions: + id-token: write + contents: write +jobs: + publish: + runs-on: ubuntu-latest + environment: + name: npm + name: Publish + steps: + - uses: holepunchto/actions/node-base@v1 + - uses: holepunchto/actions/publish@v1 From 5e0f891654dc8bb0fc081ff388b7fdd6c5a8d870 Mon Sep 17 00:00:00 2001 From: Sean Zellmer Date: Tue, 5 May 2026 11:54:46 -0500 Subject: [PATCH 2/2] Bump `compact-encoding` to `3.0.0` --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b467964..cc4d98a 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "dependencies": { "b4a": "^1.6.1", "bare-events": "^2.5.0", - "compact-encoding": "^2.18.0", + "compact-encoding": "^3.0.0", "hypercore-crypto": "^3.6.1", "hypercore-errors": "^1.1.1", "mutexify": "^1.4.0",