Skip to content

chore(deps): update dev dependencies#24

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/dev-dependencies
Open

chore(deps): update dev dependencies#24
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/dev-dependencies

Conversation

@renovate

@renovate renovate Bot commented May 29, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@nx/js (source) 22.7.222.7.6 age confidence
@rightcapital/prettier-config (source) 8.0.48.0.5 age confidence
@rslib/core (source) 0.21.50.23.1 age confidence
@types/node (source) 24.12.424.13.2 age confidence
eslint (source) 10.4.010.6.0 age confidence
nx (source) 22.7.222.7.6 age confidence
prettier (source) 3.8.33.9.1 age confidence

Release Notes

nrwl/nx (@​nx/js)

v22.7.6

Compare Source

22.7.6 (2026-06-23)
🩹 Fixes
  • misc: bump happy-dom, tmp, and form-data to patched versions (#​36013)
❤️ Thank You

v22.7.5

Compare Source

22.7.5 (2026-05-27)
🩹 Fixes
❤️ Thank You

v22.7.4

Compare Source

22.7.4 (2026-05-25)
🩹 Fixes
  • core: update brace-expansion and yaml (#​35790)
❤️ Thank You

v22.7.3

Compare Source

22.7.3 (2026-05-22)
🚀 Features
🩹 Fixes
  • angular: only add @​oxc-project/runtime on the vitest-analog path (#​35734)
  • angular-rspack: exclude eslint config from tailwind v4 source scan (#​35663)
  • core: warn before installing unknown npm packages as preset (#​35644)
  • core: preserve input order in createNodes plugin results (#​35595)
  • core: resolve local plugin subpath imports from source (#​35631)
  • core: treat undefined task parallelism as parallel when scheduling (#​35736)
  • core: handle object form of bin field in getPrettierPath (#​35680)
  • core: detect vscode copilot ai agent (#​35757)
  • core: allow local plugin subpath imports without custom conditions (#​35751, #​35631)
  • dotnet: include Directory.. files in inputs (#​35738)
  • gradle: add transitive:true to all tasks (#​35677)
  • gradle: pin generated e2e project toolchain to installed JDK (#​35703)
  • js: fall back to npm publish when bun publish fails with auth error (#​35756)
  • linter: improve convert-to-flat-config output fidelity (#​35330)
  • linter: only rewrite workspace-package peer deps to workspace:* (#​35423, #​35318, #​33417)
  • misc: stop inferring projects: 'self' in dependsOn entries (#​35686)
  • misc: skip $ escaping in file paths on windows (#​35692)
  • repo: run dotnet restore before publish (#​35771)
  • repo: run dotnet restore before macos e2e job (#​35774)
  • rsbuild: infer build outputs from distPath.root directly (#​35707)
  • rsbuild: lazy-require @​rsbuild/core in plugin so spec mocks work after jest.resetModules (#​35707)
  • testing: correct yargs-parser import in getJestProjectsAsync (#​35672, #​35654)
❤️ Thank You
RightCapitalHQ/frontend-style-guide (@​rightcapital/prettier-config)

v8.0.5

Compare Source

🩹 Fixes
  • chore(deps): update non-major dependencies to v10.34.1 (4e9a2b6)
  • chore(deps): update pnpm to v11 (58b91c0)
  • fix(deps): update non-major dependencies (f8e208b)
🧱 Updated Dependencies
  • Updated tsconfig to 1.2.21
web-infra-dev/rslib (@​rslib/core)

v0.23.1

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.23.0...v0.23.1

v0.23.0

Compare Source

What's Changed

New Features 🎉
Performance 🚀
Other Changes

Full Changelog: web-infra-dev/rslib@v0.22.1...v0.23.0

v0.22.1

Compare Source

What's Changed
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.22.0...v0.22.1

v0.22.0

Compare Source

Highlights

Isolated Declaration Generation

Rslib now supports generating declaration files with the experimental dts.isolated option, powered by Rspack's built-in SWC fast_dts capability.

dts.isolated emits declaration files directly during the build without running a full type check, making declaration generation significantly faster.

This makes it a good fit for monorepo projects that use a separate high-performance type-checking workflow, such as rslint --type-check.

export default {
  lib: [
    {
      dts: {
        isolated: true,
      },
    },
  ],
};
Isolated Declaration Generation

More details: dts.isolated

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.21.5...v0.22.0

eslint/eslint (eslint)

v10.6.0

Compare Source

Features

  • b1f9106 feat: detect Symbol() and BigInt() in no-constant-binary-expression (#​20981) (Taejin Kim)
  • f291007 feat: add checkRelationalComparisons to no-constant-binary-expression (#​20948) (sethamus)

Bug Fixes

  • 6b05784 fix: prefer-exponentiation-operator invalid autofix at statement start (#​20997) (Milos Djermanovic)
  • bb9eb2a fix: account for shadowed Boolean in no-extra-boolean-cast (#​21013) (den$)
  • 8fd8741 fix: don't report shadowed undefined in radix rule (#​21011) (Pixel)
  • 5784980 fix: don't report shadowed undefined in no-throw-literal (#​21010) (Pixel)
  • 9cd1e6d fix: suppress invalid class suggestion in no-promise-executor-return (#​21008) (Pixel)
  • d4eb2dc fix: don't report shadowed undefined in prefer-promise-reject-errors (#​21006) (Pixel)
  • 2360464 fix: prefer-promise-reject-errors false positives for shadowed Promise (#​21003) (den$)
  • 63d52d2 fix: restore max-classes-per-file report range (#​21002) (Pixel)
  • 7feaff0 fix: callback detection logic for IIFEs in max-nested-callbacks (#​20979) (fnx)
  • 399a2ec fix: don't report inner non-callbacks in max-nested-callbacks (#​20995) (Milos Djermanovic)

Documentation

  • a83683d docs: Update README (GitHub Actions Bot)
  • f5449f9 docs: document userland patterns for global assertionOptions in RuleT… (#​20986) (playgirl)
  • bea49f7 docs: Update README (GitHub Actions Bot)
  • e5f70f9 docs: update code-path diagrams (#​20984) (Tanuj Kanti)
  • 8890c2d docs: add TypeScript config guidance for MCP server (#​20796) (Pierluigi Lenoci)
  • 3eb3d9b docs: Update README (GitHub Actions Bot)
  • c5bb59c docs: Update README (GitHub Actions Bot)
  • eb3c97c docs: fix grammar in prefer-const rule description (#​20983) (lumir)

Chores

v10.5.0

Compare Source

Features

  • 5ca8c52 feat: correct stack tracking in max-nested-callbacks (#​20973) (Pixel998)
  • b565783 feat: report no-with violations at the with keyword (#​20971) (Pixel998)
  • 2ce032f feat: report max-lines-per-function violations at function head (#​20966) (Pixel998)
  • 732cb3e feat: report max-nested-callbacks violations at function head (#​20967) (Pixel998)
  • f9c138a feat: report max-depth violations on keywords (#​20943) (Pixel998)
  • bdb496c feat: correct max-depth handling for else-if chains (#​20944) (Pixel998)
  • c296873 feat: update error loc in max-statements to function header (#​20907) (Taejin Kim)

Documentation

  • 8ae1b5b docs: Update README (GitHub Actions Bot)
  • ca7eb90 docs: update Node.js prerequisites to include ICU support (#​20962) (Francesco Trotta)
  • f99b47a docs: Update README (GitHub Actions Bot)
  • acf03d4 docs: clarify precedence of parserOptions over languageOptions (#​20926) (sethamus)

Chores

v10.4.1

Compare Source

Bug Fixes

  • e557467 fix: update @eslint/plugin-kit version to 0.7.2 (#​20930) (Francesco Trotta)
  • d4ce898 fix: propagate failures from delegated commands (#​20917) (Minh Vu)
  • f4f3507 fix: prefer-arrow-callback invalid autofix with newline after async (#​20916) (kuldeep kumar)
  • c5bc78b fix: false positive for reference in finally block (#​20655) (Tanuj Kanti)
  • 27538c0 fix: add missing CodePath and CodePathSegment types (#​20853) (Pixel998)

Documentation

  • 61b0add docs: remove deprecated rule from related rules of max-params (#​20921) (Tanuj Kanti)
  • 305d5b9 docs: remove deprecated rules from related rules section (#​20911) (Tanuj Kanti)
  • 49b0202 docs: fix display: none of ad (#​20901) (Tanuj Kanti)
  • 9067f94 docs: switch build to Node.js 24 (#​20893) (Milos Djermanovic)
  • c91b041 docs: Update README (GitHub Actions Bot)
  • e349265 docs: clarify semver strings in rule deprecation objects (#​20885) (Milos Djermanovic)

Chores

prettier/prettier (prettier)

v3.9.1

Compare Source

v3.9.0

Compare Source

diff

🔗 Release Notes

v3.8.5

Compare Source

v3.8.4

Compare Source

diff

Markdown: Fix blank lines between list items and nested sub-lists being removed in Markdown/MDX (#​17746 by @​byplayer)

Prettier was removing blank lines between list items and their nested sub-lists, converting loose lists into tight lists and changing their semantic meaning.

<!-- Input -->
- a

  - b

- c

  - d

<!-- Prettier 3.8.3 -->
- a
  - b
- c
  - d

<!-- Prettier 3.8.4 -->
- a

  - b

- c

  - d

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the renovate label May 29, 2026
@renovate renovate Bot requested a review from frantic1048 May 29, 2026 22:15
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/dev-dependencies branch from 8398da9 to a50e321 Compare May 29, 2026 22:15
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch from a50e321 to 14ab1af Compare June 1, 2026 21:10
@renovate renovate Bot changed the title chore(deps): update dev dependencies to v22.7.3 chore(deps): update dev dependencies to v22.7.4 Jun 1, 2026
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/dev-dependencies branch from 14ab1af to 37b16c0 Compare June 1, 2026 21:10
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch from 37b16c0 to e52e633 Compare June 3, 2026 23:43
@renovate renovate Bot changed the title chore(deps): update dev dependencies to v22.7.4 chore(deps): update dev dependencies to v22.7.5 Jun 3, 2026
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/dev-dependencies branch from e52e633 to 2b2c579 Compare June 3, 2026 23:43
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch from 2b2c579 to 5395da2 Compare June 5, 2026 10:28
@renovate renovate Bot changed the title chore(deps): update dev dependencies to v22.7.5 chore(deps): update dev dependencies Jun 5, 2026
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/dev-dependencies branch from 5395da2 to 8549cc4 Compare June 5, 2026 10:28
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch from 8549cc4 to 8cd6eed Compare June 5, 2026 22:38
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/dev-dependencies branch from 8cd6eed to dcadb43 Compare June 5, 2026 22:38
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch 2 times, most recently from eafa7a6 to a77b232 Compare June 13, 2026 20:01
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/dev-dependencies branch from a77b232 to bf170cb Compare June 13, 2026 20:02
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch from bf170cb to ec944ae Compare June 16, 2026 18:55
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/dev-dependencies branch from ec944ae to 291c3ca Compare June 16, 2026 18:56
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch from 291c3ca to 60c2123 Compare June 18, 2026 00:01
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/dev-dependencies branch from 60c2123 to 5b82228 Compare June 18, 2026 00:02
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch from 5b82228 to f43dbe8 Compare June 19, 2026 11:57
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/dev-dependencies branch from f43dbe8 to ac09c0b Compare June 19, 2026 11:58
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch from ac09c0b to d243306 Compare June 19, 2026 23:45
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/dev-dependencies branch from d243306 to 5172805 Compare June 19, 2026 23:45
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch from 5172805 to caef9e0 Compare June 23, 2026 15:02
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/dev-dependencies branch from caef9e0 to 88a5899 Compare June 23, 2026 15:03
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch from 88a5899 to 6b7d7fc Compare June 30, 2026 16:08
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/dev-dependencies branch from 6b7d7fc to 2946c02 Compare June 30, 2026 16:09
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch from 2946c02 to 526f7d6 Compare July 3, 2026 14:08
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/dev-dependencies branch from 526f7d6 to b1c5eac Compare July 3, 2026 14:09
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch from b1c5eac to b96013d Compare July 3, 2026 22:12
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/dev-dependencies branch from b96013d to 6c6ed36 Compare July 3, 2026 22:12
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch from 6c6ed36 to d88d048 Compare July 4, 2026 10:15
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/dev-dependencies branch from d88d048 to 67a8424 Compare July 4, 2026 10:16
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch from 67a8424 to c12d900 Compare July 4, 2026 14:15
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/dev-dependencies branch from c12d900 to 2130cbf Compare July 4, 2026 14:15
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch from 2130cbf to ef57b55 Compare July 5, 2026 01:16
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/dev-dependencies branch from ef57b55 to 00a6e32 Compare July 5, 2026 01:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Development

Successfully merging this pull request may close these issues.

1 participant