An open index of dependabot pull requests across open source projects.

build(deps): bump the all group across 1 directory with 89 updates

Open
Number: #5
Type: Pull Request
State: Open
Author: dependabot[bot] dependabot[bot]
Association: None
Comments: 0
Created: September 05, 2025 at 10:09 PM UTC
(1 day ago)
Updated: September 05, 2025 at 10:09 PM UTC
(1 day ago)
Labels:
dependencies javascript
Description:

Bumps the all group with 27 updates in the / directory:

Package From To
next 15.5.0 15.5.2
@biomejs/biome 2.2.2 2.2.3
@eslint/js 9.34.0 9.35.0
@next/eslint-plugin-next 15.5.0 15.5.2
@tailwindcss/postcss 4.1.12 4.1.13
@tauri-apps/cli 2.8.3 2.8.4
@types/node 24.3.0 24.3.1
@types/react 19.1.11 19.1.12
@types/react-dom 19.1.7 19.1.9
@typescript-eslint/eslint-plugin 8.40.0 8.42.0
@typescript-eslint/parser 8.40.0 8.42.0
@vitejs/plugin-react 5.0.1 5.0.2
eslint-config-next 15.5.0 15.5.2
tailwindcss 4.1.12 4.1.13
typescript-eslint 8.40.0 8.42.0
@babel/compat-data 7.28.0 7.28.4
@babel/core 7.28.3 7.28.4
@babel/plugin-transform-block-scoping 7.28.0 7.28.4
@babel/plugin-transform-classes 7.28.3 7.28.4
@babel/plugin-transform-object-rest-spread 7.28.0 7.28.4
@babel/plugin-transform-regenerator 7.28.3 7.28.4
@babel/runtime 7.28.3 7.28.4
@eslint-community/eslint-utils 4.7.0 4.8.0
@humanfs/node 0.16.6 0.16.7
browserslist 4.25.3 4.25.4
rollup 4.48.1 4.50.0
vite 7.1.3 7.1.4

Updates next from 15.5.0 to 15.5.2

Release notes

Sourced from next's releases.

