Skip to content

Bump vite from 7.3.1 to 8.0.16 - #2

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

Bump vite from 7.3.1 to 8.0.16#2
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/vite-8.0.16

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 19, 2026

Copy link
Copy Markdown

Bumps vite from 7.3.1 to 8.0.16.

Release notes

Sourced from vite's releases.

v8.0.16

Please refer to CHANGELOG.md for details.

v8.0.15

Please refer to CHANGELOG.md for details.

v8.0.14

Please refer to CHANGELOG.md for details.

v8.0.13

Please refer to CHANGELOG.md for details.

v8.0.12

Please refer to CHANGELOG.md for details.

v8.0.11

Please refer to CHANGELOG.md for details.

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.

... (truncated)

Changelog

Sourced from vite's changelog.

8.0.16 (2026-06-01)

Bug Fixes

8.0.15 (2026-06-01)

Features

Bug Fixes

  • capitalize error messages and remove spurious space in parse error (#22488) (85a0eff)
  • deps: update all non-major dependencies (#22511) (2686d7d)
  • dev: fix html-proxy cache key mismatch for /@fs/ HTML paths (#21762) (47c4213)
  • glob: error on relative glob in virtual module when no files match (#22497) (5c8e98f)
  • optimizer: close the rolldown bundle when write() rejects (#22528) (e3cfb9d)
  • resolve: provide onWarn for viteResolvePlugin in JS plugin containers (#22509) (40985f1)

Miscellaneous Chores

Code Refactoring

8.0.14 (2026-05-21)

Features

Bug Fixes

  • deps: update all non-major dependencies (#22471) (98b8163)
  • dev: handle errors when sending messages to vite server (#22450) (e8e9a34)
  • html: handle trailing slash paths in transformIndexHtml (#22480) (5d94d1b)
  • optimizer: pass oxc jsx options to transformSync in dependency scan (#22342) (b3132da)

Miscellaneous Chores

  • deps: update rolldown-related dependencies (#22470) (7cb728e)
  • remove irrelevant commits from changelog (2c69495)

Code Refactoring

  • glob: do not rewrite import path for absolute base (#22310) (0ae2844)

... (truncated)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR 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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 7.3.1 to 8.0.16.
- [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.16/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-version: 8.0.16
  dependency-type: indirect
...

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 Jun 19, 2026
jaredmoody pushed a commit that referenced this pull request Sep 4, 2026
…arcoroth#2528)

This pull request updates the dev server to notice templates that were
already broken before it started, and to tell browsers about them when
they connect.

Indexing read every template but never parsed one, so `broken_files`
started empty and nothing downstream knew a template was broken until
someone touched it. Two things followed from that, and a third fell out
of fixing them.

#### Repairing a template the server indexed as broken

Because the template was never recorded as broken, repairing it missed
the recovery path entirely and fell through to the diff. The diff was
computed against a previous source that does not parse, so the
operations were meaningless:

**Before**

```
    17:14:32.245 ↻ fetch   app/views/posts/index.html.erb (2 operations)
                        #1 node removed [0, 1]
                          - HTML_OPEN_TAG (2:2)
                        #2 node inserted [0, 1]
                          + <form>
```

**After**

```
    17:18:45.909 ✓ clear   app/views/posts/index.html.erb
```

`Watcher#index` now parses what it reads and records the templates that
fail, the runner seeds its own set from that, and
`Pipeline#remember_broken` marks them `:parse_error` so the clearing
schema reaches browsers. Both entry points are wired, the CLI runner and
the embedded boot in `Herb::Dev.boot`. Recovery also no longer prints a
diff summary, since there is nothing meaningful to diff against.

Parsing every template at startup costs about 45ms for 1000 templates,
measured against the read that was already happening.

#### Saying so at startup

Now that indexing knows, the header says it:

```
  Files:     453 templates indexed, 3 don't parse
  Files:     1 template indexed, 1 doesn't parse
```

The count goes through the existing `pluralize` helper, which also fixes
`1 templates indexed`.

#### Telling browsers on connect

A browser that connects after the server started had no way to learn any
of this. `Protocol.welcome` now carries the list, which is the one frame
every browser receives regardless of when it shows up:

```json
{
  "type": "welcome",
  "project": "/Users/marcoroth/Development/demos/reactionview-demo",
  "broken_files": [
    "app/views/posts/index.html.erb",
    "app/views/posts/second.html.erb"
  ]
}
```

`Server#on_welcome` takes a block the server calls per connection rather
than a payload baked at startup, so a browser connecting after you
repair something gets the shorter list. The client reports each one into
the existing diagnostic sink, so they render as ordinary overlay cards:

Follow up on marcoroth#2468 and marcoroth#2469.
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