Skip to content

chore(deps): bump the minor-and-patch group across 1 directory with 4 updates - #598

Merged
sw-release-bot[bot] merged 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-and-patch-074ec0b56d
Sep 8, 2026
Merged

chore(deps): bump the minor-and-patch group across 1 directory with 4 updates#598
sw-release-bot[bot] merged 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-and-patch-074ec0b56d

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 8, 2026

Copy link
Copy Markdown

Bumps the minor-and-patch group with 4 updates in the / directory: nx, undici, @cloudflare/workers-types and eslint.

Updates nx from 23.1.3 to 23.2.0

Release notes

Sourced from nx's releases.

23.2.0 (2026-09-02)

🚀 Features

  • angular: add support for Angular v22.1 (#36521)
  • core: confirm before creating migration commits on the default branch (#36314)
  • core: add a full-width TUI status bar and vim-style pane search (#36263)
  • core: forward mouse and resize events to tasks running in the TUI's pty (#36322)
  • core: add bun dependency-catalog support (#36434)
  • core: derive stable repo key from normalized remote and relative path (#36439)
  • core: add nx migrate --run-migration to run a single migration (#36407)
  • core: let migration generators skip their AI step (#36532)
  • core: show Cloud app link for remote cache instead of docs (#36460)
  • core: add durable run state and a dark orchestration loop to nx migrate (#36403)
  • core: add built-in support for oxfmt formatter alongside prettier (#35089, #30403)
  • core: filter static task output to failures and restore CI log grouping (#36453)
  • core: let the daemon and plugin workers run inside agent sandboxes (#36586)
  • dotnet: infer OpenApiDocumentsDirectory as a build output (#36788)
  • linter: add the @​nx/oxlint plugin (#36491)
  • linter: hash only lintable files for inferred oxlint tasks (#36828)
  • misc: support vitest generation for node, nest, and express generators (#36665)
  • nx-cloud: generate .nx/ci-config.yaml for agent distribution (#36504)
  • nx-cloud: add nx start-nx-agents as an alias for nx-cloud start-nx-agents (#36572)
  • nx-plugin: add vitest support for e2e tests (#34041)
  • release: support tag-based project selection (#36537)
  • repo: add react + vite + vitest + playwright example (#35921)
  • storybook: adopt the storybook vitest addon for story testing (#36648, #33759)
  • testing: offer vitest consistently across generators with a unitTestRunner option (#36715)

🩹 Fixes

  • angular: make webpack-related packages optional peer dependencies (#36310)
  • angular: keep buildable libraries private (#36545)
  • angular: import optional ng-packagr lazily (#36632)
  • angular-rspack: speed up builds and align behavior with the esbuild application builder (#36268, #34936)
  • angular-rspack: stop builds crashing on non-array styleUrls (#36550)
  • angular-rspack: rebuild components when their templates or styles change on Windows (#36641, #36619)
  • bundling: support TypeScript esbuildConfig files in the esbuild executor (#36352, #36349)
  • bundling: acknowledge @​swc/core build scripts when configuring rollup (#36412)
  • bundling: resolve esbuild paths from workspace root instead of cwd (#36830, #34027)
  • bundling: allow overriding the css module hash algorithm (#36837, #36829)
  • core: speed up npm lockfile parsing (#36216)
  • core: speed up lockfile parsing and catalog resolution (#36223)
  • core: show performance report recommendations only when actionable (#36344)
  • core: close daemon log descriptors after spawn to avoid Node 26 crash (#36280)
  • core: prevent shell injection in nx import (#36348)
  • core: correct the 22.6.0 gitignore and analytics migration wiring (#36356)
  • core: support npm 12 and pnpm in the package provenance check (#36354, #36338)
  • core: honor pnpm minimumReleaseAge config on pnpm 11 (#36335, #36330)
  • core: support pnpm 11 patched dependency hashes (#36360)

... (truncated)

Commits
  • 9eda8ac chore(core): stop the project-graph recomputation specs hanging and leaking (...
  • 7642709 fix(core): use scoped config form for pnpm 11+ publish (#36867)
  • b627f7a fix(misc): ignore bundled snapshots when pruning npm lockfiles (#36763)
  • af4a813 fix(vitest): write each atomized target's coverage to its own directory (#36658)
  • c53154d fix(core): fall back to v8 for oversized daemon responses and length-prefix t...
  • f61bd09 fix(core): single-inference convert-to-inferred engine with centralized confi...
  • e1423db fix(devkit): reload TS config files fresh instead of serving stale cached mod...
  • ce2ff7f fix(core): raise the nx package vitest timeout to cover the graph recompute s...
  • 28f61f4 fix(core): compare daemon workspace roots case-insensitively on Windows (#36835)
  • d0dbe0e fix(testing): prevent playwright from launching a redundant web server (#36402)
  • Additional commits viewable in compare view

Updates undici from 8.10.1 to 8.10.2

Release notes

Sourced from undici's releases.

v8.10.2

⚠️ Security fixes

High severity

  • GHSA-vp8m-p9jh-q5pm: cache and deduplication interceptors could use caller-controlled request metadata instead of the authoritative dispatcher origin, enabling cross-origin cache poisoning and data disclosure. Undici now derives interceptor identities from the dispatcher origin and bypasses origin-dependent interceptors when no authoritative origin exists. Fixed by caf6194d.
  • GHSA-w293-vg96-wgc3: BalancedPool could drop function-valued connection options while cloning its configuration, including custom TLS certificate validation callbacks. Undici now preserves connect and legacy tls options when creating upstreams. Fixed by 8f5868fb.
  • GHSA-rfgv-xxqx-mfg5: a WebSocket server could select a subprotocol when none was requested, causing an uncaught TypeError that could terminate the process. Undici now rejects the handshake with protocol error 1002. Fixed by 66e12816.

Medium severity

  • GHSA-3wwx-pv8p-q78v: a malformed permessage-deflate payload exceeding the configured decompression limit could emit an unhandled zlib error and terminate the process. Undici now destroys the inflater after reaching the limit. Fixed by 4411a238.
  • GHSA-rx4f-c7p8-82vq: an unclean WebSocketStream close could create an unobserved rejected promise when its writable stream was locked, potentially terminating the process. Undici now propagates the failure through the retained writable stream controller. Fixed by 662d0ea6.
  • GHSA-2jfj-6hjv-fm6j: shared caches could store and replay responses containing Set-Cookie, disclosing one user's cookies to another caller. Undici now excludes these responses from shared caches, including existing entries and revalidation paths. Fixed by cb75bbb3.
  • GHSA-3xpg-4rpp-hhhm: the decompression interceptor did not bound decoded output, allowing compressed responses to consume excessive memory. Undici now limits every decompression stage to 64 MiB by default and supports a configurable maxSize. Fixed by 7aac7f12.
  • GHSA-pmjh-fq2x-6v4x: a terminal retry failure after response headers were exposed could orphan the original response body, causing consumers to hang indefinitely. Undici now propagates the terminal error to the exposed body. Fixed by e905b5b8.

Low severity

  • GHSA-8436-99hf-9mmv: cache interceptors could store and replay responses to unsafe HTTP methods such as POST or DELETE. Undici now restricts cache reads and writes to safe methods while preserving invalidation by successful unsafe requests. Fixed by 2be07bf9.
  • GHSA-2gqq-gqf2-x968: the dump interceptor could treat an oversized chunked response as successfully truncated when no Content-Length was present. Undici now enforces maxSize against received bytes and aborts oversized responses. Fixed by 6d583124.
  • GHSA-r53p-7pc4-xj5r: the retry interceptor could concatenate a resumed response with inconsistent framing into downstream output, enabling response splitting or corruption. Undici now validates Content-Range against the original response framing before resuming. Fixed by 0160a719.

What's Changed

New Contributors

... (truncated)

Commits
  • 5e541e0 Bumped v8.10.2 (#5771)
  • eb04cc3 fix(fetch): only send Sec-Fetch-Mode to potentially trustworthy URLs (#5738)
  • e905b5b fix(retry): settle exposed body on terminal failure
  • 0160a71 fix(retry): validate resumed response framing
  • 66e1281 fix(websocket): reject unrequested subprotocols
  • 7aac7f1 fix(decompress): limit decompressed response size
  • cb75bbb fix(cache): do not cache Set-Cookie in shared caches
  • 6d58312 fix(interceptor/dump): abort oversized chunked responses
  • 8f5868f fix: preserve BalancedPool connection options
  • 2be07bf fix(cache): reject unsafe method response caching
  • Additional commits viewable in compare view

Updates @cloudflare/workers-types from 5.20260902.1 to 5.20260905.1

Commits

Updates eslint from 10.9.1 to 10.10.0

Release notes

Sourced from eslint's releases.

v10.10.0

Features

  • 264b434 feat: add d and v flags to no-unexpected-multiline (#21305) (Gihyeon Jeong / 정기현)
  • c6cc6c5 feat: check Object.prototype property names in new-cap (#21269) (crimsonjay0)
  • 5661fa6 feat: no-extra-bind false negatives with class fields and static blocks (#21260) (synthex-byte)

Bug Fixes

  • bb47dc6 fix: update dependency file-entry-cache to v11 (#20801) (Milos Djermanovic)
  • 427ac0a fix: use format strings in debug calls (#21247) (Francesco Trotta)
  • 9d81532 fix: support __proto__ in /* exported */ comments (#21261) (sethamus)
  • 87e0a08 fix: prefer-object-has-own autofix breaks when Object is shadowed (#21282) (김채영)
  • 8e2cb14 fix: new-cap false positive for UTC calls with properties: false (#21275) (Pixel)
  • 9f4a364 fix: Ignore static imports in no-unreachable (#21276) (Taha Kotil)

Documentation

  • 2417cad docs: Update README (GitHub Actions Bot)
  • 9cecb8a docs: document \c control letter escapes in no-control-regex (#21286) (한국)
  • 8724829 docs: update compat table links (#21263) (fnx)
  • 5634542 docs: Clarify eqeqeq suggestion behavior (#21256) (Müslüm Yılmaz)

Chores

  • b3d876b chore: disable npm audit in ecosystem tests (#21306) (Francesco Trotta)
  • 1696682 ci: restore EMFILE test on Node.js 26 (#21297) (Marry (Subin Yang))
  • 2c7f5d6 chore: update github/codeql-action action to v4.37.9 (#21296) (renovate[bot])
  • 3c753f1 chore: update eslint (#21289) (renovate[bot])
  • 1c73469 chore: update ecosystem plugins (#21280) (ESLint Bot)
  • 08a02be test: add error locations to no-extra-boolean-cast (#21266) (lumir)
  • 77bb1db chore: update github/codeql-action action to v4.37.8 (#21270) (renovate[bot])
  • 007e81a ci: skip EMFILE test on Node.js 26 (#21265) (lumir)
  • 0430280 chore: improve ecosystem tests compatibility on Windows (#21178) (crimsonjay0)
Commits

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

… updates

Bumps the minor-and-patch group with 4 updates in the / directory: [nx](https://github.com/nrwl/nx/tree/HEAD/packages/nx), [undici](https://github.com/nodejs/undici), [@cloudflare/workers-types](https://github.com/cloudflare/workerd) and [eslint](https://github.com/eslint/eslint).


Updates `nx` from 23.1.3 to 23.2.0
- [Release notes](https://github.com/nrwl/nx/releases)
- [Commits](https://github.com/nrwl/nx/commits/23.2.0/packages/nx)

Updates `undici` from 8.10.1 to 8.10.2
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](nodejs/undici@v8.10.1...v8.10.2)

Updates `@cloudflare/workers-types` from 5.20260902.1 to 5.20260905.1
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
- [Commits](https://github.com/cloudflare/workerd/commits)

Updates `eslint` from 10.9.1 to 10.10.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v10.9.1...v10.10.0)

---
updated-dependencies:
- dependency-name: nx
  dependency-version: 23.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: undici
  dependency-version: 8.10.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@cloudflare/workers-types"
  dependency-version: 5.20260905.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: eslint
  dependency-version: 10.10.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

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 Sep 8, 2026
@sw-release-bot
sw-release-bot Bot enabled auto-merge (squash) September 8, 2026 02:10
@sonarqubecloud

sonarqubecloud Bot commented Sep 8, 2026

Copy link
Copy Markdown

@github-actions

github-actions Bot commented Sep 8, 2026

Copy link
Copy Markdown

Test Coverage Report

Overall Coverage: 96.95%

Metric Percentage
Statements 96.32%
Branches 88.12%
Functions 95%
Lines 96.95%

View detailed coverage report

@sw-release-bot
sw-release-bot Bot merged commit a33eb66 into main Sep 8, 2026
17 checks passed
@sw-release-bot
sw-release-bot Bot deleted the dependabot/npm_and_yarn/minor-and-patch-074ec0b56d branch September 8, 2026 02:15
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