v15.5.2

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • fix: disable unknownatrules lint rule entirely (#83059)
  • revert: add ?dpl to fonts in /_next/static/media (#83062)

Credits

Huge thanks to @​bgub and @​ztanner for helping!

v15.5.1

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • fix: aliased navigations should apply scroll handling (#82900)
  • Turbopack: fix invalid NFT entry with file behind symlink (#82887)
  • fix: typesafe linking to route handlers and pages API routes (#82858)
  • fix: change "noUnknownAtRules" to "warn" for Biome (#82974)
  • fix: add path normalization to getRelativePath for Windows (#82918)
  • feat: add typesafety with config.typedRoutes to redirect() and permanentRedirect() (#82860)
  • fix: avoid importing types that will be unused (#82856)
  • fix: update the config.api.responseLimit type (#82852)
  • fix: update validation return types (#82854)

Credits

Huge thanks to @​bgub, @​mischnic, and @​ztanner for helping!

v15.5.1-canary.29

Core Changes

  • [metadata] not add suffix to sitemap.xml in group routes: #83486
  • [devtools] Use useEffectEvent instead of ignoring exhaustive deps: #83236
  • [metadata] refactor metadata sitemap loader code: #83443
  • Include prerender interrupted error in unstable_rethrow: #83463

Misc Changes

  • [turbopack] Attempt #2 at making rust-analyzer happy with our macros: #83461
  • [turbopack] RFC: Serialize turbopack objects as u16s instead of fully qualified symbol names: #83193
  • [turbopack] enable the signal feature of nix: #83473
  • Turbopack: Don't resolve tsconfig relative to file: #83484

Credits

Huge thanks to @​lukesandberg, @​huozhi, @​timneutkens, @​eps1lon, and @​gnoff for helping!

... (truncated)

Commits

Updates @biomejs/biome from 2.2.2 to 2.2.3

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.2.3

2.2.3

Patch Changes

  • #7353 4d2b719 Thanks @​JeetuSuthar! - Fixed #7340: The linter now allows the navigation property for view-transition in CSS.

    Previously, the linter incorrectly flagged navigation: auto as an unknown property. This fix adds navigation to the list of known CSS properties, following the CSS View Transitions spec.

  • #7275 560de1b Thanks @​arendjr! - Fixed #7268: Files that are explicitly passed as CLI arguments are now correctly ignored if they reside in an ignored folder.

  • #7358 963a246 Thanks @​ematipico! - Fixed #7085, now the rule noDescendingSpecificity correctly calculates the specificity of selectors when they are included inside a media query.

  • #7387 923674d Thanks @​qraqras! - Fixed #7381, now the useOptionalChain rule recognizes optional chaining using Yoda expressions (e.g., undefined !== foo && foo.bar).

  • #7316 f9636d5 Thanks @​Conaclos! - Fixed #7289. The rule useImportType now inlines import type into import { type } when the style option is set to inlineType.

    Example:

    import type { T } from "mod";
    // becomes
    import { type T } from "mod";
    
  • #7350 bb4d407 Thanks @​siketyan! - Fixed #7261: two characters (KATAKANA MIDDLE DOT, U+30FB) and (HALFWIDTH KATAKANA MIDDLE DOT, U+FF65) are no longer considered as valid characters in identifiers. Property keys containing these character(s) are now preserved as string literals.

  • #7377 811f47b Thanks @​ematipico! - Fixed a bug where the Biome Language Server didn't correctly compute the diagnostics of a monorepo setting, caused by an incorrect handling of the project status.

  • #7245 fad34b9 Thanks @​kedevked! - Added the new lint rule useConsistentArrowReturn.

    This rule enforces a consistent return style for arrow functions.

    Invalid

    const f = () => {
      return 1;
    };
    

    This rule is a port of ESLint's arrow-body-style rule.

  • #7370 e8032dd Thanks @​fireairforce! - Support dynamic import defer and import source. The syntax looks like:

    import.source("foo");
    import.source("x", { with: { attr: "val" } });
    import.defer("foo");
    import.defer("x", { with: { attr: "val" } });
    

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.2.3

Patch Changes

  • #7353 4d2b719 Thanks @​JeetuSuthar! - Fixed #7340: The linter now allows the navigation property for view-transition in CSS.

    Previously, the linter incorrectly flagged navigation: auto as an unknown property. This fix adds navigation to the list of known CSS properties, following the CSS View Transitions spec.

  • #7275 560de1b Thanks @​arendjr! - Fixed #7268: Files that are explicitly passed as CLI arguments are now correctly ignored if they reside in an ignored folder.

  • #7358 963a246 Thanks @​ematipico! - Fixed #7085, now the rule noDescendingSpecificity correctly calculates the specificity of selectors when they are included inside a media query.

  • #7387 923674d Thanks @​qraqras! - Fixed #7381, now the useOptionalChain rule recognizes optional chaining using Yoda expressions (e.g., undefined !== foo && foo.bar).

  • #7316 f9636d5 Thanks @​Conaclos! - Fixed #7289. The rule useImportType now inlines import type into import { type } when the style option is set to inlineType.

    Example:

    import type { T } from "mod";
    // becomes
    import { type T } from "mod";
    
  • #7350 bb4d407 Thanks @​siketyan! - Fixed #7261: two characters (KATAKANA MIDDLE DOT, U+30FB) and (HALFWIDTH KATAKANA MIDDLE DOT, U+FF65) are no longer considered as valid characters in identifiers. Property keys containing these character(s) are now preserved as string literals.

  • #7377 811f47b Thanks @​ematipico! - Fixed a bug where the Biome Language Server didn't correctly compute the diagnostics of a monorepo setting, caused by an incorrect handling of the project status.

  • #7245 fad34b9 Thanks @​kedevked! - Added the new lint rule useConsistentArrowReturn.

    This rule enforces a consistent return style for arrow functions.

    Invalid

    const f = () => {
      return 1;
    };
    

    This rule is a port of ESLint's arrow-body-style rule.

  • #7370 e8032dd Thanks @​fireairforce! - Support dynamic import defer and import source. The syntax looks like:

    import.source("foo");
    import.source("x", { with: { attr: "val" } });
    import.defer("foo");
    import.defer("x", { with: { attr: "val" } });
    

... (truncated)

Commits

Updates @eslint/js from 9.34.0 to 9.35.0

Release notes

Sourced from @​eslint/js's releases.

v9.35.0

Features

  • 42761fa feat: implement suggestions for no-empty-function (#20057) (jaymarvelz)
  • 102f444 feat: implement suggestions for no-empty-static-block (#20056) (jaymarvelz)
  • e51ffff feat: add preserve-caught-error rule (#19913) (Amnish Singh Arora)

Bug Fixes

  • 10e7ae2 fix: update uncloneable options error message (#20059) (soda-sorcery)
  • bfa4601 fix: ignore empty switch statements with comments in no-empty rule (#20045) (jaymarvelz)
  • dfd11de fix: add before and after to test case types (#20049) (Francesco Trotta)
  • dabbe95 fix: correct types for no-restricted-imports rule (#20034) (Milos Djermanovic)
  • ea789c7 fix: no-loss-of-precision false positive with uppercase exponent (#20032) (sethamus)

Documentation

  • d265515 docs: improve phrasing - "if" → "even if" from getting-started section (#20074) (jjangga0214)
  • a355a0e docs: invert comparison logic for example in no-var doc page (#20064) (OTonGitHub)
  • 5082fc2 docs: Update README (GitHub Actions Bot)
  • 99cfd7e docs: add missing "the" in rule deprecation docs (#20050) (Josh Goldberg ✨)
  • 6ad8973 docs: update --no-ignore and --ignore-pattern documentation (#20036) (Francesco Trotta)
  • 8033b19 docs: add documentation for --no-config-lookup (#20033) (Francesco Trotta)

Chores

  • da87f2f chore: upgrade @​eslint/js@​9.35.0 (#20077) (Milos Djermanovic)
  • af2a087 chore: package.json update for @​eslint/js release (Jenkins)
  • 7055764 test: remove tests/lib/eslint/eslint.config.js (#20065) (Milos Djermanovic)
  • 84ffb96 chore: update @eslint-community/eslint-utils (#20069) (Francesco Trotta)
  • d5ef939 refactor: remove deprecated context.parserOptions usage across rules (#20060) (sethamus)
  • 1b3881d chore: remove redundant word (#20058) (pxwanglu)
Changelog

Sourced from @​eslint/js's changelog.

v9.35.0 - September 5, 2025

  • da87f2f chore: upgrade @​eslint/js@​9.35.0 (#20077) (Milos Djermanovic)
  • af2a087 chore: package.json update for @​eslint/js release (Jenkins)
  • d265515 docs: improve phrasing - "if" → "even if" from getting-started section (#20074) (jjangga0214)
  • 7055764 test: remove tests/lib/eslint/eslint.config.js (#20065) (Milos Djermanovic)
  • 10e7ae2 fix: update uncloneable options error message (#20059) (soda-sorcery)
  • 42761fa feat: implement suggestions for no-empty-function (#20057) (jaymarvelz)
  • 102f444 feat: implement suggestions for no-empty-static-block (#20056) (jaymarvelz)
  • 84ffb96 chore: update @eslint-community/eslint-utils (#20069) (Francesco Trotta)
  • a355a0e docs: invert comparison logic for example in no-var doc page (#20064) (OTonGitHub)
  • e51ffff feat: add preserve-caught-error rule (#19913) (Amnish Singh Arora)
  • 5082fc2 docs: Update README (GitHub Actions Bot)
  • d5ef939 refactor: remove deprecated context.parserOptions usage across rules (#20060) (sethamus)
  • 1b3881d chore: remove redundant word (#20058) (pxwanglu)
  • 99cfd7e docs: add missing "the" in rule deprecation docs (#20050) (Josh Goldberg ✨)
  • bfa4601 fix: ignore empty switch statements with comments in no-empty rule (#20045) (jaymarvelz)
  • dfd11de fix: add before and after to test case types (#20049) (Francesco Trotta)
  • 6ad8973 docs: update --no-ignore and --ignore-pattern documentation (#20036) (Francesco Trotta)
  • dabbe95 fix: correct types for no-restricted-imports rule (#20034) (Milos Djermanovic)
  • 8033b19 docs: add documentation for --no-config-lookup (#20033) (Francesco Trotta)
  • ea789c7 fix: no-loss-of-precision false positive with uppercase exponent (#20032) (sethamus)
Commits

Updates @next/eslint-plugin-next from 15.5.0 to 15.5.2

Release notes

Sourced from @​next/eslint-plugin-next's releases.

v15.5.2

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • fix: disable unknownatrules lint rule entirely (#83059)
  • revert: add ?dpl to fonts in /_next/static/media (#83062)

Credits

Huge thanks to @​bgub and @​ztanner for helping!

v15.5.1

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • fix: aliased navigations should apply scroll handling (#82900)
  • Turbopack: fix invalid NFT entry with file behind symlink (#82887)
  • fix: typesafe linking to route handlers and pages API routes (#82858)
  • fix: change "noUnknownAtRules" to "warn" for Biome (#82974)
  • fix: add path normalization to getRelativePath for Windows (#82918)
  • feat: add typesafety with config.typedRoutes to redirect() and permanentRedirect() (#82860)
  • fix: avoid importing types that will be unused (#82856)
  • fix: update the config.api.responseLimit type (#82852)
  • fix: update validation return types (#82854)

Credits

Huge thanks to @​bgub, @​mischnic, and @​ztanner for helping!

v15.5.1-canary.29

Core Changes

  • [metadata] not add suffix to sitemap.xml in group routes: #83486
  • [devtools] Use useEffectEvent instead of ignoring exhaustive deps: #83236
  • [metadata] refactor metadata sitemap loader code: #83443
  • Include prerender interrupted error in unstable_rethrow: #83463

Misc Changes

  • [turbopack] Attempt #2 at making rust-analyzer happy with our macros: #83461
  • [turbopack] RFC: Serialize turbopack objects as u16s instead of fully qualified symbol names: #83193
  • [turbopack] enable the signal feature of nix: #83473
  • Turbopack: Don't resolve tsconfig relative to file: #83484

Credits

Huge thanks to @​lukesandberg, @​huozhi, @​timneutkens, @​eps1lon, and @​gnoff for helping!

... (truncated)

Commits

Updates @tailwindcss/postcss from 4.1.12 to 4.1.13

Release notes

Sourced from @​tailwindcss/postcss's releases.

v4.1.13

Changed

  • Drop warning from browser build (#18731)
  • Drop exact duplicate declarations when emitting CSS (#18809)

Fixed

  • Don't transition visibility when using transition (#18795)
  • Discard matched variants with unknown named values (#18799)
  • Discard matched variants with non-string values (#18799)
  • Show suggestions for known matchVariant values (#18798)
  • Replace deprecated clip with clip-path in sr-only (#18769)
  • Hide internal fields from completions in matchUtilities (#18820)
  • Ignore .vercel folders by default (can be overridden by @source … rules) (#18855)
  • Consider variants starting with @- to be invalid (e.g. @-2xl:flex) (#18869)
  • Do not allow custom variants to start or end with a - or _ (#18867, #18872)
  • Upgrade: Migrate aria theme keys to @custom-variant (#18815)
  • Upgrade: Migrate data theme keys to @custom-variant (#18816)
  • Upgrade: Migrate supports theme keys to @custom-variant (#18817)
Changelog

Sourced from @​tailwindcss/postcss's changelog.

[4.1.13] - 2025-09-03

Changed

  • Drop warning from browser build (#18731)
  • Drop exact duplicate declarations when emitting CSS (#18809)

Fixed

  • Don't transition visibility when using transition (#18795)
  • Discard matched variants with unknown named values (#18799)
  • Discard matched variants with non-string values (#18799)
  • Show suggestions for known matchVariant values (#18798)
  • Replace deprecated clip with clip-path in sr-only (#18769)
  • Hide internal fields from completions in matchUtilities (#18820)
  • Ignore .vercel folders by default (can be overridden by @source … rules) (#18855)
  • Consider variants starting with @- to be invalid (e.g. @-2xl:flex) (#18869)
  • Do not allow custom variants to start or end with a - or _ (#18867, #18872)
  • Upgrade: Migrate aria theme keys to @custom-variant (#18815)
  • Upgrade: Migrate data theme keys to @custom-variant (#18816)
  • Upgrade: Migrate supports theme keys to @custom-variant (#18817)
Commits

Updates @tauri-apps/cli from 2.8.3 to 2.8.4

Release notes

Sourced from @​tauri-apps/cli's releases.

@​tauri-apps/cli v2.8.4

[2.8.4]

Enhancements

Bug Fixes

Dependencies

  • Upgraded to tauri-cli@2.8.4
Commits

Updates @types/node from 24.3.0 to 24.3.1

Commits

Updates @types/react from 19.1.11 to 19.1.12

Commits

Updates @types/react-dom from 19.1.7 to 19.1.9

Commits

Updates @typescript-eslint/eslint-plugin from 8.40.0 to 8.42.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.42.0

8.42.0 (2025-09-02)

🚀 Features

🩹 Fixes

  • deps: update eslint monorepo to v9.33.0 (#11482)
  • typescript-eslint: handle non-normalized windows paths produced by jiti (#11546)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.41.0

8.41.0 (2025-08-25)

🚀 Features

  • tighten tsconfigRootDir validation (#11463)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.42.0 (2025-09-02)

🩹 Fixes

  • deps: update eslint monorepo to v9.33.0 (#11482)

You can read about our versioning strategy and releases on our website.

8.41.0 (2025-08-25)

🩹 Fixes

  • deps: update dependency prettier to v3.6.2 (#11496)

You can read about our versioning strategy and releases on our website.

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​typescript-eslint/eslint-plugin since your current version.


Updates @typescript-eslint/parser from 8.40.0 to 8.42.0

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.42.0

8.42.0 (2025-09-02)

🚀 Features

🩹 Fixes

  • deps: update eslint monorepo to v9.33.0 (#11482)
  • typescript-eslint: handle non-normalized windows paths produced by jiti (#11546)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.41.0

8.41.0 (2025-08-25)

🚀 Features

  • tighten tsconfigRootDir validation (#11463)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.42.0 (2025-09-02)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.41.0 (2025-08-25)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​typescript-eslint/parser since your current version.


Updates @vitejs/plugin-react from 5.0.1 to 5.0.2

Rel...

Description has been truncated

Pull Request Statistics
Commits:
1
Files Changed:
2
Additions:
+1047
Deletions:
-1047
Package Dependencies
Ecosystem:
npm
Version Change:
5.0.1 → 5.0.2
Update Type:
Patch
Package:
@types/node
Ecosystem:
npm
Version Change:
24.3.0 → 24.3.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
7.28.3 → 7.28.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.1.11 → 19.1.12
Update Type:
Patch
Package:
vite
Ecosystem:
npm
Version Change:
7.1.3 → 7.1.4
Update Type:
Patch
Package:
next
Ecosystem:
npm
Version Change:
15.5.0 → 15.5.2
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.1.7 → 19.1.9
Update Type:
Patch
Package:
@babel/core
Ecosystem:
npm
Version Change:
7.28.3 → 7.28.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
4.1.12 → 4.1.13
Update Type:
Patch
Ecosystem:
npm
Version Change:
15.5.0 → 15.5.2
Update Type:
Patch
Ecosystem:
npm
Version Change:
8.40.0 → 8.42.0
Update Type:
Minor
Package:
tailwindcss
Ecosystem:
npm
Version Change:
4.1.12 → 4.1.13
Update Type:
Patch
Package:
@eslint/js
Ecosystem:
npm
Version Change:
9.34.0 → 9.35.0
Update Type:
Minor
Package:
rollup
Ecosystem:
npm
Version Change:
4.48.1 → 4.50.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.40.0 → 8.42.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
15.5.0 → 15.5.2
Update Type:
Patch
Ecosystem:
npm
Version Change:
8.40.0 → 8.42.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
4.25.3 → 4.25.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
2.2.2 → 2.2.3
Update Type:
Patch
Ecosystem:
npm
Version Change:
7.28.0 → 7.28.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
2.8.3 → 2.8.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
7.28.0 → 7.28.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
7.28.3 → 7.28.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
7.28.0 → 7.28.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
7.28.3 → 7.28.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
4.7.0 → 4.8.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
0.16.6 → 0.16.7
Update Type:
Patch
Technical Details
ID: 7034678
UUID: 2803766266
Node ID: PR_kwDOPoIRaM6nHhP6
Host: GitHub
Repository: InterstellarMist/Project-Value
Merge State: Unknown