chore(deps-dev): bump the dev-dependencies group across 1 directory with 6 updates - #451
Open
dependabot[bot] wants to merge 1 commit into
Open
Conversation
8 tasks
tomymaritano
added a commit
that referenced
this pull request
Aug 22, 2026
<!-- CURSOR_AGENT_PR_BODY_BEGIN --> ## Summary Dependabot PRs fail the required `e2e` check in ~20s during `pnpm install`, not during Playwright. Automerge is already enabled; it cannot land while e2e is red. **Exact failure** (PR #482 job [96541625973](https://github.com/dripnex/app/actions/runs/32404870524/job/96541625973), also #464 / #456 / #462 and `commitlint` on #464): ``` ERROR Command failed with exit code 128: git clone git@github.com:electron/node-gyp.git ... git@github.com: Permission denied (publickey). ``` This is not missing repo secrets. Dependabot-regenerated lockfiles resolve `@electron/node-gyp` as a git dep whose `resolution.repo` is SSH: ``` # PR #456 (shell-quote) lockfile '@electron/node-gyp@git+https://git@github.com:electron/node-gyp.git#06b29aa...' resolution: {commit: 06b29aa..., repo: git@github.com:electron/node-gyp.git, type: git} # develop lockfile (e2e green after #541) '@electron/node-gyp@https://codeload.github.com/electron/node-gyp/tar.gz/06b29aa...' resolution: {tarball: https://codeload.github.com/electron/node-gyp/tar.gz/06b29aa...} ``` pnpm clones `resolution.repo` over SSH. GitHub-hosted runners have no deploy key. The `setup` job already rewrites SSH to HTTPS and therefore succeeds on the same PRs. `e2e` and `commitlint` did a fresh `pnpm install` without that rewrite. `develop` itself is green after #541 — its lockfile uses the HTTPS tarball, so e2e never hits the SSH clone. ## Type of Change - [x] Bug fix - [ ] New feature - [ ] Breaking change - [ ] Documentation update ## Fix Add the same `git config --global 'url.https://github.com/.insteadOf' 'git@github.com:'` step that `setup` / `release` / `build` / `docs` already use: - `.github/workflows/ci.yml` `e2e` job — unblocks the required e2e check - `.github/workflows/pr-title.yml` — same SSH death on Dependabot lockfiles Existing Dependabot PRs (#482, #464, #462, #460, #459, #456, #451, #431, #430, #248) should go green after rebase onto this `develop` change (the merge commit picks up the workflow). ## Related Issues Closes #544 ## Checklist - [x] I've read [CONTRIBUTING.md](../CONTRIBUTING.md) - [ ] Tests pass locally (`pnpm test`) — workflow-only change; no product code - [ ] Build succeeds (`pnpm build`) — not applicable - [x] PR targets `develop` branch (not `main`) <!-- CURSOR_AGENT_PR_BODY_END --> <div><a href="https://cursor.com/agents/bc-65d9f024-2af5-4bbe-8318-35ae4db127d2?cursor_ref=pr_footer&cursor_cta=open_in_web"><picture><source media="(prefers-color-scheme: dark)" srcset="https://cursor.com/assets/images/open-in-web-dark.png"><source media="(prefers-color-scheme: light)" srcset="https://cursor.com/assets/images/open-in-web-light.png"><img alt="Open in Web" width="114" height="28" src="https://cursor.com/assets/images/open-in-web-dark.png"></picture></a> <a href="https://cursor.com/background-agent?bcId=bc-65d9f024-2af5-4bbe-8318-35ae4db127d2&cursor_ref=pr_footer&cursor_cta=open_in_cursor"><picture><source media="(prefers-color-scheme: dark)" srcset="https://cursor.com/assets/images/open-in-cursor-dark.png"><source media="(prefers-color-scheme: light)" srcset="https://cursor.com/assets/images/open-in-cursor-light.png"><img alt="Open in Cursor" width="131" height="28" src="https://cursor.com/assets/images/open-in-cursor-dark.png"></picture></a> </div> Co-authored-by: Cursor Agent <cursoragent@cursor.com>
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/develop/dev-dependencies-9f8f858b60
branch
from
August 22, 2026 19:56
9dda6a8 to
700cace
Compare
…ith 6 updates Bumps the dev-dependencies group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [eslint](https://github.com/eslint/eslint) | `10.4.1` | `10.9.1` | | [eslint-plugin-import-x](https://github.com/un-ts/eslint-plugin-import-x) | `4.16.2` | `4.17.1` | | [prettier](https://github.com/prettier/prettier) | `3.8.3` | `3.9.6` | | [typescript](https://github.com/microsoft/TypeScript) | `6.0.3` | `7.0.2` | | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.8` | `4.1.11` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.9.2` | `26.3.0` | Updates `eslint` from 10.4.1 to 10.9.1 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](eslint/eslint@v10.4.1...v10.9.1) Updates `eslint-plugin-import-x` from 4.16.2 to 4.17.1 - [Release notes](https://github.com/un-ts/eslint-plugin-import-x/releases) - [Changelog](https://github.com/un-ts/eslint-plugin-import-x/blob/master/CHANGELOG.md) - [Commits](un-ts/eslint-plugin-import-x@v4.16.2...v4.17.1) Updates `prettier` from 3.8.3 to 3.9.6 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](prettier/prettier@3.8.3...3.9.6) Updates `typescript` from 6.0.3 to 7.0.2 - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](microsoft/TypeScript@v6.0.3...v7.0.2) Updates `vitest` from 4.1.8 to 4.1.11 - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md) - [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.11/packages/vitest) Updates `@types/node` from 25.9.2 to 26.3.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-version: 26.1.1 dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: eslint dependency-version: 10.7.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: eslint-plugin-import-x dependency-version: 4.17.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: prettier dependency-version: 3.9.5 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: typescript dependency-version: 7.0.2 dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: vitest dependency-version: 4.1.10 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/develop/dev-dependencies-9f8f858b60
branch
from
August 29, 2026 19:56
700cace to
a8698ff
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps the dev-dependencies group with 6 updates in the / directory:
10.4.110.9.14.16.24.17.13.8.33.9.66.0.37.0.24.1.84.1.1125.9.226.3.0Updates
eslintfrom 10.4.1 to 10.9.1Release notes
Sourced from eslint's releases.
... (truncated)
Commits
5c8c24110.9.1a7f3b7dBuild: changelog update for 10.9.11e641c9fix: no-loss-of-precision false positive with trailing decimal point (#21251)ad74a8ddocs: add deprecation steps for EOL package versions (#21248)3c3ae53chore: update ecosystem plugins (#21249)c27bc9210.9.0fa831d9Build: changelog update for 10.9.0899dbf1chore: update github/codeql-action action to v4.37.7 (#21243)08de88efeat: handle underflow in no-loss-of-precision (#21218)9ef407adocs: use eslint.config.* wherever config file names are listed (#21216)Updates
eslint-plugin-import-xfrom 4.16.2 to 4.17.1Release notes
Sourced from eslint-plugin-import-x's releases.
Changelog
Sourced from eslint-plugin-import-x's changelog.
Commits
b767b8cchore: release eslint-plugin-import-x (#499)cf25a01fix(extensions): don't require extension for package subpaths resolving to .d...b543300docs: document theesmoduleoption forno-dynamic-requirerule (#496)7578513chore: release eslint-plugin-import-x (#472)e3cc7e4fix: strip querystrings and hash fragments when checking for file existence (...9a07009fix: makeextensionsrule check Node.js subpath imports (#484)3e13121fix: memoize legacyNodeResolve resolver to avoid native memory leak (#481)fce29b1fix(deps): replace@package-json/typeswith an inline minimal type (#476)1c84235fix: handle access errors during case checks (#494)96222bfchore: drop unusedtmp(#487)Updates
prettierfrom 3.8.3 to 3.9.6Release notes
Sourced from prettier's releases.
Changelog
Sourced from prettier's changelog.
... (truncated)
Commits
8f0c950Release 3.9.6e910764Update changelogec3f1c7Update typescript-eslint to v8.65.0 (#19675)73d2efcUpdate Yuku parser to v0.7.0 (#19664)dd5e24ePreserve quotes forTSMethodSignaturenodes namednew(#19621)c03ab4eUpdate dependency eslint-plugin-unicorn to v72 (#19633)b74dd53Update Yuku parser to v0.6.5 (#19654)f1b594eUpdate dependency eslint-plugin-simple-import-sort to v14 (#19655)0d9dfb6Update Yuku parser to v0.6.4 (#19650)3bbb815Removetypescript-onlydirectory (#19636)Updates
typescriptfrom 6.0.3 to 7.0.2Release notes
Sourced from typescript's releases.
Commits
1e4744dMerge branch 'main' into ts7-releasea5a219cmicrosoft/typescript-go#4558ecfe30dUpdate status localization5de25b5Hide executable name in TypeScript statusd7ce74aShow bundled TypeScript version for packaged servers29be66aCorrect TS 7 release version to 7.0.2ed2bd1bMerge branch 'main' into ts7-release8873075Bump the github-actions group across 1 directory with 3 updates (microsoft/ty...9427131Set up stable / nightly extension split, other prep (microsoft/typescript-go#...d4eaca5microsoft/typescript-go#4549Maintainer changes
This version was pushed to npm by microsoft1es, a new releaser for typescript since your current version.
Updates
vitestfrom 4.1.8 to 4.1.11Release notes
Sourced from vitest's releases.
Commits
9bd8d46chore: release v4.1.11 (#10995)9851dbcfix(browser): trigger playwright/chromium gc on lower disk availability [back...db616d2chore: release v4.1.10 (#10718)bae52b5fix(vm): fix external module resolve error with deps optimizer query for enco...a7a61e7chore: release v4.1.9 (#10598)934b0f5fix(pool): prevent test run hang on worker crash (#10543) [backport to v4] (#...7fb2965fix(browser): wait for orchestrator readiness before resolving browser sessio...a518019fix: fiximportOriginalwith optimizer and query import [backport to v4] (#...Updates
@types/nodefrom 25.9.2 to 26.3.0Commits