Skip to content

chore(deps): update dependency @edge-runtime/jest-environment to v4#826

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/edge-runtime-jest-environment-4.x
Open

chore(deps): update dependency @edge-runtime/jest-environment to v4#826
renovate[bot] wants to merge 1 commit intomainfrom
renovate/edge-runtime-jest-environment-4.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 20, 2025

This PR contains the following updates:

Package Change Age Confidence
@edge-runtime/jest-environment (source) 2.3.104.0.0 age confidence

Release Notes

vercel/edge-runtime (@​edge-runtime/jest-environment)

v4.0.0

Compare Source

Major Changes
Patch Changes

v3.0.4

Compare Source

Patch Changes

v3.0.3

Compare Source

Patch Changes

v3.0.2

Compare Source

Patch Changes

v3.0.1

Compare Source

Patch Changes

v3.0.0

Compare Source

Major Changes
Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@changeset-bot
Copy link

changeset-bot bot commented Jan 20, 2025

⚠️ No Changeset found

Latest commit: 25afec4

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@vercel
Copy link
Contributor

vercel bot commented Jan 20, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
vercel-storage-next-integration-test-suite Ready Ready Preview Mar 21, 2026 4:48am

Request Review

@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from b278b50 to 4a8ac40 Compare February 25, 2025 14:50
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from 4a8ac40 to 4d438e1 Compare February 27, 2025 14:56
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from 4d438e1 to b4b0089 Compare February 27, 2025 15:00
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from b4b0089 to dd72197 Compare February 28, 2025 09:24
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from dd72197 to 925a678 Compare March 3, 2025 14:26
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from 925a678 to 765cbf8 Compare March 13, 2025 14:29
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from 765cbf8 to eae3ae0 Compare March 13, 2025 14:33
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from eae3ae0 to f6c0890 Compare April 10, 2025 14:43
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from f6c0890 to 76a4be1 Compare April 10, 2025 14:48
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from 76a4be1 to b47559c Compare April 10, 2025 14:52
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from b47559c to 4eb40d1 Compare April 10, 2025 14:56
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from 4eb40d1 to f5c4930 Compare April 10, 2025 15:02
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from f5c4930 to fefe38d Compare May 2, 2025 13:55
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from fefe38d to d1ce3f7 Compare May 2, 2025 14:01
"devDependencies": {
"@changesets/cli": "2.27.11",
"@edge-runtime/jest-environment": "2.3.10",
"@edge-runtime/jest-environment": "4.0.0",
Copy link
Contributor

Choose a reason for hiding this comment

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

The updated @edge-runtime/jest-environment@4.0.0 requires Node >=18, but this package specifies engines.node: ">=14.6", creating an incompatible dependency conflict.

View Details
📝 Patch Details
diff --git a/packages/blob/package.json b/packages/blob/package.json
index f66052e..265b5eb 100644
--- a/packages/blob/package.json
+++ b/packages/blob/package.json
@@ -81,6 +81,6 @@
     "tsup": "8.4.0"
   },
   "engines": {
-    "node": ">=16.14"
+    "node": ">=18"
   }
 }
diff --git a/packages/edge-config/package.json b/packages/edge-config/package.json
index 57ade40..af7c22f 100644
--- a/packages/edge-config/package.json
+++ b/packages/edge-config/package.json
@@ -69,6 +69,6 @@
     }
   },
   "engines": {
-    "node": ">=14.6"
+    "node": ">=18"
   }
 }
diff --git a/packages/kv/package.json b/packages/kv/package.json
index 4d127f2..7228df3 100644
--- a/packages/kv/package.json
+++ b/packages/kv/package.json
@@ -63,6 +63,6 @@
     "typescript": "5.7.3"
   },
   "engines": {
-    "node": ">=14.6"
+    "node": ">=18"
   }
 }

Analysis

The package has been updated to use @edge-runtime/jest-environment@4.0.0 (line 50), which requires Node.js version >=18 according to its engine specification in pnpm-lock.yaml. However, this package declares it supports Node >=14.6 in its engines field (line 66). This creates a dependency resolution conflict where:

  1. Users with Node 14.6-17.x will be able to install the package (meets package engine requirement) but will fail when trying to install @edge-runtime/jest-environment@4.0.0 (doesn't meet dependency's engine requirement)
  2. Package managers may reject the installation entirely due to the conflicting engine requirements
  3. Tests using jest --env @edge-runtime/jest-environment (line 38) will fail on supported Node versions

This affects the test script which explicitly uses the @edge-runtime/jest-environment.


Recommendation

Either:

  1. Recommended: Update the package's Node engine requirement to "node": ">=18" to match the dependency's requirement, or
  2. Alternative: Downgrade @edge-runtime/jest-environment to a version that supports Node >=14.6 (likely staying on 2.x series)

If choosing option 1, verify that all features work correctly on Node 18+ and update any CI/deployment configurations accordingly.

"devDependencies": {
"@changesets/cli": "2.28.1",
"@edge-runtime/jest-environment": "2.3.10",
"@edge-runtime/jest-environment": "4.0.0",
Copy link
Contributor

Choose a reason for hiding this comment

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

The updated @edge-runtime/jest-environment@4.0.0 requires Node >=18, but this package specifies engines.node: ">=14.6", creating an incompatible dependency conflict.

View Details

Analysis

The package has been updated to use @edge-runtime/jest-environment@4.0.0 (line 48), which requires Node.js version >=18 according to its engine specification in pnpm-lock.yaml. However, this package declares it supports Node >=14.6 in its engines field (line 72). This creates a dependency resolution conflict where:

  1. Users with Node 14.6-17.x will be able to install the package (meets package engine requirement) but will fail when trying to install @edge-runtime/jest-environment@4.0.0 (doesn't meet dependency's engine requirement)
  2. Package managers may reject the installation entirely due to the conflicting engine requirements
  3. Tests using jest --env @edge-runtime/jest-environment (line 32) will fail on supported Node versions

This affects the test:common and test:edge scripts which explicitly use the @edge-runtime/jest-environment.


Recommendation

Either:

  1. Recommended: Update the package's Node engine requirement to "node": ">=18" to match the dependency's requirement, or
  2. Alternative: Downgrade @edge-runtime/jest-environment to a version that supports Node >=14.6 (likely staying on 2.x series)

If choosing option 1, verify that all features work correctly on Node 18+ and update any CI/deployment configurations accordingly.

@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from 0a40710 to d609199 Compare August 31, 2025 14:02
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from d609199 to 4c01cbf Compare September 16, 2025 08:23
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from 4c01cbf to b3da697 Compare September 25, 2025 16:48
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from b3da697 to dd3a0ee Compare September 29, 2025 14:52
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from dd3a0ee to 01e21b5 Compare October 22, 2025 13:48
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from 01e21b5 to 0afa226 Compare October 22, 2025 15:50
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from 0afa226 to 779c297 Compare October 22, 2025 15:55
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from 779c297 to 333935e Compare October 22, 2025 16:02
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from 333935e to b1a8370 Compare October 22, 2025 17:03
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from b1a8370 to 2c1f1f2 Compare October 22, 2025 17:15
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from 2c1f1f2 to bf8234a Compare October 24, 2025 15:52
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from bf8234a to b38e558 Compare October 24, 2025 16:00
@renovate renovate bot force-pushed the renovate/edge-runtime-jest-environment-4.x branch from b38e558 to 0b4f66e Compare October 24, 2025 16:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants