build: update all non-major dependencies (main)#33346
Open
angular-robot wants to merge 1 commit into
Open
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates several package dependencies across multiple package.json files in the workspace, including rollup, semver, undici, http-proxy-middleware, and jasmine, to their newer versions. There are no review comments, and I have no feedback to provide.
ff994ce to
8f34bd1
Compare
dgp1130
approved these changes
Jun 12, 2026
8f34bd1 to
a9ca58d
Compare
See associated pull request for more information.
a9ca58d to
d8b2217
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
4.61.0→4.61.18.60.1→8.61.08.60.1→8.61.05.53.0→5.54.00.28.0→0.28.10.28.0→0.28.14.0.0→4.1.09.0.0→9.1.0~6.2.0→~6.3.0~6.2.0→~6.3.021.5.0→21.5.11.0.3→1.1.14.61.0→4.61.11.100.0→1.101.07.8.1→7.8.48.3.0→8.4.12.5.1→2.5.2Release Notes
rollup/rollup (@rollup/wasm-node)
v4.61.1Compare Source
2026-06-04
Bug Fixes
Pull Requests
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v8.61.0Compare Source
🚀 Features
UnaryExpression.prefixto alwaystrue(#12372)❤️ Thank You
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v8.61.0Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
algolia/algoliasearch-client-javascript (algoliasearch)
v5.54.0Compare Source
evanw/esbuild (esbuild)
v0.28.1Compare Source
Disallow
\in local development server HTTP requests (GHSA-g7r4-m6w7-qqqr)This release fixes a security issue where HTTP requests to esbuild's local development server could traverse outside of the serve directory on Windows using a
\backslash character. It happened due to the use of Go'spath.Clean()function, which only handles Unix-style/characters. HTTP requests with paths containing\are no longer allowed.Thanks to @dellalibera for reporting this issue.
Add integrity checks to the Deno API (GHSA-gv7w-rqvm-qjhr)
The previous release of esbuild added integrity checks to esbuild's npm install script. This release also adds integrity checks to esbuild's Deno install script. Now esbuild's Deno API will also fail with an error if the downloaded esbuild binary contains something other than the expected content.
Note that esbuild's Deno API installs from
registry.npmjs.orgby default, but allows theNPM_CONFIG_REGISTRYenvironment variable to override this with a custom package registry. This change means that the esbuild executable served byNPM_CONFIG_REGISTRYmust now match the expected content.Thanks to @sondt99 for reporting this issue.
Avoid inlining
usingandawait usingdeclarations (#4482)Previously esbuild's minifier sometimes incorrectly inlined
usingandawait usingdeclarations into subsequent uses of that declaration, which then fails to dispose of the resource correctly. This bug happened because inlining was done forletandconstdeclarations by avoiding doing it forvardeclarations, which no longer worked when more declaration types were added. Here's an example:Fix module evaluation when an error is thrown (#4461, #4467)
If an error is thrown during module evaluation, esbuild previously didn't preserve the state of the module for subsequent module references. This was observable if
import()orrequire()is used to import a module multiple times. The thrown error is supposed to be thrown by every call toimport()orrequire(), not just the first. With this release, esbuild will now throw the same error every time you callimport()orrequire()on a module that throws during its evaluation.Fix some edge cases around the
newoperator (#4477)Previously esbuild incorrectly printed certain edge cases involving complex expressions inside the target of a
newexpression (specifically an optional chain and/or a tagged template literal). The generated code for thenewtarget was not correctly wrapped with parentheses, and either contained a syntax error or had different semantics. These edge cases have been fixed so that they now correctly wrap thenewtarget in parentheses. Here is an example of some affected code:Fix renaming of nested
vardeclarations (#4471)This release fixes a bug where
vardeclarations in nested scopes that are hoisted up to module scope were not correctly being renamed during bundling. That could previously lead to name collisions when minification was disabled, which could potentially cause a behavior change. The bug has been fixed so that these hoisted declarations are now considered to be module-level symbols during the name collision avoidance pass.Emit
varinstead ofconstfor certain TypeScript-only constructs for ES5 (#4448)While esbuild doesn't generally support converting
consttovarfor ES5 due to nested scoping rules (which is currently a build-time error), esbuild previously incorrectly converted TypeScript-onlyimportassignment constructs into aconstdeclaration even when targeting ES5. With this release, esbuild will now usevarfor this case instead:chimurai/http-proxy-middleware (http-proxy-middleware)
v4.1.0Compare Source
TooTallNate/proxy-agents (https-proxy-agent)
v9.1.0Compare Source
Minor Changes
84e85ed: AddonProxyAuthcallback andnegotiateoption for Kerberos/SPNEGO proxy authenticationproxy-agent-negotiatepackageonProxyAuthasync callback toHttpsProxyAgentandHttpProxyAgentoptionsProxy-Authorization) to retry the request withnegotiate: trueoption that uses thekerberospackage for automatic Negotiate/SPNEGO authkerberosas an optional peer dependency ofproxy-agent-negotiateproxytest package to supportauthenticate: 'negotiate'mode for mock testing3ebf4b2: Addproxyevent emission on the request object for all proxy agents. After the proxy connection is established, the request emits aproxyevent with{ proxy, socket }whereproxyis the proxy URL string. This is useful for debugging and logging which proxy was used for a connection.Patch Changes
1852c75: Fix socket event race condition by deferringsocket.resume()viasetImmediate(), ensuring HTTP client machinery has time to attach data listeners before data starts flowing84e85ed]jasmine/jasmine-npm (jasmine)
v6.3.0: 6.3.0Compare Source
Please see the release notes.
jasmine/jasmine (jasmine-core)
v6.3.0: 6.3.0Compare Source
Please see the release notes.
npm/pacote (pacote)
v21.5.1Compare Source
Bug Fixes
627a7dc#499 avoid ReDoS in addGitSha committish stripping (@owlstronaut)Chores
790a24b#500 template-oss-apply (#500) (@owlstronaut, test)09cb304#499 template-oss-apply (@owlstronaut)bea9f84#499@npmcli/template-oss@5.1.0(@owlstronaut)rolldown/rolldown (rolldown)
v1.1.1Compare Source
🚀 Features
🐛 Bug Fixes
moduleSideEffectsfrom a hook must take priority over thepackage.json#sideEffects(#9688) by @sapphi-redrolldown-runtimename for the standalone runtime chunk (#9685) by @shulaodachunk.importsby execution order (#9654) by @chuganzy🚜 Refactor
📚 Documentation
⚡ Performance
🧪 Testing
moduleSideEffectsprecedence tests (#9689) by @sapphi-red⚙️ Miscellaneous Tasks
commentWithDevoption (#9638) by @btea❤️ New Contributors
v1.1.0Compare Source
🚀 Features
experimental.lazyBarrelby default (#9632) by @shulaodaimport.meta.globsupportcaseSensitiveoption (#9594) by @bteaSOURCEMAP_BROKENwarning for renderChunk hook (#9601) by @sapphi-redSOURCEMAP_BROKENwarning for transform hook (#9600) by @sapphi-red@__NO_SIDE_EFFECTS__hint for invalid@__PURE__before function declarations (#9505) by @CopilotincludeDependenciesRecursively(#9587) by @hyf0🐛 Bug Fixes
rolldownpackage (#9629) by @sapphi-red🚜 Refactor
ImportStatusvariants (#9606) by @Boshen📚 Documentation
RolldownBuild::closemethod should be called in most cases (#9619) by @sapphi-red⚡ Performance
🧪 Testing
⚙️ Miscellaneous Tasks
❤️ New Contributors
sass/dart-sass (sass)
v1.101.0Compare Source
supports resolving import-only variants of Sass files declared in the
exports,sass, andstylefields ofpackage.json. Previously, thesefiles were ignored even when loaded via
@import, so any code relying onloading module-system-only files this way may break.
npm/node-semver (semver)
v7.8.4Compare Source
Bug Fixes
e583226#874 reject numeric segments after x-ranges (@pupuking723)v7.8.3Compare Source
Bug Fixes
046da7f#872 align caret includePrerelease lower bounds (#872) (@wayyoungboy)Chores
3485dda#866 bump @npmcli/eslint-config from 6.0.1 to 7.0.0 (#866) (@dependabot[bot])v7.8.2Compare Source
Bug Fixes
bea6028#870 increment dotted prerelease identifiers (#870) (@liuzemei, @SheldonNeo)nodejs/undici (undici)
v8.4.1Compare Source
What's Changed
New Contributors
Full Changelog: nodejs/undici@v8.4.0...v8.4.1
v8.4.0Compare Source
What's Changed
npm ciinstead ofnpm installby @aduh95 in #5315addAbortListenerutil by @aduh95 in #5317kEnumerablePropertyatomically by @aduh95 in #5332regex.execinstead ofstring.matchby @aduh95 in #5331preferH2connector option to offer h2 first in ALPN by @Antamansid in #5327New Contributors
Full Changelog: nodejs/undici@v8.3.0...v8.4.0
webpack/watchpack (watchpack)
v2.5.2Compare Source
Patch Changes
fix: retry
fs.lstaton transientEBUSYerrors instead of emitting a spuriousremoveevent (fixes #223, #44). The retry count is controlled by theWATCHPACK_RETRIESenvironment variable (default:3; set to0or"false"to disable retrying). (by @alexander-akait in #293)Improve perfomance for ignored and improve perfomance for reduce plan. (by @alexander-akait in #289)
perf: speed up
ignoredmatchers (~35–45% faster on POSIX paths) andreducePlan(~20–40% faster on medium and large plans). Also adds a tinybench suite underbench/and a CodSpeed GitHub Actions workflow to catch future regressions. (by @alexander-akait in #287)fix: don't log "Watchpack Error (initial scan)" for unreadable entries inside a watched parent directory, e.g.
pagefile.syson WSL or/efion Linux (fixes #187).EACCES/ENODEV(andEINVALon Windows) errors are now handled likeEPERM/ENOENT/EBUSY: the entry is recorded as missing and the scan continues silently. (by [@alexander-akait](https://redirect.gi