Skip to content

chore(deps): bump the tools group with 2 updates#1076

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/tools-324b107698
Open

chore(deps): bump the tools group with 2 updates#1076
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/tools-324b107698

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 29, 2026

Bumps the tools group with 2 updates: vite-plugin-istanbul and vite-plugin-static-copy.

Updates vite-plugin-istanbul from 8.0.0 to 9.0.1

Release notes

Sourced from vite-plugin-istanbul's releases.

v9.0.1

9.0.1 (2026-05-27)

Bug Fixes

  • inline RawSourceMap type to remove external @​types dependency from public types (#412) (3096e47)

v9.0.1-rc.1

9.0.1-rc.1 (2026-05-27)

Bug Fixes

  • inline RawSourceMap type to remove external @​types dependency from public types (#412) (3096e47)

v9.0.0

9.0.0 (2026-05-17)

Features

  • feat!: bump vite peer dependency from >=4 to >=7 (#406) (0118fad)
  • feat!: migrate from unbuild/rollup to tsdown/rolldown (#405) (6c09248)
  • support custom instrumenter option (#402) (87458e8)

BREAKING CHANGES

  • Minimum required Vite version is now 7, up from 4.
  • Replaced unbuild/rollup with tsdown/rolldown.

v9.0.0-rc.2

9.0.0-rc.2 (2026-05-17)

  • feat!: bump vite peer dependency from >=4 to >=7 (#406) (0118fad)

BREAKING CHANGES

  • Minimum required Vite version is now 7, up from 4.

v9.0.0-rc.1

9.0.0-rc.1 (2026-05-17)

Features

  • feat!: migrate from unbuild/rollup to tsdown/rolldown (#405) (6c09248)
  • support custom instrumenter option (#402) (87458e8)

... (truncated)

Commits
  • 3096e47 fix: inline RawSourceMap type to remove external @​types dependency from publi...
  • 8f55813 build(deps-dev): bump @​types/node from 25.9.0 to 25.9.1 (#411)
  • 82d41af build(deps): bump @​babel/generator from 7.29.1 to 7.29.7 (#410)
  • c37ea18 build(deps-dev): bump @​types/node from 25.8.0 to 25.9.0 (#408)
  • 0118fad feat!: bump vite peer dependency from >=4 to >=7 (#406)
  • 8755100 chore: update node to v24.15.0 (#407)
  • 6c09248 feat!: migrate from unbuild/rollup to tsdown/rolldown (#405)
  • 7d74fc0 build(deps): bump dependabot/fetch-metadata from 3.0.0 to 3.1.0 (#404)
  • 8870c47 build(deps): bump pnpm/action-setup from 5 to 6 (#403)
  • d7770a6 Fix/vue sfc template coverage (#400)
  • Additional commits viewable in compare view

Updates vite-plugin-static-copy from 3.4.0 to 4.1.0

Release notes

Sourced from vite-plugin-static-copy's releases.

vite-plugin-static-copy@4.1.0

Minor Changes

  • #251 7672842 Thanks @​sapphi-red! - Add name property to the rename object form and allow rename functions to return a RenameObject. The name property replaces the file's basename (filename + extension), and can be combined with stripBase to both flatten directory structure and rename the file in one step. Rename functions can now return { name, stripBase } objects instead of only strings, making it easier to declaratively control output paths from dynamic rename logic.

    // node_modules/lib/dist/index.js → vendor/lib.js
    { src: 'node_modules/lib/dist/index.js', dest: 'vendor', rename: { name: 'lib.js', stripBase: true } }
    // src/pages/events/test.html → dist/events/index.html
    { src: 'src/pages/**/*.html', dest: 'dist/', rename: { stripBase: 2, name: 'index.html' } }

vite-plugin-static-copy@4.0.1

Patch Changes

  • #249 c6bf44c Thanks @​sapphi-red! - Fix absolute dest paths being nested under the output directory

    When dest was an absolute path and the source file had a directory component (structured output), the path was incorrectly converted to a relative path, causing files to be nested under the build output directory instead of being copied to the specified absolute path.

    { src: 'foo/foo.txt', dest: '/home/user/my-repo/bar' }

    Before: /home/user/my-repo/dist/home/user/my-repo/bar/foo/foo.txt After: /home/user/my-repo/bar/foo/foo.txt

  • #247 d3af79e Thanks @​sapphi-red! - Fix rename.stripBase to work correctly with ../ paths

    Previously, stripBase counted .. as directory segments, causing incorrect output paths when copying from parent directories.

    { src: '../../src/pages/**/*.html', dest: 'dist/', rename: { stripBase: 2 } }

    Before: dist/src/pages/events/test.html After: dist/events/test.html

    { src: '../../src/pages/**/*.html', dest: 'dist/', rename: { stripBase: true } }

    Before: dist/src/pages/events/test.html After: dist/test.html

vite-plugin-static-copy@4.0.0

Major Changes

... (truncated)

Changelog

Sourced from vite-plugin-static-copy's changelog.

4.1.0

Minor Changes

  • #251 7672842 Thanks @​sapphi-red! - Add name property to the rename object form and allow rename functions to return a RenameObject. The name property replaces the file's basename (filename + extension), and can be combined with stripBase to both flatten directory structure and rename the file in one step. Rename functions can now return { name, stripBase } objects instead of only strings, making it easier to declaratively control output paths from dynamic rename logic.

    // node_modules/lib/dist/index.js → vendor/lib.js
    { src: 'node_modules/lib/dist/index.js', dest: 'vendor', rename: { name: 'lib.js', stripBase: true } }
    // src/pages/events/test.html → dist/events/index.html
    { src: 'src/pages/**/*.html', dest: 'dist/', rename: { stripBase: 2, name: 'index.html' } }

4.0.1

Patch Changes

  • #249 c6bf44c Thanks @​sapphi-red! - Fix absolute dest paths being nested under the output directory

    When dest was an absolute path and the source file had a directory component (structured output), the path was incorrectly converted to a relative path, causing files to be nested under the build output directory instead of being copied to the specified absolute path.

    { src: 'foo/foo.txt', dest: '/home/user/my-repo/bar' }

    Before: /home/user/my-repo/dist/home/user/my-repo/bar/foo/foo.txt After: /home/user/my-repo/bar/foo/foo.txt

  • #247 d3af79e Thanks @​sapphi-red! - Fix rename.stripBase to work correctly with ../ paths

    Previously, stripBase counted .. as directory segments, causing incorrect output paths when copying from parent directories.

    { src: '../../src/pages/**/*.html', dest: 'dist/', rename: { stripBase: 2 } }

    Before: dist/src/pages/events/test.html After: dist/events/test.html

    { src: '../../src/pages/**/*.html', dest: 'dist/', rename: { stripBase: true } }

    Before: dist/src/pages/events/test.html After: dist/test.html

4.0.0

Major Changes

... (truncated)

Commits
  • e95cd6e chore: update versions (#253)
  • 7672842 feat: add name property to RenameObject and allow RenameFunc to return ...
  • 7ae0134 chore: update versions (#248)
  • de515fa chore(deps): update dependency typescript to v6 (#245)
  • fe392e1 chore(deps): update all non-major dependencies (#244)
  • c6bf44c fix: handle absolute path dest correctly (#249)
  • 9ca2d6a test: add test case with nested src and rename.stripBase: true (#250)
  • d3af79e fix: rename.stripBase with parent relative path (#247)
  • 8b3f810 chore: update versions (#236)
  • 9766e42 refactor!: drop Node 18, 20, 21, 23 support (#238)
  • Additional commits viewable in compare view

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 tools group with 2 updates: [vite-plugin-istanbul](https://github.com/iFaxity/vite-plugin-istanbul) and [vite-plugin-static-copy](https://github.com/sapphi-red/vite-plugin-static-copy).


Updates `vite-plugin-istanbul` from 8.0.0 to 9.0.1
- [Release notes](https://github.com/iFaxity/vite-plugin-istanbul/releases)
- [Changelog](https://github.com/iFaxity/vite-plugin-istanbul/blob/next/release.config.mjs)
- [Commits](iFaxity/vite-plugin-istanbul@v8.0.0...v9.0.1)

Updates `vite-plugin-static-copy` from 3.4.0 to 4.1.0
- [Release notes](https://github.com/sapphi-red/vite-plugin-static-copy/releases)
- [Changelog](https://github.com/sapphi-red/vite-plugin-static-copy/blob/main/CHANGELOG.md)
- [Commits](https://github.com/sapphi-red/vite-plugin-static-copy/compare/vite-plugin-static-copy@3.4.0...vite-plugin-static-copy@4.1.0)

---
updated-dependencies:
- dependency-name: vite-plugin-istanbul
  dependency-version: 9.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: tools
- dependency-name: vite-plugin-static-copy
  dependency-version: 4.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: tools
...

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 May 29, 2026
@dependabot dependabot Bot added the javascript Pull requests that update javascript code label May 29, 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

Status: No status

Development

Successfully merging this pull request may close these issues.

0 participants