Skip to content

build(deps-dev): bump vite from 6.4.2 to 8.0.10 in the demo-vite group across 1 directory#4

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/demo-vite-3932ebd7b6
Open

build(deps-dev): bump vite from 6.4.2 to 8.0.10 in the demo-vite group across 1 directory#4
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/demo-vite-3932ebd7b6

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps the demo-vite group with 1 update in the / directory: vite.

Updates vite from 6.4.2 to 8.0.10

Release notes

Sourced from vite's releases.

v8.0.10

Please refer to CHANGELOG.md for details.

v8.0.9

Please refer to CHANGELOG.md for details.

v8.0.8

Please refer to CHANGELOG.md for details.

v8.0.7

Please refer to CHANGELOG.md for details.

v8.0.6

Please refer to CHANGELOG.md for details.

v8.0.5

Please refer to CHANGELOG.md for details.

v8.0.4

Please refer to CHANGELOG.md for details.

create-vite@8.0.3

Please refer to CHANGELOG.md for details.

v8.0.3

Please refer to CHANGELOG.md for details.

create-vite@8.0.2

Please refer to CHANGELOG.md for details.

v8.0.2

Please refer to CHANGELOG.md for details.

create-vite@8.0.1

Please refer to CHANGELOG.md for details.

v8.0.1

Please refer to CHANGELOG.md for details.

plugin-legacy@8.0.1

Please refer to CHANGELOG.md for details.

create-vite@8.0.0

Please refer to CHANGELOG.md for details.

plugin-legacy@8.0.0

Please refer to CHANGELOG.md for details.

v8.0.0

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vite's changelog.

8.0.10 (2026-04-23)

Features

Bug Fixes

  • hmrClient.logger.debug and hmrClient.logger.error looked different from other HMR logs (#22147) (a4d828f)
  • css: show filename in CSS minification warnings for .css?inline (#22292) (83f0a78)
  • optimizer: allow user transform.target to override default in optimizeDeps (#22273) (5c7cec6)
  • remove format sniffing module resolution from JS resolver (#22297) (b8a21cc)

Code Refactoring

8.0.9 (2026-04-20)

Features

Bug Fixes

  • allow binding when strictPort is set but wildcard port is in use (#22150) (dfc8aa5)
  • build: emptyOutDir should happen for watch rebuilds (#22207) (ee52267)
  • bundled-dev: reject requests to HMR patch files in non potentially trustworthy origins (#22269) (868f141)
  • css: use unique key for cssEntriesMap to prevent same-basename collision (#22039) (374bb5d)
  • deps: update all non-major dependencies (#22219) (4cd0d67)
  • deps: update all non-major dependencies (#22268) (c28e9c1)
  • detect Deno workspace root (fix #22237) (#22238) (1b793c0)
  • dev: handle errors in watchChange hook (#22188) (fc08bda)
  • optimizer: handle more chars that will be sanitized (#22208) (3f24533)
  • skip fallback sourcemap generation for ?raw imports (#22148) (3ec9cda)

Documentation

Miscellaneous Chores

  • deps: update dependency dotenv-expand to v13 (#22271) (0a3887d)

8.0.8 (2026-04-09)

Features

... (truncated)

Commits
  • 32c2978 release: v8.0.10
  • a4d06d9 feat: update rolldown to 1.0.0-rc.17 (#22299)
  • a4d828f fix: hmrClient.logger.debug and hmrClient.logger.error looked different f...
  • 83f0a78 fix(css): show filename in CSS minification warnings for .css?inline (#22292)
  • b8a21cc fix: remove format sniffing module resolution from JS resolver (#22297)
  • 40a0847 refactor: typecheck client directory (#22284)
  • 5c7cec6 fix(optimizer): allow user transform.target to override default in optimizeDe...
  • 9437518 refactor: enable some typecheck rules (#22278)
  • ce729f5 release: v8.0.9
  • 605bb97 docs: update build CLI defaults (#22261)
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 8, 2026
@dependabot dependabot Bot changed the title chore(deps-dev): bump vite from 6.4.2 to 8.0.7 in the demo-vite group chore(deps-dev): bump vite from 6.4.2 to 8.0.7 in the demo-vite group across 1 directory Apr 8, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/demo-vite-3932ebd7b6 branch 6 times, most recently from c8add37 to 6cf9695 Compare April 12, 2026 22:37
@AZIIZALOYIBI

Copy link
Copy Markdown

The job is failing at the "Release baseline gate" step (pnpm release:check) due to a Prettier formatting issue in pnpm-lock.yaml.

[warn] pnpm-lock.yaml
[warn] Code style issues found in the above file. Run Prettier with --write to fix.

Root Cause

Prettier is flagging pnpm-lock.yaml as improperly formatted. This typically happens when the lockfile was generated or modified in a way that doesn't match the Prettier configuration enforced in CI.

Solution

Run Prettier locally to auto-fix the formatting, then commit the result:

npx prettier --write pnpm-lock.yaml

Then commit the updated file:

git add pnpm-lock.yaml
git commit -m "fix: format pnpm-lock.yaml with prettier"
git push

Alternative: Exclude pnpm-lock.yaml from Prettier

Lockfiles are auto-generated and generally shouldn't be formatted by Prettier. You can exclude it by adding an entry to your .prettierignore file:

# .prettierignore
pnpm-lock.yaml

This is the more sustainable fix, as pnpm-lock.yaml will be regenerated frequently and re-introducing this issue every time is undesirable. Commit the .prettierignore change and push it to resolve the failing check.

@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/demo-vite-3932ebd7b6 branch 3 times, most recently from 60777d4 to 54f5ff0 Compare April 16, 2026 05:21
@dependabot dependabot Bot changed the title chore(deps-dev): bump vite from 6.4.2 to 8.0.7 in the demo-vite group across 1 directory build(deps-dev): bump vite from 6.4.2 to 8.0.10 in the demo-vite group across 1 directory Apr 27, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/demo-vite-3932ebd7b6 branch 3 times, most recently from e25d07f to f1c1726 Compare April 30, 2026 05:24
Bumps the demo-vite group with 1 update in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).


Updates `vite` from 6.4.2 to 8.0.10
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v8.0.10/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-version: 8.0.7
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: demo-vite
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/demo-vite-3932ebd7b6 branch from f1c1726 to 4e42407 Compare May 7, 2026 05:25
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.

1 participant