Skip to content

Conversation

@depfu
Copy link
Contributor

@depfu depfu bot commented Jan 10, 2026

Here is everything you need to know about this upgrade. Please take a good look at what changed and the test results before merging this pull request.

What changed?

✳️ emnapi (1.7.1 → 1.8.1) · Repo

Release Notes

1.8.1

What's Changed

Full Changelog: v1.8.0...v1.8.1

1.8.0

What's Changed

Full Changelog: v1.7.1...v1.8.0

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by 4 commits:


Depfu Status

Depfu will automatically keep this PR conflict-free, as long as you don't add any commits to this branch yourself. You can also trigger a rebase manually by commenting with @depfu rebase.

All Depfu comment commands
@​depfu rebase
Rebases against your default branch and redoes this update
@​depfu recreate
Recreates this PR, overwriting any edits that you've made to it
@​depfu merge
Merges this PR once your tests are passing and conflicts are resolved
@​depfu cancel merge
Cancels automatic merging of this PR
@​depfu close
Closes this PR and deletes the branch
@​depfu reopen
Restores the branch and reopens this PR (if it's closed)
@​depfu pause
Ignores all future updates for this dependency and closes this PR
@​depfu pause [minor|major]
Ignores all future minor/major updates for this dependency and closes this PR
@​depfu resume
Future versions of this dependency will create PRs again (leaves this PR as is)

@depfu depfu bot requested a review from a team as a code owner January 10, 2026 14:00
@depfu depfu bot added the depfu label Jan 10, 2026
@coderabbitai
Copy link

coderabbitai bot commented Jan 10, 2026

Walkthrough

The pull request updates the emnapi development dependency from version 1.7.1 to 1.8.1 in the crates/node/package.json file. This is a minor version bump that does not introduce any changes to existing functionality, control flow, or public API declarations. The change consists of a single line modification.

🚥 Pre-merge checks | ✅ 2
✅ Passed checks (2 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and concisely summarizes the main change: updating emnapi from version 1.7.1 to 1.8.1, which matches the changeset exactly.
Description check ✅ Passed The description provides comprehensive information about the dependency upgrade, including release notes, commit details, and relevant changelog information for both v1.8.1 and v1.8.0.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.


Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Fix all issues with AI agents
In @crates/node/package.json:
- Around line 35-39: The lockfile is out of sync with package.json: update
pnpm-lock.yaml so the emnapi bump to "1.8.1" is reflected (including resolved
packages @emnapi/runtime and @emnapi/core moving from 1.5.0 to 1.8.1). Run pnpm
install (from the package.json location or repo root) to regenerate
pnpm-lock.yaml, verify the lockfile now pins @emnapi/runtime and @emnapi/core to
1.8.1, and commit the updated pnpm-lock.yaml alongside the package.json change.
📜 Review details

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 7971167 and 984e779.

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (1)
  • crates/node/package.json
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (7)
  • GitHub Check: Linux / postcss
  • GitHub Check: Linux / cli
  • GitHub Check: Linux / upgrade
  • GitHub Check: Linux / vite
  • GitHub Check: Linux
  • GitHub Check: macOS
  • GitHub Check: Windows

Comment on lines 35 to 39
"devDependencies": {
"@napi-rs/cli": "3.4.1",
"@napi-rs/wasm-runtime": "^1.1.1",
"emnapi": "1.7.1"
"emnapi": "1.8.1"
},
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

# Check if pnpm-lock.yaml exists
if fd -H '^pnpm-lock\.yaml$' 2>/dev/null | head -1; then
  echo "==> pnpm-lock.yaml found"
  lockfile=$(fd -H '^pnpm-lock\.yaml$' 2>/dev/null | head -1)
  echo "Checking for emnapi references..."
  rg -n "emnapi" "$lockfile" -A 2 -B 2 | head -100
else
  echo "No pnpm-lock.yaml found in repository"
fi

Repository: tailwindlabs/tailwindcss

Length of output: 1410


🌐 Web query:

emnapi 1.8.1 release notes Node.js compatibility

💡 Result:

emnapi 1.8.1 (the @emnapi/runtime package exists at v1.8.1) requires Node.js >= v16.15.0 at runtime; the repository itself lists Node.js >= v22.12.0 for development. [1][2]

Sources:

  • emnapi README (prerequisites: "Node.js >= v22.12.0 for developing..., >= v16.15.0 for user runtime"). [1]
  • @emnapi/runtime v1.8.1 package listing (jsDelivr). [2]

Lockfile update required: pnpm-lock.yaml has not been updated to match the package.json emnapi version.

The pnpm-lock.yaml in crates/node/npm/wasm32-wasi/ currently resolves to @emnapi/runtime@1.5.0 and @emnapi/core@1.5.0, but package.json specifies "emnapi": "1.8.1". The lockfile must be regenerated to reflect the version bump.

emnapi 1.8.1 is compatible with Node >=20 (requires only >=16.15.0), so the dependency upgrade itself is sound; however, the lockfile mismatch must be resolved before merging.

🤖 Prompt for AI Agents
In @crates/node/package.json around lines 35 - 39, The lockfile is out of sync
with package.json: update pnpm-lock.yaml so the emnapi bump to "1.8.1" is
reflected (including resolved packages @emnapi/runtime and @emnapi/core moving
from 1.5.0 to 1.8.1). Run pnpm install (from the package.json location or repo
root) to regenerate pnpm-lock.yaml, verify the lockfile now pins @emnapi/runtime
and @emnapi/core to 1.8.1, and commit the updated pnpm-lock.yaml alongside the
package.json change.

@depfu
Copy link
Contributor Author

depfu bot commented Jan 10, 2026

Sorry, but the merge failed with:

At least 1 approving review is required by reviewers with write access.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant