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 the npm_and_yarn group across 4 directories with 11 updates #3258

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 Apr 2, 2025

Bumps the npm_and_yarn group with 3 updates in the /angular-workspace/ng17 directory: esbuild, @angular-devkit/build-angular and ng-packagr.
Bumps the npm_and_yarn group with 4 updates in the /angular-workspace/test-ng15 directory: @babel/helpers, esbuild, @angular-devkit/build-angular and ng-packagr.
Bumps the npm_and_yarn group with 1 update in the /react-workspace/test-react-v18 directory: webpack.
Bumps the npm_and_yarn group with 4 updates in the /react-workspace/test-web-components directory: @babel/helpers, @babel/runtime, serialize-javascript and webpack.

Updates esbuild from 0.19.12 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 @angular-devkit/build-angular from 17.3.8 to 19.2.5

Release notes

Sourced from @​angular-devkit/build-angular's releases.

19.2.5

@​angular/build

Commit Description
fix - 20455e2a6 correct handling of response/request errors
fix - 32b1dcd91 handle undefined getOrCreateAngularServerApp during error compilation
fix - 7552a9fec normalize karma asset paths before lookup
fix - 1eb5b4357 update vite to 6.2.3

v19.2.4

19.2.4 (2025-03-19)

@​schematics/angular

Commit Description
fix - 0a4e96bda replace @angular/platform-browser-dynamic with @angular/platform-browser

@​angular/build

Commit Description
fix - b0b643e46 ensure errors for missing component resources
fix - 2cd763e89 ensure relative karma stack traces for test failures

v19.2.3

19.2.3 (2025-03-13)

@​angular/build

Commit Description
fix - 5a739820b update babel packages

v19.2.2

19.2.2 (2025-03-12)

@​angular/cli

Commit Description
fix - 0ee24e29b record analytics for nested schematics

@​angular/build

Commit Description
fix - 4575265f0 exclude all entrypoints of a library from prebundling
fix - 83fcffbb7 handle postcss compilation errors gracefully
fix - 78297ee47 provide extract-i18n does not respect
fix - b18b9c8f2 remove duplicate prebundling warning

@​angular/ssr

Commit Description
fix - e6e8ce960 prevent stream draining if write does not return a boolean

v19.2.1

... (truncated)

Changelog

Sourced from @​angular-devkit/build-angular's changelog.

19.2.5 (2025-03-26)

@​angular/build

Commit Type Description
20455e2a6 fix correct handling of response/request errors
32b1dcd91 fix handle undefined getOrCreateAngularServerApp during error compilation
7552a9fec fix normalize karma asset paths before lookup
1eb5b4357 fix update vite to 6.2.3

18.2.16 (2025-03-26)

@​angular-devkit/build-angular

Commit Type Description
4267a80c5 fix remove @vitejs/plugin-basic-ssl from dependencies

@​angular/build

Commit Type Description
9c2904d0d fix update vite to 5.4.15

17.3.14 (2025-03-26)

@​angular-devkit/build-angular

Commit Type Description
cb8f859f1 fix update vite to 5.4.15

20.0.0-next.2 (2025-03-19)

Breaking Changes

@​schematics/angular

... (truncated)

