Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump esbuild, vite-plugin-symfony, @vitejs/plugin-vue, vite, vite-plugin-vue-devtools and vitest in /src/Resources #555

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 11, 2025

Bumps esbuild to 0.25.1 and updates ancestor dependencies esbuild, vite-plugin-symfony, @vitejs/plugin-vue, vite, vite-plugin-vue-devtools and vitest. These dependencies need to be updated together.

Updates esbuild from 0.21.5 to 0.25.1

Release notes

Sourced from esbuild's releases.

v0.25.1

  • Fix incorrect paths in inline source maps (#4070, #4075, #4105)

    This fixes a regression from version 0.25.0 where esbuild didn't correctly resolve relative paths contained within source maps in inline sourceMappingURL data URLs. The paths were incorrectly being passed through as-is instead of being resolved relative to the source file containing the sourceMappingURL comment, which was due to the data URL not being a file URL. This regression has been fixed, and this case now has test coverage.

  • Fix invalid generated source maps (#4080, #4082, #4104, #4107)

    This release fixes a regression from version 0.24.1 that could cause esbuild to generate invalid source maps. Specifically under certain conditions, esbuild could generate a mapping with an out-of-bounds source index. It was introduced by code that attempted to improve esbuild's handling of "null" entries in source maps (i.e. mappings with a generated position but no original position). This regression has been fixed.

    This fix was contributed by @​jridgewell.

  • Fix a regression with non-file source map paths (#4078)

    The format of paths in source maps that aren't in the file namespace was unintentionally changed in version 0.25.0. Path namespaces is an esbuild-specific concept that is optionally available for plugins to use to distinguish paths from file paths and from paths meant for other plugins. Previously the namespace was prepended to the path joined with a : character, but version 0.25.0 unintentionally failed to prepend the namespace. The previous behavior has been restored.

  • Fix a crash with switch optimization (#4088)

    The new code in the previous release to optimize dead code in switch statements accidentally introduced a crash in the edge case where one or more switch case values include a function expression. This is because esbuild now visits the case values first to determine whether any cases are dead code, and then visits the case bodies once the dead code status is known. That triggered some internal asserts that guard against traversing the AST in an unexpected order. This crash has been fixed by changing esbuild to expect the new traversal ordering. Here's an example of affected code:

    switch (x) {
      case '':
        return y.map(z => z.value)
      case y.map(z => z.key).join(','):
        return []
    }
  • Update Go from 1.23.5 to 1.23.7 (#4076, #4077)

    This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain reports from vulnerability scanners that detect which version of the Go compiler esbuild uses.

    This PR was contributed by @​MikeWillCook.

v0.25.0

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.24.0 or ~0.24.0. See npm's documentation about semver for more information.

  • Restrict access to esbuild's development server (GHSA-67mh-4wv8-2f99)

    This change addresses esbuild's first security vulnerability report. Previously esbuild set the Access-Control-Allow-Origin header to * to allow esbuild's development server to be flexible in how it's used for development. However, this allows the websites you visit to make HTTP requests to esbuild's local development server, which gives read-only access to your source code if the website were to fetch your source code's specific URL. You can read more information in the report.

    Starting with this release, CORS will now be disabled, and requests will now be denied if the host does not match the one provided to --serve=. The default host is 0.0.0.0, which refers to all of the IP addresses that represent the local machine (e.g. both 127.0.0.1 and 192.168.0.1). If you want to customize anything about esbuild's development server, you can put a proxy in front of esbuild and modify the incoming and/or outgoing requests.

    In addition, the serve() API call has been changed to return an array of hosts instead of a single host string. This makes it possible to determine all of the hosts that esbuild's development server will accept.

    Thanks to @​sapphi-red for reporting this issue.

  • Delete output files when a build fails in watch mode (#3643)

    It has been requested for esbuild to delete files when a build fails in watch mode. Previously esbuild left the old files in place, which could cause people to not immediately realize that the most recent build failed. With this release, esbuild will now delete all output files if a rebuild fails. Fixing the build error and triggering another rebuild will restore all output files again.

... (truncated)

Changelog

Sourced from esbuild's changelog.

Changelog: 2024

This changelog documents all esbuild versions published in the year 2024 (versions 0.19.12 through 0.24.2).

0.24.2

  • Fix regression with --define and import.meta (#4010, #4012, #4013)

    The previous change in version 0.24.1 to use a more expression-like parser for define values to allow quoted property names introduced a regression that removed the ability to use --define:import.meta=.... Even though import is normally a keyword that can't be used as an identifier, ES modules special-case the import.meta expression to behave like an identifier anyway. This change fixes the regression.

    This fix was contributed by @​sapphi-red.

0.24.1

  • Allow es2024 as a target in tsconfig.json (#4004)

    TypeScript recently added es2024 as a compilation target, so esbuild now supports this in the target field of tsconfig.json files, such as in the following configuration file:

    {
      "compilerOptions": {
        "target": "ES2024"
      }
    }

    As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.

    This fix was contributed by @​billyjanitsch.

  • Allow automatic semicolon insertion after get/set

    This change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:

    class Foo {
      get
      *x() {}
      set
      *y() {}
    }

    The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.

  • Allow quoted property names in --define and --pure (#4008)

    The define and pure API options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes --define and --pure consistent with --global-name, which already supported quoted property names. For example, the following is now possible:

... (truncated)

Commits

Updates vite-plugin-symfony from 6.4.7 to 8.0.2

Changelog

Sourced from vite-plugin-symfony's changelog.

v8.0.2

  • vite-bundle fix #62 can't use environment variables for default_config

v8.0.1

  • vite-plugin-symfony fix #60 move postinstall hook to pre-dev.

v8.0.0

  • stimulus fix hmr option from VitePluginSymfonyStimulusOptions
  • stimulus fix hmr with lazy loaded controllers
  • stimulus prevent hmr when controller is not already registered (#56)
  • stimulus add controllersDir option to prevent analyse Stimulus meta for other files.

v7.1.0

v7.0.5

v7.0.4

v7.0.3

  • stimulus fix import.meta regex to support comments

v7.0.2

  • stimulus plugin check module entrypoint inside controllers.json
  • fix vite-plugin-symfony partial options TypeScript type.

v7.0.1

  • fix Symfony try to register twice TypeExtension.

v7.0.0

  • new Profiler
  • change crossorin default value
  • better PreloadAssetsEventListener
  • stimulus refactorisation

v6.5.3

  • fix vite-plugin-symfony tsup export when package is ESM.

... (truncated)

Commits
  • debaf66 change vite-plugin-symfony package.json version
  • 7faea62 fix #59 shared changelog in a subtree
  • 1a84cb9 changing bug_report github template from yaml to md
  • a53c978 change GitHub issue templates from subtree split repositories
  • bbec6ea change vite-plugin-symfony package.json version
  • 6035378 vite-plugin-symfony fix #60 move postinstall hook to pre-dev
  • 6ccf34e change vite-plugin-symfony package.json version
  • 1032f3a chore: fix typo errors
  • e30ee50 chore: vite plugin move unit tests next to their associated file
  • 6b512f2 chore remove ux-assets hardcode hack
  • Additional commits viewable in compare view

Updates @vitejs/plugin-vue from 5.0.5 to 5.2.1

Release notes

Sourced from @​vitejs/plugin-vue's releases.

plugin-vue@5.2.1

Please refer to CHANGELOG.md for details.

plugin-vue@5.2.0

Please refer to CHANGELOG.md for details.

plugin-vue@5.1.5

Please refer to CHANGELOG.md for details.

plugin-vue@5.1.4

Please refer to CHANGELOG.md for details.

plugin-vue@5.1.3

Please refer to CHANGELOG.md for details.

plugin-vue@5.1.2

Please refer to CHANGELOG.md for details.

plugin-vue@5.1.1

Please refer to CHANGELOG.md for details.

plugin-vue@5.1.0

Please refer to CHANGELOG.md for details.

Changelog

Sourced from @​vitejs/plugin-vue's changelog.

5.2.1 (2024-11-26)

5.2.0 (2024-11-13)

  • feat: add a feature option to support custom component id generator (#461) (7a1fc4c), closes #461

5.1.5 (2024-11-11)

5.1.4 (2024-09-16)

  • chore: format (07b29a6)
  • chore(deps): update dependency rollup to ^4.21.3 (#440) (98766c2), closes #440
  • fix: skip checking private properties of typeParameters (#443) (e4f5fff), closes #443
  • fix(plugin-vue): allow overwrite esbuild config (#444) (1344294), closes #444

5.1.3 (2024-08-29)

  • chore: upgrade to eslint 9 (236a40f)
  • chore: use pnpm catalog for shared deps (0735e18)
  • chore(deps): update dependency rollup to ^4.20.0 (#433) (37c9073), closes #433
  • chore(deps): update upstream (#436) (b75a46f), closes #436
  • fix(deps): update all non-major dependencies (#421) (e3a7fec), closes #421
  • fix(plugin-vue): default value for __VUE_OPTIONS_API__ (acb57c9), closes #438

5.1.2 (2024-08-01)

  • refactor(plugin-vue): add type field (a6b7e3f)

... (truncated)

Commits
  • d156ad7 release: plugin-vue@5.2.1
  • 4288652 chore: add vite 6 peer dep (#481)
  • b2df95e chore(deps): update dependency rollup to ^4.27.2 (#476)
  • 378aea3 chore: fix lint
  • 7edc3d9 release: plugin-vue@5.2.0
  • 7a1fc4c feat: add a feature option to support custom component id generator (#461)
  • 7d081cc release: plugin-vue@5.1.5
  • 91210cc chore(deps): update dependency rollup to ^4.25.0 (#472)
  • e432bcb fix(deps): update all non-major dependencies (#439)
  • 62b17f3 fix(hmr): should reload if relies file changed after re-render (#471)
  • Additional commits viewable in compare view

Updates vite from 5.3.4 to 6.2.1

Release notes

Sourced from vite's releases.

create-vite@6.2.1

Please refer to CHANGELOG.md for details.

v6.2.1

Please refer to CHANGELOG.md for details.

create-vite@6.2.0

Please refer to CHANGELOG.md for details.

v6.2.0

Please refer to CHANGELOG.md for details.

v6.2.0-beta.1

Please refer to CHANGELOG.md for details.

v6.2.0-beta.0

Please refer to CHANGELOG.md for details.

create-vite@6.1.1

Please refer to CHANGELOG.md for details.

v6.1.1

Please refer to CHANGELOG.md for details.

create-vite@6.1.0

Please refer to CHANGELOG.md for details.

v6.1.0

Please refer to CHANGELOG.md for details.

v6.1.0-beta.2

Please refer to CHANGELOG.md for details.

v6.1.0-beta.1

Please refer to CHANGELOG.md for details.

v6.1.0-beta.0

Please refer to CHANGELOG.md for details.

v6.0.11

Please refer to CHANGELOG.md for details.

v6.0.10

Please refer to CHANGELOG.md for details.

v6.0.9

This version contains a breaking change due to security fixes. See GHSA-vg6x-rcgg-rjx6 for more details.

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vite's changelog.

6.2.1 (2025-03-07)

6.2.0 (2025-02-25)

6.2.0-beta.1 (2025-02-21)

  • fix(css): temporary add ?. after this.getModuleInfo in vite:css-post (#19478) (12b0b8a), closes #19478

6.2.0-beta.0 (2025-02-21)

6.1.1 (2025-02-19)

... (truncated)

Commits
  • d8461b5 release: v6.2.0
  • c94c9e0 fix(deps): update all non-major dependencies (#19501)
  • 5c70296 chore: use unicode cross icon instead of x (#19497)
  • 07091a1 fix(worker): string interpolation in dynamic worker options (#19476)
  • e01573a release: v6.2.0-beta.1
  • 12b0b8a fix(css): temporary add ?. after this.getModuleInfo in vite:css-post (#...
  • d686252 release: v6.2.0-beta.0
  • 3ebd838 feat(css): allow scoping css to importers exports (#19418)
  • f6926ca feat: use host url to open browser (#19414)
  • c575b82 feat: show mode on server start and add env debugger (#18808)
  • Additional commits viewable in compare view

Updates vite-plugin-vue-devtools from 7.3.6 to 7.7.2

Release notes

Sourced from vite-plugin-vue-devtools's releases.

v7.7.2

   🐞 Bug Fixes

    View changes on GitHub

v7.7.1

   🚀 Features

    View changes on GitHub

v7.7.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v7.6.8

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v7.6.7

   🐞 Bug Fixes

    View changes on GitHub

v7.6.6

   🚀 Features

... (truncated)

Commits
  • bf491cd chore: release v7.7.2
  • 93c6bb8 chore: release v7.7.1
  • 144cc3f chore(deps): update dependency pathe to v2 (#760)
  • 87f80d4 chore: release v7.7.0
  • e758ac3 fix(vite): add configured headers for devtool-related response (#710)
  • c823a87 chore(vite): remove newline on server urls (#759)
  • 12e5b97 chore: pin vite-plugin-inspect version
  • 6059532 chore: release v7.6.8
  • 61b5df8 chore: pin vite-plugin-inspect as patch range
  • c8cfd6a feat: support vite-plugin-inspect for both Vite 5 and 6 (#730)
  • Additional commits viewable in compare view

Updates vitest from 1.6.0 to 3.0.8

Release notes

Sourced from vitest's releases.

v3.0.8

   🐞 Bug Fixes

    View changes on GitHub

v3.0.7

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v3.0.6

   🐞 Bug Fixes

... (truncated)

Commits
  • 814d5df chore: release v3.0.8
  • 57c3234 chore: remove hijackVitePluginInject (#7613)
  • 1a88b1b chore(deps): update dependency strip-literal to v3 (#7601)
  • 4325ac6 fix: correctly split the argv string (#7533)
  • 7f7ff11 fix: remove vestigial spy stub, import directly from @vitest/spy (#7575)
  • fee90d8 fix(browser): print related test file and potential test in unhandled errors ...
  • 1a8b433 fix: fix fetch cache multiple writes (#7546)
  • 358cccf chore: release v3.0.7
  • 365ffe6 fix(deps): update all non-major dependencies (#7543)
  • aaa5855 perf(browser): do wdio context switching only once per file (#7549)
  • 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 an...

Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 11, 2025
…gin-vue-devtools and vitest

Bumps [esbuild](https://github.com/evanw/esbuild) to 0.25.1 and updates ancestor dependencies [esbuild](https://github.com/evanw/esbuild), [vite-plugin-symfony](https://github.com/lhapaipai/vite-plugin-symfony), [@vitejs/plugin-vue](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue), [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite), [vite-plugin-vue-devtools](https://github.com/vuejs/devtools/tree/HEAD/packages/vite) and [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest). These dependencies need to be updated together.


Updates `esbuild` from 0.21.5 to 0.25.1
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md)
- [Commits](evanw/esbuild@v0.21.5...v0.25.1)

Updates `vite-plugin-symfony` from 6.4.7 to 8.0.2
- [Changelog](https://github.com/lhapaipai/vite-plugin-symfony/blob/main/CHANGELOG.md)
- [Commits](lhapaipai/vite-plugin-symfony@v6.4.7...v8.0.2)

Updates `@vitejs/plugin-vue` from 5.0.5 to 5.2.1
- [Release notes](https://github.com/vitejs/vite-plugin-vue/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-vue/blob/main/packages/plugin-vue/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-vue/commits/plugin-vue@5.2.1/packages/plugin-vue)

Updates `vite` from 5.3.4 to 6.2.1
- [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/create-vite@6.2.1/packages/vite)

Updates `vite-plugin-vue-devtools` from 7.3.6 to 7.7.2
- [Release notes](https://github.com/vuejs/devtools/releases)
- [Commits](https://github.com/vuejs/devtools/commits/v7.7.2/packages/vite)

Updates `vitest` from 1.6.0 to 3.0.8
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.0.8/packages/vitest)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-type: indirect
- dependency-name: vite-plugin-symfony
  dependency-type: direct:production
- dependency-name: "@vitejs/plugin-vue"
  dependency-type: direct:development
- dependency-name: vite
  dependency-type: direct:development
- dependency-name: vite-plugin-vue-devtools
  dependency-type: direct:development
- dependency-name: vitest
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/src/Resources/multi-0b09d9ed04 branch from 94a4cc8 to f37e227 Compare March 13, 2025 08:55
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