Skip to content

Bump esbuild, @angular-builders/custom-webpack and @angular-devkit/build-angular in /core/examples/luigi-example-angular #4259

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

Open
wants to merge 9 commits into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 16, 2025

Bumps esbuild to 0.25.1 and updates ancestor dependencies esbuild, @angular-builders/custom-webpack and @angular-devkit/build-angular. 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 @angular-builders/custom-webpack from 18.0.0 to 19.0.1

Changelog

Sourced from @​angular-builders/custom-webpack's changelog.

19.0.1 (2025-04-07)

Note: Version bump only for package @​angular-builders/custom-webpack

19.0.1-beta.1 (2025-04-06)

Note: Version bump only for package @​angular-builders/custom-webpack

19.0.1-beta.0 (2025-04-03)

Note: Version bump only for package @​angular-builders/custom-webpack

19.0.0 (2025-01-05)

Note: Version bump only for package @​angular-builders/custom-webpack

19.0.0-beta.0 (2024-12-05)

⚠ BREAKING CHANGES

  • deps: update to Angular 19 (#1871)

Miscellaneous Chores

18.0.1-beta.0 (2024-07-24)

Note: Version bump only for package @​angular-builders/custom-webpack

Commits

Updates @angular-devkit/build-angular from 18.2.6 to 19.2.7

Release notes

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

19.2.7

@​angular/build

Commit Description
fix - 7f1e8c677 include component test metadata in development builds
fix - 74cd4edd5 skip normalization of relative externals

19.2.6

@​angular-devkit/schematics

Commit Description
fix - e5aec562f properly resolve relative schematics when executed from a nested directory

@​angular/build

Commit Description
fix - 76cfd364a correctly handle false value in server option
fix - d69188c6b update vite to 6.2.4 due to a security issues

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

... (truncated)

Changelog

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

19.2.7 (2025-04-09)

@​angular/build

Commit Type Description
7f1e8c677 fix include component test metadata in development builds
74cd4edd5 fix skip normalization of relative externals

18.2.18 (2025-04-09)

@​angular/build

Commit Type Description
4245ca7b4 fix update vite to 5.4.17

17.3.16 (2025-04-09)

@​angular-devkit/build-angular

Commit Type Description
5aa53b40c fix remove undici from dependencies
fce61564d fix update vite to 5.4.17

20.0.0-next.4 (2025-04-02)

@​schematics/angular

Commit Type Description
1e137ca84 feat add migration to update moduleResolution to bundler

@​angular-devkit/schematics

Commit Type Description

... (truncated)

Commits
  • e0b1bed release: cut the v19.2.7 release
  • 71537c8 build: update vite to 6.2.5
  • f4021e6 build: update beasties to 0.3.2
  • 74cd4ed fix(@​angular/build): skip normalization of relative externals
  • 7f1e8c6 fix(@​angular/build): include component test metadata in development builds
  • f3d6159 release: cut the v19.2.6 release
  • d69188c fix(@​angular/build): update vite to 6.2.4 due to a security issues
  • 61ee961 build: setup rules_esbuild in preparation for devinfra update
  • 859af4d ci: update to latest dev-infra action versions
  • e5aec56 fix(@​angular-devkit/schematics): properly resolve relative schematics when ex...
  • 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.

…ild-angular

Bumps [esbuild](https://github.com/evanw/esbuild) to 0.25.1 and updates ancestor dependencies [esbuild](https://github.com/evanw/esbuild), [@angular-builders/custom-webpack](https://github.com/just-jeb/angular-builders/tree/HEAD/packages/custom-webpack) and [@angular-devkit/build-angular](https://github.com/angular/angular-cli). 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 `@angular-builders/custom-webpack` from 18.0.0 to 19.0.1
- [Release notes](https://github.com/just-jeb/angular-builders/releases)
- [Changelog](https://github.com/just-jeb/angular-builders/blob/master/packages/custom-webpack/CHANGELOG.md)
- [Commits](https://github.com/just-jeb/angular-builders/commits/@angular-builders/[email protected]/packages/custom-webpack)

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

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.25.1
  dependency-type: indirect
- dependency-name: "@angular-builders/custom-webpack"
  dependency-version: 19.0.1
  dependency-type: direct:development
- dependency-name: "@angular-devkit/build-angular"
  dependency-version: 19.2.7
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 16, 2025
@VincentUllal VincentUllal self-assigned this Apr 16, 2025
…ild-angular

Bumps [esbuild](https://github.com/evanw/esbuild) to 0.25.1 and updates ancestor dependencies [esbuild](https://github.com/evanw/esbuild), [@angular-builders/custom-webpack](https://github.com/just-jeb/angular-builders/tree/HEAD/packages/custom-webpack) and [@angular-devkit/build-angular](https://github.com/angular/angular-cli). 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 `@angular-builders/custom-webpack` from 18.0.0 to 19.0.1
- [Release notes](https://github.com/just-jeb/angular-builders/releases)
- [Changelog](https://github.com/just-jeb/angular-builders/blob/master/packages/custom-webpack/CHANGELOG.md)
- [Commits](https://github.com/just-jeb/angular-builders/commits/@angular-builders/[email protected]/packages/custom-webpack)

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

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.25.1
  dependency-type: indirect
- dependency-name: "@angular-builders/custom-webpack"
  dependency-version: 19.0.1
  dependency-type: direct:development
- dependency-name: "@angular-devkit/build-angular"
  dependency-version: 19.2.7
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/core/examples/luigi-example-angular/multi-f793ccf57a branch from 485efd0 to bca8628 Compare April 17, 2025 12:30
VincentUllal and others added 3 commits April 22, 2025 09:50
…ular/multi-f793ccf57a' of https://github.com/SAP/luigi into dependabot/npm_and_yarn/core/examples/luigi-example-angular/multi-f793ccf57a
@walmazacn walmazacn self-assigned this Apr 23, 2025
Copy link
Contributor

@walmazacn walmazacn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sort dev deps alphabetically (-> 'esbuild') to avoid potential conflicts

Copy link
Contributor

@walmazacn walmazacn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

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.

2 participants