Commits
  • ab0bdce release: cut the v19.2.5 release
  • 1eb5b43 fix(@​angular/build): update vite to 6.2.3
  • 7552a9f fix(@​angular/build): normalize karma asset paths before lookup
  • 32b1dcd fix(@​angular/build): handle undefined getOrCreateAngularServerApp during er...
  • 20455e2 fix(@​angular/build): correct handling of response/request errors
  • e2413f5 test: correct test description typos
  • 148023a release: cut the v19.2.4 release
  • b0b643e fix(@​angular/build): ensure errors for missing component resources
  • 0a4e96b fix(@​schematics/angular): replace @angular/platform-browser-dynamic with `@...
  • 2cd763e fix(@​angular/build): ensure relative karma stack traces for test failures
  • Additional commits viewable in compare view

Updates ng-packagr from 17.3.0 to 19.2.1

Release notes

Sourced from ng-packagr's releases.

19.2.1

Bug Fixes

  • correctly resolve SCSS resources from nested paths (2fcbe68), closes #3006

19.2.0

No release notes provided.

19.2.0-next.2

Features

19.2.0-next.1

  • add tailwindcss version 4 as a valid peer dependency (16561cd)

19.2.0-next.0

No changes.

19.1.2

  • add tailwindcss version 4 as a valid peer dependency (719577c)

19.1.1

Bug Fixes

  • disable TypeScript removeComments option (f0415dd)

19.1.0

Features

Bug Fixes

  • Re-use module resolution cache.

Performance

  • mitigate TypeScript 5.6+ performance regression (ac9766e), closes #2969

19.1.0-next.4

Performance

  • mitigate TypeScript 5.6+ performance regression (ac9766e), closes #2969

19.1.0-next.3

... (truncated)

Changelog

Sourced from ng-packagr's changelog.

19.2.1 (2025-04-02)

Bug Fixes

  • correctly resolve SCSS resources from nested paths (2fcbe68), closes #3006

19.2.0 (2025-02-25)

19.2.0-next.2 (2025-02-10)

Features

19.2.0-next.1 (2025-01-29)

Bug Fixes

  • add tailwindcss version 4 as a valid peer dependency (16561cd)

19.2.0-next.0 (2025-01-24)

19.1.1 (2025-01-24)

Bug Fixes

  • disable TypeScript removeComments option (f0415dd)

19.1.0 (2025-01-15)

Features

Bug Fixes

  • Re-use module resolution cache.
  • adjust peerDependencies to allow Angular 19.1.0-next (d27ef5b)

Performance

  • mitigate TypeScript 5.6+ performance regression (ac9766e), closes #2969

19.1.0-next.4 (2025-01-15)

... (truncated)

Commits
  • 74ef3e0 release: cut 19.2.1
  • 2fcbe68 fix: correctly resolve SCSS resources from nested paths
  • ce8bffb release: cut 19.2.0
  • 6e1b1a7 build: lock file maintenance
  • e15f7c2 release: cut 19.2.0-next.2
  • 990f723 build: update dependency typescript to v5.8.0-dev.20250210
  • ca3ec77 build: update dependency prettier to ~3.5.0
  • 446b33f build: update dependency esbuild to ^0.25.0
  • 42cdd85 build: lock file maintenance
  • 4dc79fa feat: support TypeScript 5.8
  • Additional commits viewable in compare view

Updates postcss from 8.4.35 to 8.5.2

Release notes

Sourced from postcss's releases.

8.5.2

8.5.1

8.5 “Duke Alloces”

PostCSS 8.5 brought API to work better with non-CSS sources like HTML, Vue.js/Svelte sources or CSS-in-JS.

@​romainmenke during his work on Stylelint added Input#document in additional to Input#css.

root.source.input.document //=> "<p>Hello</p>
                           //    <style>
                           //    p {
                           //      color: green;
                           //    }
                           //    </style>"
root.source.input.css      //=> "p {
                           //      color: green;
                           //    }"

Thanks to Sponsors

This release was possible thanks to our community.

If your company wants to support the sustainability of front-end infrastructure or wants to give some love to PostCSS, you can join our supporters by:

8.4.49

8.4.48

  • Fixed position calculation in error/warnings methods (by @​romainmenke).

8.4.47

  • Removed debug code.

8.4.46

  • Fixed Cannot read properties of undefined (reading 'before').

8.4.45

  • Removed unnecessary fix which could lead to infinite loop.

... (truncated)

Changelog

Sourced from postcss's changelog.

8.5.2

8.5.1

8.5 “Duke Alloces”

  • Added Input#document for sources like CSS-in-JS or HTML (by @​romainmenke).

8.4.49

8.4.48

  • Fixed position calculation in error/warnings methods (by @​romainmenke).

8.4.47

  • Removed debug code.

8.4.46

  • Fixed Cannot read properties of undefined (reading 'before').

8.4.45

  • Removed unnecessary fix which could lead to infinite loop.

8.4.44

  • Another way to fix markClean is not a function error.

8.4.43

  • Fixed markClean is not a function error.

8.4.42

  • Fixed CSS syntax error on long minified files (by @​varpstar).

8.4.41

8.4.40

  • Moved to getter/setter in nodes types to help Sass team (by @​nex3).

8.4.39

8.4.38

8.4.37

  • Fixed original.column are not numbers error in another case.

8.4.36

... (truncated)

Commits

Updates rollup from 4.22.4 to 4.34.8

Release notes

Sourced from rollup's releases.

v4.34.8

4.34.8

2025-02-17

Bug Fixes

  • Do not make assumptions about the value of nested paths in logical expressions if the expression cannot be simplified (#5846)

Pull Requests

  • #5846: return UnknownValue if the usedbranch is unkown and the path is not empty (@​TrickyPi)

v4.34.7

4.34.7

2025-02-14

Bug Fixes

  • Ensure that calls to parameters are included correctly when using try-catch deoptimization (#5842)

Pull Requests

v4.34.6

4.34.6

2025-02-07

Bug Fixes

  • Retain "void 0" in the output for smaller output and fewer surprises (#5838)

Pull Requests

v4.34.5

4.34.5

2025-02-07

Bug Fixes

  • Ensure namespace reexports always include all properties of all exports (#5837)

... (truncated)

Changelog

Sourced from rollup's changelog.

4.34.8

2025-02-17

Bug Fixes

  • Do not make assumptions about the value of nested paths in logical expressions if the expression cannot be simplified (#5846)

Pull Requests

  • #5846: return UnknownValue if the usedbranch is unkown and the path is not empty (@​TrickyPi)

4.34.7

2025-02-14

Bug Fixes

  • Ensure that calls to parameters are included correctly when using try-catch deoptimization (#5842)

Pull Requests

4.34.6

2025-02-07

Bug Fixes

  • Retain "void 0" in the output for smaller output and fewer surprises (#5838)

Pull Requests

4.34.5

2025-02-07

Bug Fixes

  • Ensure namespace reexports always include all properties of all exports (#5837)

Pull Requests

... (truncated)

Commits

Updates vite from 5.1.7 to 6.2.3

Release notes

Sourced from vite's releases.

v6.2.3

Please refer to CHANGELOG.md for details.

v6.2.2

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

v6.2.1

Please refer to CHANGELOG.md for details.

[email protected]

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.

v6.1.3

Please refer to CHANGELOG.md for details.

v6.1.2

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

v6.1.1

Please refer to CHANGELOG.md for details.

[email protected]

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.

... (truncated)

Changelog

Sourced from vite's changelog.

6.2.3 (2025-03-24)

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)

... (truncated)

Commits
  • 16869d7 release: v6.2.3
  • f234b57 fix: fs raw query with query separators (#19702)
  • 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)
  • Additional commits viewable in compare view

Updates webpack from 5.90.3 to 5.98.0

Release notes

Sourced from webpack's releases.

v5.98.0

Fixes

Performance Improvements

Chores

Bumps the npm_and_yarn group with 3 updates in the /angular-workspace/ng17 directory: [esbuild](https://github.com/evanw/esbuild), [@angular-devkit/build-angular](https://github.com/angular/angular-cli) and [ng-packagr](https://github.com/ng-packagr/ng-packagr).
Bumps the npm_and_yarn group with 4 updates in the /angular-workspace/test-ng15 directory: [@babel/helpers](https://github.com/babel/babel/tree/HEAD/packages/babel-helpers), [esbuild](https://github.com/evanw/esbuild), [@angular-devkit/build-angular](https://github.com/angular/angular-cli) and [ng-packagr](https://github.com/ng-packagr/ng-packagr).
Bumps the npm_and_yarn group with 1 update in the /react-workspace/test-react-v18 directory: [webpack](https://github.com/webpack/webpack).
Bumps the npm_and_yarn group with 4 updates in the /react-workspace/test-web-components directory: [@babel/helpers](https://github.com/babel/babel/tree/HEAD/packages/babel-helpers), [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime), [serialize-javascript](https://github.com/yahoo/serialize-javascript) and [webpack](https://github.com/webpack/webpack).


Updates `esbuild` from 0.19.12 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.19.12...v0.25.1)

Updates `@angular-devkit/build-angular` from 17.3.8 to 19.2.5
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md)
- [Commits](angular/angular-cli@17.3.8...19.2.5)

Updates `ng-packagr` from 17.3.0 to 19.2.1
- [Release notes](https://github.com/ng-packagr/ng-packagr/releases)
- [Changelog](https://github.com/ng-packagr/ng-packagr/blob/19.2.1/CHANGELOG.md)
- [Commits](ng-packagr/ng-packagr@17.3.0...19.2.1)

Updates `postcss` from 8.4.35 to 8.5.2
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.35...8.5.2)

Updates `rollup` from 4.22.4 to 4.34.8
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.22.4...v4.34.8)

Updates `vite` from 5.1.7 to 6.2.3
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v6.2.3/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v6.2.3/packages/vite)

Updates `webpack` from 5.90.3 to 5.98.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.97.1...v5.98.0)

Updates `webpack-dev-middleware` from 5.3.4 to 7.4.2
- [Release notes](https://github.com/webpack/webpack-dev-middleware/releases)
- [Changelog](https://github.com/webpack/webpack-dev-middleware/blob/master/CHANGELOG.md)
- [Commits](webpack/webpack-dev-middleware@v5.3.4...v7.4.2)

Updates `@babel/helpers` from 7.23.2 to 7.27.0
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.0/packages/babel-helpers)

Updates `esbuild` from 0.17.8 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.19.12...v0.25.1)

Updates `@angular-devkit/build-angular` from 15.2.11 to 19.2.5
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md)
- [Commits](angular/angular-cli@17.3.8...19.2.5)

Updates `ng-packagr` from 15.2.2 to 19.2.1
- [Release notes](https://github.com/ng-packagr/ng-packagr/releases)
- [Changelog](https://github.com/ng-packagr/ng-packagr/blob/19.2.1/CHANGELOG.md)
- [Commits](ng-packagr/ng-packagr@17.3.0...19.2.1)

Updates `postcss` from 8.4.31 to 8.5.2
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.35...8.5.2)

Updates `rollup` from 3.29.5 to 4.34.8
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.22.4...v4.34.8)

Updates `serialize-javascript` from 6.0.1 to 6.0.2
- [Release notes](https://github.com/yahoo/serialize-javascript/releases)
- [Commits](yahoo/serialize-javascript@v6.0.1...v6.0.2)

Updates `webpack` from 5.76.1 to 5.98.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.97.1...v5.98.0)

Updates `webpack-dev-middleware` from 5.3.4 to 7.4.2
- [Release notes](https://github.com/webpack/webpack-dev-middleware/releases)
- [Changelog](https://github.com/webpack/webpack-dev-middleware/blob/master/CHANGELOG.md)
- [Commits](webpack/webpack-dev-middleware@v5.3.4...v7.4.2)

Updates `webpack` from 5.97.1 to 5.98.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.97.1...v5.98.0)

Updates `@babel/helpers` from 7.22.15 to 7.27.0
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.0/packages/babel-helpers)

Updates `@babel/runtime` from 7.22.15 to 7.27.0
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.0/packages/babel-runtime)

Updates `serialize-javascript` from 6.0.1 to 6.0.2
- [Release notes](https://github.com/yahoo/serialize-javascript/releases)
- [Commits](yahoo/serialize-javascript@v6.0.1...v6.0.2)

Updates `webpack` from 5.94.0 to 5.98.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.97.1...v5.98.0)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@angular-devkit/build-angular"
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: ng-packagr
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: postcss
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: rollup
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: webpack
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: webpack-dev-middleware
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@babel/helpers"
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: esbuild
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@angular-devkit/build-angular"
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: ng-packagr
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: postcss
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: rollup
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: serialize-javascript
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: webpack
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: webpack-dev-middleware
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: webpack
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@babel/helpers"
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@babel/runtime"
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: serialize-javascript
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: webpack
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner April 2, 2025 10:23
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 2, 2025
Copy link

netlify bot commented Apr 2, 2025

Deploy Preview for moduswebcomponents canceled.

Name Link
🔨 Latest commit 3a2f877
🔍 Latest deploy log https://app.netlify.com/sites/moduswebcomponents/deploys/67ed102200de1e0008d18a0b

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