Skip to content

Bump @rollup/rollup-linux-x64-gnu from 4.60.1 to 4.60.2 in the npm-production group#30

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-production-cdb27aad53
Closed

Bump @rollup/rollup-linux-x64-gnu from 4.60.1 to 4.60.2 in the npm-production group#30
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-production-cdb27aad53

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Apr 20, 2026

Bumps the npm-production group with 1 update: @rollup/rollup-linux-x64-gnu.

Updates @rollup/rollup-linux-x64-gnu from 4.60.1 to 4.60.2

Release notes

Sourced from @​rollup/rollup-linux-x64-gnu's releases.

v4.60.2

4.60.2

2026-04-18

Bug Fixes

  • Resolve a variable rendering bug when generating different formats from the same build (#6350)

Pull Requests

Changelog

Sourced from @​rollup/rollup-linux-x64-gnu's changelog.

4.60.2

2026-04-18

Bug Fixes

  • Resolve a variable rendering bug when generating different formats from the same build (#6350)

Pull Requests

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the npm-production group with 1 update: [@rollup/rollup-linux-x64-gnu](https://github.com/rollup/rollup).


Updates `@rollup/rollup-linux-x64-gnu` from 4.60.1 to 4.60.2
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.60.1...v4.60.2)

---
updated-dependencies:
- dependency-name: "@rollup/rollup-linux-x64-gnu"
  dependency-version: 4.60.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 20, 2026
Copy link
Copy Markdown

@cursor cursor Bot left a comment

Choose a reason for hiding this comment

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

Cursor Bugbot has reviewed your changes and found 1 potential issue.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit b410ad3. Configure here.

Comment thread package-lock.json
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0"
"@actions/exec": "^3.0.0",
"@rollup/rollup-linux-x64-gnu": "4.60.2"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Optional dependency incorrectly added to production dependencies in lockfile

Medium Severity

@rollup/rollup-linux-x64-gnu is incorrectly listed in the lockfile's root dependencies (pinned at 4.60.2) in addition to optionalDependencies (^4.60.2). The package.json only declares it in optionalDependencies. This is a known npm lockfile bug (npm/cli#7530) where updating an optional dependency causes it to leak into the production dependencies section. This mismatch between package.json and the lockfile could cause unexpected install behavior, particularly with npm ci on non-Linux-x64 platforms using older npm versions.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit b410ad3. Configure here.

Copy link
Copy Markdown

@cubic-dev-ai cubic-dev-ai Bot left a comment

Choose a reason for hiding this comment

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

1 issue found across 2 files

Prompt for AI agents (unresolved issues)

Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.


<file name="package-lock.json">

<violation number="1" location="package-lock.json:15">
P2: `@rollup/rollup-linux-x64-gnu` has leaked into the lockfile's root `dependencies` section (pinned at `4.60.2`) in addition to being correctly listed in `optionalDependencies`. The `package.json` only declares it as optional. This is a known npm lockfile bug ([npm/cli#7530](https://github.com/npm/cli/issues/7530)) triggered when updating optional dependencies. On non-Linux-x64 platforms, `npm ci` may fail because it sees the package as a required production dependency that cannot be installed. Run `npm install` again to regenerate a correct lockfile, or manually remove the entry from the `dependencies` block.</violation>
</file>

Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review, or fix all with cubic.

Comment thread package-lock.json
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0"
"@actions/exec": "^3.0.0",
"@rollup/rollup-linux-x64-gnu": "4.60.2"
Copy link
Copy Markdown

@cubic-dev-ai cubic-dev-ai Bot Apr 20, 2026

Choose a reason for hiding this comment

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

P2: @rollup/rollup-linux-x64-gnu has leaked into the lockfile's root dependencies section (pinned at 4.60.2) in addition to being correctly listed in optionalDependencies. The package.json only declares it as optional. This is a known npm lockfile bug (npm/cli#7530) triggered when updating optional dependencies. On non-Linux-x64 platforms, npm ci may fail because it sees the package as a required production dependency that cannot be installed. Run npm install again to regenerate a correct lockfile, or manually remove the entry from the dependencies block.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At package-lock.json, line 15:

<comment>`@rollup/rollup-linux-x64-gnu` has leaked into the lockfile's root `dependencies` section (pinned at `4.60.2`) in addition to being correctly listed in `optionalDependencies`. The `package.json` only declares it as optional. This is a known npm lockfile bug ([npm/cli#7530](https://github.com/npm/cli/issues/7530)) triggered when updating optional dependencies. On non-Linux-x64 platforms, `npm ci` may fail because it sees the package as a required production dependency that cannot be installed. Run `npm install` again to regenerate a correct lockfile, or manually remove the entry from the `dependencies` block.</comment>

<file context>
@@ -11,7 +11,8 @@
         "@actions/core": "^3.0.0",
-        "@actions/exec": "^3.0.0"
+        "@actions/exec": "^3.0.0",
+        "@rollup/rollup-linux-x64-gnu": "4.60.2"
       },
       "devDependencies": {
</file context>
Fix with Cubic

@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github Apr 27, 2026

Looks like @rollup/rollup-linux-x64-gnu is updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Apr 27, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/npm-production-cdb27aad53 branch April 27, 2026 18:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants