From 8deddcbeb71d1aa7bb6c3ec168e81c8f30a8e815 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 7 Sep 2026 04:24:19 -0700 Subject: [PATCH] chore: prepare 0.8.0 notes and refresh pnpm setup --- .github/workflows/ci.yml | 4 ++-- .github/workflows/crabbox-hydrate.yml | 2 +- .github/workflows/release.yml | 2 +- CHANGELOG.md | 9 ++++++++- package.json | 2 +- 5 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ba1c0e..f9ff298 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v7.0.1 - - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + - uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - uses: actions/setup-node@v7 with: node-version: 26 @@ -31,7 +31,7 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v7.0.1 - - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + - uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - uses: actions/setup-node@v7 with: node-version: 26 diff --git a/.github/workflows/crabbox-hydrate.yml b/.github/workflows/crabbox-hydrate.yml index 816f1d9..cec8157 100644 --- a/.github/workflows/crabbox-hydrate.yml +++ b/.github/workflows/crabbox-hydrate.yml @@ -42,7 +42,7 @@ jobs: with: ref: ${{ inputs.ref || github.ref }} - - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + - uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - uses: actions/setup-node@v7 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a6f0222..1073276 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -61,7 +61,7 @@ jobs: fi - name: Set up pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Set up Node uses: actions/setup-node@v7 diff --git a/CHANGELOG.md b/CHANGELOG.md index 709d0e0..0c2a31e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Changelog -## 0.7.4 - Unreleased +## 0.8.0 - Unreleased + +**Highlights:** Opt-in HTTP context connects Node callers and Rust handlers during review. + +- Added `map --link-http caller:backend` and `review --link-http caller:backend` for bounded, method-aware HTTP candidate context, with ambiguity checks and unchanged default feature records, thanks @Tanmay-008. +- Fixed source packaging with pnpm 12 by using the portable `pnpm run build` prepack command. +- Updated the pnpm GitHub Actions setup to 6.1.0. +- Added shared-host scheduling headroom to timeout regression tests while retaining explicit bounded-return checks. ## 0.7.3 - 2026-09-05 diff --git a/package.json b/package.json index 11ea594..dd50fb4 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "type": "module", "scripts": { "build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.build.json", - "prepack": "pnpm -s build", + "prepack": "pnpm run build", "typecheck": "tsc -p tsconfig.json --noEmit", "lint": "oxlint . --config oxlint.json", "format": "oxfmt --write .",