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

build(deps): bump esbuild, @vitejs/plugin-vue, @vitejs/plugin-vue-jsx and vite in /autoflow-fe #7

Merged
merged 1 commit into from
Mar 25, 2025

Conversation

dependabot[bot]
Copy link
Contributor

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

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

Updates esbuild from 0.18.20 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: 2023

This changelog documents all esbuild versions published in the year 2023 (versions 0.16.13 through 0.19.11).

0.19.11

  • Fix TypeScript-specific class transform edge case (#3559)

    The previous release introduced an optimization that avoided transforming super() in the class constructor for TypeScript code compiled with useDefineForClassFields set to false if all class instance fields have no initializers. The rationale was that in this case, all class instance fields are omitted in the output so no changes to the constructor are needed. However, if all of this is the case and there are #private instance fields with initializers, those private instance field initializers were still being moved into the constructor. This was problematic because they were being inserted before the call to super() (since super() is now no longer transformed in that case). This release introduces an additional optimization that avoids moving the private instance field initializers into the constructor in this edge case, which generates smaller code, matches the TypeScript compiler's output more closely, and avoids this bug:

    // Original code
    class Foo extends Bar {
      #private = 1;
      public: any;
      constructor() {
        super();
      }
    }
    // Old output (with esbuild v0.19.9)
    class Foo extends Bar {
    constructor() {
    super();
    this.#private = 1;
    }
    #private;
    }
    // Old output (with esbuild v0.19.10)
    class Foo extends Bar {
    constructor() {
    this.#private = 1;
    super();
    }
    #private;
    }
    // New output
    class Foo extends Bar {
    #private = 1;
    constructor() {
    super();
    }
    }

  • Minifier: allow reording a primitive past a side-effect (#3568)

    The minifier previously allowed reordering a side-effect past a primitive, but didn't handle the case of reordering a primitive past a side-effect. This additional case is now handled:

... (truncated)

Commits

Updates @vitejs/plugin-vue from 4.6.2 to 5.2.3

Release notes

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

plugin-vue@5.2.3

Please refer to CHANGELOG.md for details.

plugin-vue@5.2.2

Please refer to CHANGELOG.md for details.

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.

plugin-vue@5.0.5

Please refer to CHANGELOG.md for details.

plugin-vue@5.0.4

Please refer to CHANGELOG.md for details.

plugin-vue@5.0.3

Please refer to CHANGELOG.md for details.

plugin-vue@5.0.2

Please refer to CHANGELOG.md for details.

plugin-vue@5.0.1

Please refer to CHANGELOG.md for details.

plugin-vue@5.0.0

Please refer to CHANGELOG.md for details.

plugin-vue@5.0.0-beta.1

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

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

5.2.3 (2025-03-17)

5.2.2 (2025-03-17)

  • feat: pass descriptor vapor flag to compileTemplte (219e007)
  • feat(css): tree shake scoped styles (#533) (333094f), closes #533
  • fix: generate unique component id (#538) (2704e85), closes #538
  • fix: properly interpret boolean values in define (#545) (46d3d65), closes #545
  • fix(deps): update all non-major dependencies (#482) (cdbae68), closes #482
  • fix(deps): update all non-major dependencies (#488) (5d39582), closes #488
  • fix(index): move the if check earlier to avoid creating unnecessary ssr when entering return block ( (2135c84), closes #523
  • fix(plugin-vue): default value for compile time flags (#495) (ae9d948), closes #495
  • fix(plugin-vue): ensure HMR updates styles when SFC is treated as a type dependency (#541) (4abe3be), closes #541
  • fix(plugin-vue): resolve sourcemap conflicts in build watch mode with cached modules (#505) (906cebb), closes #505
  • fix(plugin-vue): support external import URLs for monorepos (#524) (cdd4922), closes #524
  • fix(plugin-vue): support vapor template-only component (#529) (95be153), closes #529
  • fix(plugin-vue): suppress warnings for non-recognized pseudo selectors form lightningcss (#521) (15c0eb0), closes #521
  • chore(deps): update dependency rollup to ^4.27.4 (#479) (428320d), closes #479
  • chore(deps): update dependency rollup to ^4.28.1 (#484) (388403f), closes #484
  • chore(deps): update dependency rollup to ^4.29.1 (#493) (b092bc8), closes #493
  • chore(deps): update upstream (#503) (8c12b9f), closes #503
  • chore(deps): update upstream (#511) (d057351), closes #511
  • chore(deps): update upstream (#526) (59946d3), closes #526
  • chore(plugin-vue): simplify resolved declaration (7288a59)

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)

... (truncated)

Commits
  • b733b91 release: plugin-vue@5.2.3
  • 4bc5517 Revert "fix: generate unique component id" (#548)
  • 979cbbf release: plugin-vue@5.2.2
  • 333094f feat(css): tree shake scoped styles (#533)
  • 906cebb fix(plugin-vue): resolve sourcemap conflicts in build watch mode with cached ...
  • 2704e85 fix: generate unique component id (#538)
  • 46d3d65 fix: properly interpret boolean values in define (#545)
  • 4abe3be fix(plugin-vue): ensure HMR updates styles when SFC is treated as a type depe...
  • 59946d3 chore(deps): update upstream (#526)
  • 95be153 fix(plugin-vue): support vapor template-only component (#529)
  • Additional commits viewable in compare view

Updates @vitejs/plugin-vue-jsx from 3.1.0 to 4.1.2

Release notes

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

plugin-vue-jsx@4.1.2

Please refer to CHANGELOG.md for details.

plugin-vue-jsx@4.1.1

Please refer to CHANGELOG.md for details.

plugin-vue@4.1.0

Please refer to CHANGELOG.md for details.

plugin-vue-jsx@4.1.0

Please refer to CHANGELOG.md for details.

plugin-vue@4.1.0-beta.0

Please refer to CHANGELOG.md for details.

plugin-vue-jsx@4.0.1

Please refer to CHANGELOG.md for details.

plugin-vue@4.0.0

Please refer to CHANGELOG.md for details.

plugin-vue-jsx@4.0.0

Please refer to CHANGELOG.md for details.

plugin-vue@4.0.0-beta.0

Please refer to CHANGELOG.md for details.

Changelog

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

4.1.2 (2025-03-17)

  • fix: properly interpret boolean values in define (#545) (46d3d65), closes #545
  • fix(deps): update all non-major dependencies (#482) (cdbae68), closes #482
  • fix(deps): update all non-major dependencies (#502) (5bfbbc6), closes #502
  • fix(deps): update all non-major dependencies (#510) (28bca4b), closes #510

4.1.1 (2024-11-26)

4.1.0 (2024-11-11)

4.0.1 (2024-08-14)

  • chore: use pnpm catalog for shared deps (0735e18)
  • chore(deps): update upstream (#416) (02a3edd), closes #416
  • chore(deps): update upstream (#432) (5d592cd), closes #432
  • chore(vue-jsx): add type package field (a2fe479)
  • feat(vue-jsx): add defineComponentName option (0f71911)
  • fix(deps): update all non-major dependencies (#412) (8cb2ea9), closes #412

4.0.0 (2024-05-30)

... (truncated)

Commits
  • 7e59694 release: plugin-vue-jsx@4.1.2
  • 46d3d65 fix: properly interpret boolean values in define (#545)
  • 28bca4b fix(deps): update all non-major dependencies (#510)
  • 5bfbbc6 fix(deps): update all non-major dependencies (#502)
  • cdbae68 fix(deps): update all non-major dependencies (#482)
  • ff5624a release: plugin-vue-jsx@4.1.1
  • 4288652 chore: add vite 6 peer dep (#481)
  • 23ea2f9 release: plugin-vue-jsx@4.1.0
  • fdb3590 feat: support tsPluginOptions (#445)
  • e432bcb fix(deps): update all non-major dependencies (#439)
  • Additional commits viewable in compare view

Updates vite from 4.5.5 to 6.2.2

Release notes

Sourced from vite's releases.

v6.2.2

Please refer to CHANGELOG.md for details.

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.

... (truncated)

Changelog

Sourced from vite's changelog.

6.2.2 (2025-03-14)

  • fix: await client buildStart on top level buildStart (#19624) (b31faab), closes #19624
  • fix(css): inline css correctly for double quote use strict (#19590) (d0aa833), closes #19590
  • fix(deps): update all non-major dependencies (#19613) (363d691), closes #19613
  • fix(indexHtml): ensure correct URL when querying module graph (#19601) (dc5395a), closes #19601
  • fix(preview): use preview https config, not server (#19633) (98b3160), closes #19633
  • fix(ssr): use optional chaining to prevent "undefined is not an object" happening in `ssrRewriteStac (4309755), closes #19612
  • feat: show friendly error for malformed base (#19616) (2476391), closes #19616
  • feat(worker): show asset filename conflict warning (#19591) (367d968), closes #19591
  • chore: extend commit hash correctly when ambigious with a non-commit object (#19600) (89a6287), closes #19600

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)

... (truncated)

Commits
  • b12911e release: v6.2.2
  • 98b3160 fix(preview): use preview https config, not server (#19633)
  • b31faab fix: await client buildStart on top level buildStart (#19624)
  • dc5395a fix(indexHtml): ensure correct URL when querying module graph (#19601)
  • 2476391 feat: show friendly error for malformed base (#19616)
  • 4309755 fix(ssr): use optional chaining to prevent "undefined is not an object" happe...
  • 363d691 fix(deps): update all non-major dependencies (#19613)
  • d0aa833 fix(css): inline css correctly for double quote use strict (#19590)
  • 367d968 feat(worker): show asset filename conflict warning (#19591)
  • 89a6287 chore: extend commit hash correctly when ambigious with a non-commit object (...
  • 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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.

… and vite

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


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

Updates `@vitejs/plugin-vue` from 4.6.2 to 5.2.3
- [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.3/packages/plugin-vue)

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

Updates `vite` from 4.5.5 to 6.2.2
- [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/v6.2.2/packages/vite)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-type: indirect
- dependency-name: "@vitejs/plugin-vue"
  dependency-type: direct:development
- dependency-name: "@vitejs/plugin-vue-jsx"
  dependency-type: direct:development
- dependency-name: vite
  dependency-type: direct:development
...

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 Mar 21, 2025
@Yiuman Yiuman merged commit 169610f into main Mar 25, 2025
3 of 4 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/autoflow-fe/multi-36c531f021 branch March 25, 2025 03:09
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