Skip to content

Bump the dependencies group with 7 updates#294

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dependencies-c7613ba846
Open

Bump the dependencies group with 7 updates#294
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dependencies-c7613ba846

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the dependencies group with 7 updates:

Package From To
ansis 4.3.0 4.3.1
vite 8.0.14 8.0.15
wouter 3.9.0 3.10.0
@vitest/browser 4.1.7 4.1.8
@vitest/browser-playwright 4.1.7 4.1.8
vitest 4.1.7 4.1.8
@embroider/vite 1.7.4 1.7.5

Updates ansis from 4.3.0 to 4.3.1

Release notes

Sourced from ansis's releases.

v4.3.1

Bug fixes

1. reset no longer appends a closing sequence

[!IMPORTANT] reset is now a single SGR command, not a paired open/close style. ansis.reset(value) prepends \x1b[0m and no longer appends a closing reset. If your code or snapshot tests relied on the trailing \x1b[0m, update them or add the reset explicitly (see below).

Before, reset was treated like any other style with an open and a close code, so it wrapped the value on both sides. That produced extra reset sequences in chained, nested, template literal, and multiline compositions, and the output did not match what a single reset should do.

Before:

ansis.reset('foo');
// "\x1b[0mfoo\x1b[0m"

Now:

ansis.reset('foo');
// "\x1b[0mfoo"

If you need a trailing reset, add it explicitly:

ansis.reset`foo ${ansis.red('bar')} baz` + ansis.reset();
// "\x1b[0mfoo \x1b[31mbar\x1b[39m baz\x1b[0m"

ansis.reset() without argument returns just the reset code \x1b[0m, which makes appending it easy.

2. strip() removes OSC 8 hyperlink sequences

strip() did not clear the OSC 8 sequences produced by link(). It now removes them and returns plain text:

ansis.strip(ansis.link('https://example.com', 'text'));
// "text"

3. No style leakage between instances with different color levels

Styles created on one Ansis instance could appear on another instance that was created with a different color level. That could give output rendered at the wrong color level. Now, instances are isolated, so each one keeps its own styles and level.

import { Ansis } from 'ansis';
</tr></table> 

... (truncated)

Changelog

Sourced from ansis's changelog.

4.3.1 (2026-05-31)

  • fix: remove closing reset ANSI sequence

    reset is now treated as a single SGR command, not as a paired style. This means ansis.reset(value) prepends \x1b[0m and does not append a closing reset sequence.

    Before:

    ansis.reset('foo');
    // "\x1b[0mfoo\x1b[0m"

    Now:

    ansis.reset('foo');
    // "\x1b[0mfoo"

    If a trailing reset is needed, add it explicitly:

    ansis.reset`foo ${ansis.red('bar')} baz` + ansis.reset();
    // "\x1b[0mfoo \x1b[31mbar\x1b[39m baz\x1b[0m"

    The fix removes extra reset sequences in chained, nested, template literal, and multiline style compositions where treating reset as a paired style gave wrong output.

  • fix: strip() now removes OSC 8 hyperlink sequences generated by link() ansis.strip(ansis.link(url, text)) now returns plain text

  • fix: prevent silent style leakage between Ansis instances created with different color levels

  • fix: .extend() on one Ansis instance no longer overrides styles created on other instances with different color levels

  • refactor: micro-optimisations to reduce code size

Commits
  • 3baa7aa refactor: micro-optimisations to reduce code size
  • 1914005 fix: prevent silent style leakage between Ansis instances created with differ...
  • 1d575d4 fix: fix edge cases in reset ANSI sequence generation
  • d83dd95 refactor: code micro optimisation
  • bc74986 test: add tests for style stack handling
  • See full diff in compare view

Updates vite from 8.0.14 to 8.0.15

Release notes

Sourced from vite's releases.

v8.0.15

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

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

Commits
  • 8d1b019 release: v8.0.15
  • 2686d7d fix(deps): update all non-major dependencies (#22511)
  • 3052a67 chore(deps): update rolldown-related dependencies (#22566)
  • e3cfb9d fix(optimizer): close the rolldown bundle when write() rejects (#22528)
  • 6978a9c refactor: correct logic in collectAllModules function (#22562)
  • 646dbed feat: update rolldown to 1.0.3 (#22538)
  • 85a0eff fix: capitalize error messages and remove spurious space in parse error (#22488)
  • 47c4213 fix(dev): fix html-proxy cache key mismatch for /@fs/ HTML paths (#21762)
  • 5c8e98f fix(glob): error on relative glob in virtual module when no files match (#22497)
  • c85c9ee feat: send 408 on request timeout (#22476)
  • Additional commits viewable in compare view

Updates wouter from 3.9.0 to 3.10.0

Commits

Updates @vitest/browser from 4.1.7 to 4.1.8

Release notes

Sourced from @​vitest/browser's releases.

v4.1.8

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • e61f2dd chore: release v4.1.8
  • e4067b3 fix(browser): disable client cdp API when allowWrite/allowExec: false [ba...
  • See full diff in compare view

Updates @vitest/browser-playwright from 4.1.7 to 4.1.8

Release notes

Sourced from @​vitest/browser-playwright's releases.

v4.1.8

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • e61f2dd chore: release v4.1.8
  • 675b434 fix(browser): remove orphaned Playwright route when same module is mocked via...
  • e4067b3 fix(browser): disable client cdp API when allowWrite/allowExec: false [ba...
  • See full diff in compare view

Updates vitest from 4.1.7 to 4.1.8

Release notes

Sourced from vitest's releases.

v4.1.8

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • e61f2dd chore: release v4.1.8
  • e4067b3 fix(browser): disable client cdp API when allowWrite/allowExec: false [ba...
  • See full diff in compare view

Updates @embroider/vite from 1.7.4 to 1.7.5

Release notes

Sourced from @​embroider/vite's releases.

v1.10.3-@​embroider/addon-shim

Release (2026-06-05)

  • @​embroider/addon-shim 1.10.3 (patch)
  • @​embroider/compat 4.1.20 (patch)
  • @​embroider/core 4.6.1 (patch)
  • @​embroider/macros 1.20.4 (patch)
  • @​embroider/shared-internals 3.1.1 (patch)
  • @​embroider/template-tag-codemod 1.4.1 (patch)
  • @​embroider/vite 1.7.6 (patch)

🐛 Bug Fix

  • @embroider/compat
  • @embroider/addon-shim
  • @embroider/compat, @embroider/core, @embroider/macros, @embroider/shared-internals, @embroider/template-tag-codemod, @embroider/vite
  • @embroider/vite

Committers: 2

v1.7.5-@​embroider/vite

Release (2026-05-28)

  • @​embroider/vite 1.7.5 (patch)

🐛 Bug Fix

Committers: 1

v4.6.0-@​embroider/core

Release (2026-05-27)

  • @​embroider/core 4.6.0 (minor)

🚀 Enhancement

Committers: 1

... (truncated)

Changelog

Sourced from @​embroider/vite's changelog.

Embroider Changelog

Release (2026-06-05)

  • @​embroider/addon-shim 1.10.3 (patch)
  • @​embroider/compat 4.1.20 (patch)
  • @​embroider/core 4.6.1 (patch)
  • @​embroider/macros 1.20.4 (patch)
  • @​embroider/shared-internals 3.1.1 (patch)
  • @​embroider/template-tag-codemod 1.4.1 (patch)
  • @​embroider/vite 1.7.6 (patch)

🐛 Bug Fix

  • @embroider/compat
  • @embroider/addon-shim
  • @embroider/compat, @embroider/core, @embroider/macros, @embroider/shared-internals, @embroider/template-tag-codemod, @embroider/vite
  • @embroider/vite

Committers: 2

Release (2026-05-28)

  • @​embroider/vite 1.7.5 (patch)

🐛 Bug Fix

Committers: 1

Release (2026-05-27)

  • @​embroider/core 4.6.0 (minor)

🚀 Enhancement

Committers: 1

Release (2026-05-26)

... (truncated)

Commits

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 dependencies group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [ansis](https://github.com/webdiscus/ansis) | `4.3.0` | `4.3.1` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.14` | `8.0.15` |
| [wouter](https://github.com/molefrog/wouter) | `3.9.0` | `3.10.0` |
| [@vitest/browser](https://github.com/vitest-dev/vitest/tree/HEAD/packages/browser) | `4.1.7` | `4.1.8` |
| [@vitest/browser-playwright](https://github.com/vitest-dev/vitest/tree/HEAD/packages/browser-playwright) | `4.1.7` | `4.1.8` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.7` | `4.1.8` |
| [@embroider/vite](https://github.com/embroider-build/embroider/tree/HEAD/packages/vite) | `1.7.4` | `1.7.5` |


Updates `ansis` from 4.3.0 to 4.3.1
- [Release notes](https://github.com/webdiscus/ansis/releases)
- [Changelog](https://github.com/webdiscus/ansis/blob/master/CHANGELOG.md)
- [Commits](webdiscus/ansis@v4.3.0...v4.3.1)

Updates `vite` from 8.0.14 to 8.0.15
- [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.15/packages/vite)

Updates `wouter` from 3.9.0 to 3.10.0
- [Release notes](https://github.com/molefrog/wouter/releases)
- [Commits](https://github.com/molefrog/wouter/commits)

Updates `@vitest/browser` from 4.1.7 to 4.1.8
- [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.8/packages/browser)

Updates `@vitest/browser-playwright` from 4.1.7 to 4.1.8
- [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.8/packages/browser-playwright)

Updates `vitest` from 4.1.7 to 4.1.8
- [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.8/packages/vitest)

Updates `@embroider/vite` from 1.7.4 to 1.7.5
- [Release notes](https://github.com/embroider-build/embroider/releases)
- [Changelog](https://github.com/embroider-build/embroider/blob/main/CHANGELOG.md)
- [Commits](https://github.com/embroider-build/embroider/commits/HEAD/packages/vite)

---
updated-dependencies:
- dependency-name: ansis
  dependency-version: 4.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: vite
  dependency-version: 8.0.15
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: wouter
  dependency-version: 3.10.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@vitest/browser"
  dependency-version: 4.1.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@vitest/browser-playwright"
  dependency-version: 4.1.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: vitest
  dependency-version: 4.1.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@embroider/vite"
  dependency-version: 1.7.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

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 8, 2026
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