Skip to content

Bump esbuild, vuetify, @vitejs/plugin-vue, vite, vite-plugin-static-copy and vite-plugin-vuetify#53

Merged
NingW101 merged 1 commit intomainfrom
dependabot/npm_and_yarn/multi-0cd9782b56
Mar 4, 2025
Merged

Bump esbuild, vuetify, @vitejs/plugin-vue, vite, vite-plugin-static-copy and vite-plugin-vuetify#53
NingW101 merged 1 commit intomainfrom
dependabot/npm_and_yarn/multi-0cd9782b56

Conversation

@dependabot
Copy link
Contributor

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

Bumps esbuild to 0.25.0 and updates ancestor dependencies esbuild, vuetify, @vitejs/plugin-vue, vite, vite-plugin-static-copy and vite-plugin-vuetify. These dependencies need to be updated together.

Updates esbuild from 0.18.16 to 0.25.0

Release notes

Sourced from esbuild's releases.

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.

  • Fix correctness issues with the CSS nesting transform (#3620, #3877, #3933, #3997, #4005, #4037, #4038)

    This release fixes the following problems:

    • Naive expansion of CSS nesting can result in an exponential blow-up of generated CSS if each nesting level has multiple selectors. Previously esbuild sometimes collapsed individual nesting levels using :is() to limit expansion. However, this collapsing wasn't correct in some cases, so it has been removed to fix correctness issues.

      /* Original code */
      .parent {
        > .a,
        > .b1 > .b2 {
          color: red;
        }
      }
      /* Old output (with --supported:nesting=false) */
      .parent > :is(.a, .b1 > .b2) {
      color: red;
      }
      /* New output (with --supported:nesting=false) */
      .parent > .a,
      .parent > .b1 > .b2 {
      color: red;
      }

      Thanks to @​tim-we for working on a fix.

    • The & CSS nesting selector can be repeated multiple times to increase CSS specificity. Previously esbuild ignored this possibility and incorrectly considered && to have the same specificity as &. With this release, this should now work correctly:

      /* Original code (color should be red) */

... (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
  • e9174d6 publish 0.25.0 to npm
  • c27dbeb fix hosts in plugin-tests.js
  • 6794f60 fix hosts in node-unref-tests.js
  • de85afd Merge commit from fork
  • da1de1b fix #4065: bitwise operators can return bigints
  • f4e9d19 switch case liveness: default is always last
  • 7aa47c3 fix #4028: minify live/dead switch cases better
  • 22ecd30 minify: more constant folding for strict equality
  • 4cdf03c fix #4053: reordering of .tsx in node_modules
  • dc71977 fix #3692: 0 now picks a random ephemeral port
  • Additional commits viewable in compare view

Updates vuetify from 3.2.0 to 3.7.14

Release notes

Sourced from vuetify's releases.

v3.7.14

🔧 Bug Fixes

🔬 Code Refactoring

  • VTreeview/VTreeviewChildren: pass through density for checkbox btn (a5cd6f3)

🧪 Labs

  • VDateInput: add missing slot types (d32fa31)
  • VNumberInput: apply precision even when disabled/readonly (#21010) (389be09), closes #21005
  • VTreeview: indentation parity with v2 (#21007) (7f02244)

v3.7.13

🔧 Bug Fixes

🔬 Code Refactoring

  • framework: remove redundant pick function (a438986)
  • VTreeviewItem: reuse VListItem link and clean-up code (3cbe7a4), closes #19919

🔄 Reverts

  • Revert "fix(VNavigationDrawer): don't restrict elementSize when..." (8294e8c)

🧪 Labs

... (truncated)

Commits
  • c7c2fa4 chore(release): publish v3.7.14
  • e3ef513 fix(VFileInput): closable slotted chips (#20250)
  • 98003f2 fix(DateAdapter): update date formats to match interface (#20229)
  • 389be09 fix(VNumberInput): apply precision even when disabled/readonly (#21010)
  • d518fc1 fix(locale): add missing japanese translations (#21009)
  • 6893c16 docs: typos (#21020)
  • a5cd6f3 refactor(VTreeview/VTreeviewChildren): pass through density for checkbox btn
  • 7f02244 fix(VTreeview): indentation parity with v2 (#21007)
  • d32fa31 fix(VDateInput): add missing slot types
  • 809a300 chore(VTreeview): remove empty line
  • Additional commits viewable in compare view

Updates @vitejs/plugin-vue from 4.2.3 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.

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.

plugin-vue@5.0.0-beta.0

Please refer to CHANGELOG.md for details.

plugin-vue@5.0.0-alpha.0

Please refer to CHANGELOG.md for details.

... (truncated)

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 4.5.9 to 6.2.0

Release notes

Sourced from vite's releases.

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.

v6.0.8

Please refer to CHANGELOG.md for details.

v6.0.7

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vite's changelog.

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)

6.1.0 (2025-02-05)

Features

... (truncated)

Commits

Updates vite-plugin-static-copy from 0.13.1 to 2.3.0

Release notes

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

vite-plugin-static-copy@2.3.0

Minor Changes

Patch Changes

vite-plugin-static-copy@2.2.0

Minor Changes

vite-plugin-static-copy@2.1.0

Minor Changes

  • #133 b9c09bd Thanks @​rschristian! - Allows user to optionally configure when the plugin is ran by passing in a Rollup hook name

vite-plugin-static-copy@2.0.0

Major Changes

vite-plugin-static-copy@1.0.6

Patch Changes

  • #121 d68aec9 Thanks @​tobz1000! - The value of Content-Type header was inferred and set from the src file extension. It is now infered from the dest file extension.

vite-plugin-static-copy@1.0.5

Patch Changes

vite-plugin-static-copy@1.0.4

Patch Changes

vite-plugin-static-copy@1.0.3

Patch Changes

vite-plugin-static-copy@1.0.2

Patch Changes

vite-plugin-static-copy@1.0.1

... (truncated)

Changelog

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

2.3.0

Minor Changes

Patch Changes

2.2.0

Minor Changes

2.1.0

Minor Changes

  • #133 b9c09bd Thanks @​rschristian! - Allows user to optionally configure when the plugin is ran by passing in a Rollup hook name

2.0.0

Major Changes

1.0.6

Patch Changes

  • #121 d68aec9 Thanks @​tobz1000! - The value of Content-Type header was inferred and set from the src file extension. It is now infered from the dest file extension.

1.0.5

Patch Changes

1.0.4

Patch Changes

1.0.3

Patch Changes

... (truncated)

Commits

Updates vite-plugin-vuetify from 1.0.2 to 2.1.0

Release notes

Sourced from vite-plugin-vuetify's releases.

v2.0.0

Changelogs for each package are now a separate file in their respective directories: https://github.com/vuetifyjs/vuetify-loader/tree/master/packages

v1.9.2

Bug Fixes

  • auto-import directives with v-on and v-bind (d0e115c), closes #258

v1.9.1

Bug Fixes

v1.9.0

Features

v1.7.3

Bug Fixes

  • add check before calling find on vue rule (#170) (22e2492)
  • add warning when used with asset modules (d5446df)
  • clone rules before adding oneOf (9a99f29), closes #186

v1.7.2

Bug Fixes

v1.7.1

Bug Fixes

v1.7.0

Features

v1.6.0

Bug Fixes

  • don't try to load custom blocks in .vue files (86751a1)
  • handle multiple vue-loader rules (9f0e669), closes #106

... (truncated)

Commits

…opy and vite-plugin-vuetify

Bumps [esbuild](https://github.com/evanw/esbuild) to 0.25.0 and updates ancestor dependencies [esbuild](https://github.com/evanw/esbuild), [vuetify](https://github.com/vuetifyjs/vuetify/tree/HEAD/packages/vuetify), [@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-static-copy](https://github.com/sapphi-red/vite-plugin-static-copy) and [vite-plugin-vuetify](https://github.com/vuetifyjs/vuetify-loader). These dependencies need to be updated together.


Updates `esbuild` from 0.18.16 to 0.25.0
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2023.md)
- [Commits](evanw/esbuild@v0.18.16...v0.25.0)

Updates `vuetify` from 3.2.0 to 3.7.14
- [Release notes](https://github.com/vuetifyjs/vuetify/releases)
- [Commits](https://github.com/vuetifyjs/vuetify/commits/v3.7.14/packages/vuetify)

Updates `@vitejs/plugin-vue` from 4.2.3 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 4.5.9 to 6.2.0
- [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.0/packages/vite)

Updates `vite-plugin-static-copy` from 0.13.1 to 2.3.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/v0.13.1...vite-plugin-static-copy@2.3.0)

Updates `vite-plugin-vuetify` from 1.0.2 to 2.1.0
- [Release notes](https://github.com/vuetifyjs/vuetify-loader/releases)
- [Commits](https://github.com/vuetifyjs/vuetify-loader/compare/vite-plugin-vuetify@1.0.2...vite-plugin-vuetify@2.1.0)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-type: indirect
- dependency-name: vuetify
  dependency-type: direct:production
- dependency-name: "@vitejs/plugin-vue"
  dependency-type: direct:development
- dependency-name: vite
  dependency-type: direct:development
- dependency-name: vite-plugin-static-copy
  dependency-type: direct:development
- dependency-name: vite-plugin-vuetify
  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 4, 2025
@NingW101 NingW101 merged commit dd93958 into main Mar 4, 2025
1 check passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/multi-0cd9782b56 branch March 4, 2025 01:53
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