chore(deps): bump esbuild and @angular-devkit/build-angular in /front-end
Type: Pull Request
State: Closed
Association: Contributor
Comments: 0
(11 months ago)
(9 months ago)
(9 months ago)
JavaScript dependencies Stale
Bumps esbuild to 0.25.5 and updates ancestor dependency @angular-devkit/build-angular. These dependencies need to be updated together.
Updates esbuild from 0.13.8 to 0.25.5
Release notes
Sourced from esbuild's releases.
v0.25.5
Fix a regression with
browserinpackage.json(#4187)The fix to #4144 in version 0.25.3 introduced a regression that caused
browseroverrides specified inpackage.jsonto fail to override relative path names that end in a trailing slash. That behavior change affected theaxios@0.30.0package. This regression has been fixed, and now has test coverage.Add support for certain keywords as TypeScript tuple labels (#4192)
Previously esbuild could incorrectly fail to parse certain keywords as TypeScript tuple labels that are parsed by the official TypeScript compiler if they were followed by a
?modifier. These labels includedfunction,import,infer,new,readonly, andtypeof. With this release, these keywords will now be parsed correctly. Here's an example of some affected code:type Foo = [ value: any, readonly?: boolean, // This is now parsed correctly ]Add CSS prefixes for the
stretchsizing value (#4184)This release adds support for prefixing CSS declarations such as
div { width: stretch }. That CSS is now transformed into this depending on what the--target=setting includes:div { width: -webkit-fill-available; width: -moz-available; width: stretch; }v0.25.4
Add simple support for CORS to esbuild's development server (#4125)
Starting with version 0.25.0, esbuild's development server is no longer configured to serve cross-origin requests. This was a deliberate change to prevent any website you visit from accessing your running esbuild development server. However, this change prevented (by design) certain use cases such as "debugging in production" by having your production website load code from
localhostwhere the esbuild development server is running.To enable this use case, esbuild is adding a feature to allow Cross-Origin Resource Sharing (a.k.a. CORS) for simple requests. Specifically, passing your origin to the new
corsoption will now set theAccess-Control-Allow-Originresponse header when the request has a matchingOriginheader. Note that this currently only works for requests that don't send a preflightOPTIONSrequest, as esbuild's development server doesn't currently supportOPTIONSrequests.Some examples:
CLI:
esbuild --servedir=. --cors-origin=https://example.comJS:
const ctx = await esbuild.context({}) await ctx.serve({ servedir: '.', cors: {
... (truncated)
Changelog
Sourced from esbuild's changelog.
Changelog: 2021
This changelog documents all esbuild versions published in the year 2021 (versions 0.8.29 through 0.14.10).
0.14.10
Enable tree shaking of classes with lowered static fields (#175)
If the configured target environment doesn't support static class fields, they are converted into a call to esbuild's
__publicFieldfunction instead. However, esbuild's tree-shaking pass treated this call as a side effect, which meant that all classes with static fields were ineligible for tree shaking. This release fixes the problem by explicitly ignoring calls to the__publicFieldfunction during tree shaking side-effect determination. Tree shaking is now enabled for these classes:// Original code class Foo { static foo = 'foo' } class Bar { static bar = 'bar' } new Bar()// Old output (with --tree-shaking=true --target=es6)
class Foo {
}
__publicField(Foo, "foo", "foo");
class Bar {
}
__publicField(Bar, "bar", "bar");
new Bar();// New output (with --tree-shaking=true --target=es6)
class Bar {
}
__publicField(Bar, "bar", "bar");
new Bar();
Treat
--define:foo=undefinedas an undefined literal instead of an identifier (#1407)References to the global variable
undefinedare automatically replaced with the literal value for undefined, which appears asvoid 0when printed. This allows for additional optimizations such as collapsingundefined ?? barinto justbar. However, this substitution was not done for values specified via--define:. As a result, esbuild could potentially miss out on certain optimizations in these cases. With this release, it's now possible to use--define:to substitute something with an undefined literal:// Original code let win = typeof window !== 'undefined' ? window : {}// Old output (with --define:window=undefined --minify)
let win=typeof undefined!="undefined"?undefined:{};// New output (with --define:window=undefined --minify)
let win={};
Add the
--drop:debuggerflag (#1809)Passing this flag causes all
debugger;statements to be removed from the output. This is similar to thedrop_debugger: trueflag available in the popular UglifyJS and Terser JavaScript minifiers.
... (truncated)
Commits
ea453bfpublish 0.25.5 to npm223ddc6fix #4187: browserpackage.jsonregressionb2c8251fix #4192: typescript tuple label parser edge case28cf2f3fix #4184: css prefixes forstretchbee1b09fix comment indents9ddfe5frunmake update-compat-tablec339f34fix a misplaced comment218d29epublish 0.25.4 to npme66cd0bdev server: simple support for CORS requests (#4171)8bf3368js api: validate some options as arrays of strings- Additional commits viewable in compare view
Updates @angular-devkit/build-angular from 12.2.18 to 20.1.1
Release notes
Sourced from @angular-devkit/build-angular's releases.
20.1.1
@angular/build
Commit Description emit a warning when outputHashingis set toallorbundleswhen HMR is enablednormalize code coverage include paths to POSIX 20.1.0
@schematics/angular
Commit Description use signal in app component
@angular/cli
Commit Description add initial MCP server implementation
@angular-devkit/build-angular
Commit Description provide partial custom postcss configuration support
@angular/build
@angular/ssr
Commit Description ensure loadChildrenruns in correct injection context during route extraction20.1.0-rc.0
@angular-devkit/build-angular
Commit Description remove unused @vitejs/plugin-basic-ssldependency
@angular/build
Commit Description proxy karma request from /to/base
... (truncated)
Changelog
Sourced from @angular-devkit/build-angular's changelog.
20.1.1 (2025-07-16)
@angular/build
Commit Type Description 541b33f8d fix emit a warning when outputHashingis set toallorbundleswhen HMR is enabled558a0fe92 fix normalize code coverage include paths to POSIX 20.1.0 (2025-07-09)
@angular/cli
Commit Type Description dc45c186e feat add initial MCP server implementation
@schematics/angular
Commit Type Description 1c19e0dcd feat use signal in app component
@angular-devkit/build-angular
Commit Type Description 49a09737d feat provide partial custom postcss configuration support
@angular/build
Commit Type Description 1159cf081 feat add code coverage reporters option for unit-test 8f305ef0b feat add dataurl, base64 loaders adfeee0a4 fix adjust coverage includes/excludes for unit-test vitest runner c19cd2985 fix coverage reporter option 8879716ca fix expose unit test and karma builder API a415a4999 fix improve default coverage reporter handling for vitest e0de8680d fix inject zone.js/testing before karma builder execution 2672f6ec1 fix json and json-summary as vitest coverage reporters b67fdfd6b fix resolve "Controller is already closed" error in Karma 2784883ec fix support extra test setup files with unit-test vitest runner f177f5508 fix support injecting global styles into vitest unit-tests 130c65014 fix use an empty array as default value for vitest exclude 917af12ae fix use date/time based output path for vitest unit-test
... (truncated)
Commits
15c0148release: cut the v20.1.1 release0925ebdrefactor(@schematics/angular): fix layout of pill buttonb7121e8build: update dependency node to v22.17.13ccd1e8refactor(@angular/build): provide private factory API for internal compilatio...eb29941refactor(@angular/cli): add a documentation search tool to MCP server1602181refactor(@angular/build): use thetoPosixPathutil to convert windows file558a0fefix(@angular/build): normalize code coverage include paths to POSIX541b33ffix(@angular/build): emit a warning whenoutputHashingis set toallor `...e46cedbrefactor: useexecuteWithCasesinstead of RXJS boillerplateed09cefrelease: cut the v20.1.0 release- 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill 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.
Pull Request Statistics
1
2
+17327
-20471
Package Dependencies
@angular-devkit/build-angular
npm
12.2.18 → 20.1.1
Major
/front-end
Technical Details
| ID: | 8104258 |
| UUID: | 2677382847 |
| Node ID: | PR_kwDOBWk_U86flZ6_ |
| Host: | GitHub |
| Repository: | soujava/vagas-java |
| Mergeable: | Yes |
| Merge State: | Unstable |